Skip to main content
Version: Upcoming

SOQStrikeRangeUpdate

V8 Message Definiton

METADATA

AttributeValue
Topic2750-market-data-options
MLink TokenClientLive
ProductSRLive
accessTypeSELECT
MLink EndpointMLink-Live

Table Definition

FieldTypeKeyDefault ValueComment
ticker_atenum - AssetTypePRI'None'Underlying symbol
ticker_tsenum - TickerSrcPRI'None'Underlying symbol
ticker_tkVARCHAR(12)PRI''Underlying symbol
soqIdentifierVARCHAR(20)PRI''SOQ dissemination symbol
lowerStrikePrcFLOAT0SOQ lower strike price
upperStrikePrcFLOAT0SOQ upper strike price
srcTimestampBIGINT0exchange high precision timestamp if available
netTimestampBIGINT0inbound packet PTP timestamp from SR gateway switchusually syncronized with f
timestampDATETIME(6)'1900-01-01 00:00:00.000000'

PRIMARY KEY DEFINITION (Unique)

FieldSequence
ticker_tk1
ticker_at2
ticker_ts3
soqIdentifier4

SELECT TABLE EXAMPLE QUERY

SELECT *
FROM `SRLive`.`MsgSOQStrikeRangeUpdate`
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'
AND
/* Replace with a VARCHAR(20) */
`soqIdentifier` = 'Example_soqIdentifier';

Doc Columns Query

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