Bloomberg AIM · Schema
GroupRouteRequest
Financial DataMarket DataOrder ManagementPortfolio ManagementTrading
Properties
| Name | Type | Description |
|---|---|---|
| EMSX_SEQUENCE | array | List of order sequence numbers to route as a group |
| EMSX_AMOUNT_PERCENT | number | Percentage of each order to route (0-100) |
| EMSX_BROKER | string | |
| EMSX_ORDER_TYPE | string | |
| EMSX_LIMIT_PRICE | number | |
| EMSX_TIF | string | |
| EMSX_STRATEGY | string | |
| EMSX_STRATEGY_PARAMS | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "GroupRouteRequest",
"type": "object",
"properties": {
"EMSX_SEQUENCE": {
"type": "array",
"description": "List of order sequence numbers to route as a group"
},
"EMSX_AMOUNT_PERCENT": {
"type": "number",
"description": "Percentage of each order to route (0-100)"
},
"EMSX_BROKER": {
"type": "string"
},
"EMSX_ORDER_TYPE": {
"type": "string"
},
"EMSX_LIMIT_PRICE": {
"type": "number"
},
"EMSX_TIF": {
"type": "string"
},
"EMSX_STRATEGY": {
"type": "string"
},
"EMSX_STRATEGY_PARAMS": {
"type": "object"
}
}
}