Bloomberg AIM · Schema
IntradayTickRequest
Financial DataMarket DataOrder ManagementPortfolio ManagementTrading
Properties
| Name | Type | Description |
|---|---|---|
| security | string | Single security identifier |
| eventTypes | array | |
| startDateTime | string | Start of the time range |
| endDateTime | string | End of the time range |
| includeConditionCodes | boolean | |
| includeExchangeCodes | boolean | |
| includeBrokerCodes | boolean | |
| includeRPSCodes | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "IntradayTickRequest",
"type": "object",
"properties": {
"security": {
"type": "string",
"description": "Single security identifier"
},
"eventTypes": {
"type": "array"
},
"startDateTime": {
"type": "string",
"description": "Start of the time range"
},
"endDateTime": {
"type": "string",
"description": "End of the time range"
},
"includeConditionCodes": {
"type": "boolean"
},
"includeExchangeCodes": {
"type": "boolean"
},
"includeBrokerCodes": {
"type": "boolean"
},
"includeRPSCodes": {
"type": "boolean"
}
}
}