API Changes
v1.47.0 (2025-09-25)
Consider leg trades on candles generation
Added new values to
volumeTypesvalues oflightTickers- Reversal
v1.45.0 (2025-06-26)
Allow to configure all APIs to require authentication
Improve Technical Guidelines section to support 2 access modes
v1.43.0 (2025-05-14)️
Removed
groupIdsfrominstrumentListandinstrumentListWithPaginationAPIsChanged the stringified number fields of below APIs to non-stringified numbers
/exchange.marketdata/instrumentList/exchange.marketdata/instrumentListWithPagination/exchange.marketdata/calendarList/exchange.marketdata/tickSizeList
v1.41.0 (2025-03-11)️
Added new values and changes in some existing
volumeTypesvalues oflightTickers
v1.37.0 (2024-12-03)️
Adding an empty message to calendarList , tickSizeList , instrumentList to handle cases where there are no entities
Documenting that numbers are stringified in: instrument list, calendar list, tick size list APIs
v1.36.0 (2024-11-12)️
Adding new API to publish auction indicative price
v1.34.0 (2024-09-25)️
The sorting in the instrument list is changing to be case-insensitive.
Added supporing Candles data adjusted for Corporate Actions
v1.33.0 (2024-08-21)️
Fields in
lightTickersget adjusted when corporate actions are applied to the active orders.lightTickerwill not include data of market order during auction.Adding to the partialOrderBook new objects for market orders during auction
Adding to the instrument list filters and new API with pagination.
v1.31.0 (2024-07-16)️
Adding new fields to the light ticker -
tickReferencePriceand itstimestamp
v1.30.0 (2024-06-19)️
Adding new fields to the light ticker to publish price limits of the instrument
Change empty message of the light ticker to not include the volume fields.
v1.28.0 (2024-04-16)️
Candles API:
Change
v1/exchange.marketdata/aggregatesqualifier:Real time updates qualifier: v1/exchange.marketdata/candles
Historical data qualifier: v1/exchange.marketdata.history/candles
Add
timespanvalue: HOURAdd
multiplierparameter to support below intervals:5 MINUTE
15 MINUTE
4 HOUR
v1.27.0 (2024-04-01)️
New API for OHLCV data
v1/exchange.marketdata/aggregatesNew API Heartbeats (Pings)
v1/heartbeat/pingfor browser API clientstradingModelsfield will always be returned byexchange.marketdata/instrumentList
v1.26.0 (2024-02-28)️
Bugfix related to the Market Data Service.
referencePricewas not returned after restarting the service before the fix.
v1.25.0 (2024-02-07)️
Bugfix related to the end of the snapshot message of
v1/exchange.marketdata/liveTrades.multiLegReportingTypefield was not returned prior to the fix.Bugfix related to the required fields of
v1/exchange.marketdata/lightTickers. The error message returned was incorrect before the fix.
v1.24.0 (2024-01-17)
Changed
quoteVolumeformula ofLightTickertoTotal(trade amount * absolute value of trade price * contract size). The previous formula didn’t have thecontract size.Added
deliveryStartDateanddeliveryEndDateto thev1/exchange.marketdata/instrumentListAdded
makerSideto the RFQ Trades ofv1/exchange.marketdata/liveTradesBugfix related to
quantityofliveTradesmessages of legs instruments of strategies.quantityof trades has incorrectly had thequantityof current trade +quantityof previous trade when trade prices of current and previous trades were the same.
v1.23.0 (2023-12-26)️
Added
scopeto thelightTickersAPI.Added
multiLegReportingTypeto theliveTradesAPI.
v1.22.0 (2023-12-05)️
Added RFQ trades to the liveTrades and lightTickers APIs
Bugfix related to
openingPricecalculation oflightTickers. The system has incorrectly taken trade entries for the calculation before the fix.Bugfix related to the
volumeTypesobject oflightTickersAPI.volumefield was incorrectly returned asvaluebefore the fix.
v1.20.0 (2023-10-25)
New API to disseminate Instrument details
v1/exchange.marketdata/instrumentListNew API to disseminate Calendar details
v1/exchange.marketdata/calendarListNew API to disseminate tickSize details
v1/exchange.marketdata/tickSizeListChanged
tokento be a required field in all Market Data APIsDeprecated
environments.exchangeNumfield in all Market Data APIsBug fix on liveTrades API on strategy allocated leg trades to properly display
makerSide
2023-07-12
Fixed the bug related to timeStamp format in
v1/exchange.marketdata/liveTrades
2023-06-21
volumeTypes object in the light ticker will be sent only if there is data that is not 0
2023-06-06
Adding new fields to the light ticker
Taking the trade entry data considered in some fields in the light ticker (volume, quoteVolume, high, low, lastPrice, lastQuantity)
Adding the trade entry and trade cancellation to the live trades.
new value in quantity in case of cancellation
makerSide will be in this case: -1
2023-05-02
Adding the reference price and timestamp of the instrument to the light ticker response
2023-03-22
Adding the trading status of the instrument to the light ticker response
2023-02-08
There are new fields in the light ticker API:
settlementPrice: Settlement price
settlementPriceTimestamp: Settlement price last update timestamp
lastQuantity: Last executed trade quantity
Until now in case one of the symbols is wrong, the entire stream was disconnected.
From now on, in case of wrong symbol stream will continue working for the valid symbols and for the invalid symbols the message returned will be:
{
"q": "v1/exchange.marketdata/lightTickers",
"sid": 10,
"d": {
"symbol": "Ins1",
"bidQuantity": 0,
"askQuantity": 0,
"timeStamp":1675769165802,
"errorCode": 3,
"errorMessage": "Wrong symbol"
}
}This error might occur in case that stream is already working (in case symbol is no longer active instrument).
2023-01-18
Partial Order Book will publish events only in case there is change in data. Once there is change- it will be sent only when interval time elapsed.
2023-01-03
All API has a new optional header parameter - we strongly recommend to use it instead of the previous environments.exchangeNum (which is still supported), the new parameter provides more accurate and efficient instrument discovery.
The parameter is called token and can be retrieved from Admin application under home page:
Sample API using new parameter:
{
"q": "v1/exchange.marketdata/lightTickers",
"token": "eyJleGNoYW5nZUlkIjozMCwicHJvamVjdElkIjoyMDB9",
"sid": 10,
"d": {
"symbols": [
"ABC",
"XYZ",
"INS1"
],
"interval": 1000
}
}2022-11-21
getSettlementPrices API will response with the latest results updated in system.
2022-09-13
lightTickers API will have new properties, that are referring to the current trading day :
lastClosingPrice - last execution prive before market close
closingPriceTimestamp - closing price timestamp
openingPrice - first execution price after market open
low - lowest execution price since market open
high - highest execution price since market open
volume - total volume since market open (total orders amount)
quoteVolume - total volume since market open in quote currency terms (amount * price)
2022-09-13
New API added Get Settlement Prices
Last updated