Bloomberg AIM · Schema
HistoricalDataRequest
Financial DataMarket DataOrder ManagementPortfolio ManagementTrading
Properties
| Name | Type | Description |
|---|---|---|
| securities | array | List of security identifiers |
| fields | array | List of Bloomberg field mnemonics |
| startDate | string | Start date in YYYYMMDD format |
| endDate | string | End date in YYYYMMDD format |
| periodicitySelection | string | |
| periodicityAdjustment | string | |
| currency | string | Three-letter currency code for cross-currency conversion |
| overrides | array | |
| nonTradingDayFillOption | string | |
| nonTradingDayFillMethod | string | |
| adjustmentNormal | boolean | |
| adjustmentAbnormal | boolean | |
| adjustmentSplit | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "HistoricalDataRequest",
"type": "object",
"properties": {
"securities": {
"type": "array",
"description": "List of security identifiers"
},
"fields": {
"type": "array",
"description": "List of Bloomberg field mnemonics"
},
"startDate": {
"type": "string",
"description": "Start date in YYYYMMDD format"
},
"endDate": {
"type": "string",
"description": "End date in YYYYMMDD format"
},
"periodicitySelection": {
"type": "string"
},
"periodicityAdjustment": {
"type": "string"
},
"currency": {
"type": "string",
"description": "Three-letter currency code for cross-currency conversion"
},
"overrides": {
"type": "array"
},
"nonTradingDayFillOption": {
"type": "string"
},
"nonTradingDayFillMethod": {
"type": "string"
},
"adjustmentNormal": {
"type": "boolean"
},
"adjustmentAbnormal": {
"type": "boolean"
},
"adjustmentSplit": {
"type": "boolean"
}
}
}