Skip to main content
Version: Upcoming

IndexQuote

V8 Message Definiton

Live index levels and quotes including SpiderRock synthetic index levels and quotes.

METADATA

AttributeValue
Topic2675-market-data-index
MLink TokenClientLive
ProductSRLive
accessTypeSELECT
MLink EndpointMLink-Live

Table Definition

FieldTypeKeyDefault ValueComment
ticker_atenum - AssetTypePRI'None'
ticker_tsenum - TickerSrcPRI'None'
ticker_tkVARCHAR(12)PRI''
priceSourceenum - IdxSrc'Unknown'price source of the quote indication print or quote message
dataSourceenum - IdxDataSource'None'source feed for this index quote
idxBidDOUBLE0index bid value if from quote otherwise idxPrice
idxAskDOUBLE0index ask value if from quote otherwise idxPrice
idxPriceDOUBLE0index price
netTimestampBIGINT0index price timestamp
timestampDATETIME(6)'1900-01-01 00:00:00.000000'

PRIMARY KEY DEFINITION (Unique)

FieldSequence
ticker_tk1
ticker_at2
ticker_ts3

SELECT TABLE EXAMPLE QUERY

SELECT *
FROM `SRLive`.`MsgIndexQuote`
WHERE
/* Replace with a ENUM('None','EQT','IDX','BND','CUR','COM','FUT','SYN','WAR','FLX','MUT','SPD','MM','MF','COIN','TOKEN','ANY','RATE') */
`ticker_at` = 'None'
AND
/* Replace with a ENUM('None','SR','NMS','CME','ICE','CFE','CBOT','NYMEX','COMEX','RUT','CIDX','ARCA','NYSE','OTC','NSDQ','MFQS','MIAX','DJI','CUSIP','ISIN','BXE','SCE','ANY','CXE','DXE','NXAM','NXBR','NXLS','NXML','NXOS','NXP','EUREX','CEDX','ICEFEC','ICEFEF','CEQT','TSX','TMX') */
`ticker_ts` = 'None'
AND
/* Replace with a VARCHAR(12) */
`ticker_tk` = 'Example_ticker_tk';

Doc Columns Query

SELECT * FROM SRLive.doccolumns WHERE TABLE_NAME='IndexQuote' ORDER BY ordinal_position ASC;