Skip to main content
Version: Upcoming

OptionPrint2

V8 Message Definiton

The most recent (last) print record for each active equity and future option series. Quote markup represents quote that existed just prior to the print on the reporting exchange.

METADATA

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

Table Definition

FieldTypeKeyDefault ValueComment
okey_atenum - AssetTypePRI'None'
okey_tsenum - TickerSrcPRI'None'
okey_tkVARCHAR(12)PRI''
okey_yrSMALLINT UNSIGNEDPRI0
okey_mnTINYINT UNSIGNEDPRI0
okey_dyTINYINT UNSIGNEDPRI0
okey_xxDOUBLEPRI0
okey_cpenum - CallPutPRI'Call'
prtExchenum - OptExch'None'
prtSizeINT0print size contracts
prtPriceFLOAT0print price
prtClusterNumINT0incremental print cluster counter one counter per okey used to group prints into clusters
prtClusterSizeINT0cumulative size of prints in this sequence sequence of prints same or more aggressive price with less than 25 ms elapsing since first print can span exchanges
prtTypeenum - PrtType'None'print type
printCodesVARCHAR(36)''European trade condition codes
prtOrdersSMALLINT UNSIGNED0number of participating orders
prtVolumeINT0day print volume in contracts regular electronic AUTO REOP MESL TESL
oosVolumeINT0day print volume reported out of sequence not regular way electronic OSEQ LATE OPEN OPNL
isoVolumeINT0day ISO sweep volume ISOI
slaVolumeINT0single leg aution volume SLAN SLAI
mlaVolumeINT0multi leg auction volume MLAT TLAT MASL TASL
crxVolumeINT0day electronic cross volume no exposure period SLCN SCLI MLCT TLCT
flrVolumeINT0day exchange floor volume SLFT MLFT MFSL TLFT TFSL CMBO
mlgVolumeINT0multileg complex volume MLET TLET
uknVolumeINT0other uncategorized volume
cxlVolumeINT0day printcancel volume num of contracts printed and then cancelled CANC CNCL CNCO CNOL
totalVolumeINT0total day volume
bidCountSMALLINT UNSIGNED0number of bid prints
askCountSMALLINT UNSIGNED0number of ask prints
bidVolumeINT0bid print volume in contracts
askVolumeINT0ask print volume in contracts
ebidFLOAT0exchange bid print time
easkFLOAT0exchange ask print time
ebszINT0exchange bid size
easzINT0exchange ask size
eageFLOAT0age of prevailing quote at time of print
prtSideenum - PrtSide'None'implied print side based on ebideask and nbbo market
prtTimestampBIGINT0exchange high precision timestamp if available
netTimestampBIGINT0inbound packet PTP timestamp from SR gateway switchusually syncronized with facility grandfather clock
timestampDATETIME(6)'1900-01-01 00:00:00.000000'

PRIMARY KEY DEFINITION (Unique)

FieldSequence
okey_tk1
okey_yr2
okey_mn3
okey_dy4
okey_xx5
okey_cp6
okey_at7
okey_ts8

SELECT TABLE EXAMPLE QUERY

SELECT *
FROM `SRLive`.`MsgOptionPrint2`
WHERE
/* Replace with a ENUM('None','EQT','IDX','BND','CUR','COM','FUT','SYN','WAR','FLX','MUT','SPD','MM','MF','COIN','TOKEN','ANY','RATE') */
`okey_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') */
`okey_ts` = 'None'
AND
/* Replace with a VARCHAR(12) */
`okey_tk` = 'Example_okey_tk'
AND
/* Replace with a SMALLINT UNSIGNED */
`okey_yr` = 123
AND
/* Replace with a TINYINT UNSIGNED */
`okey_mn` = 1
AND
/* Replace with a TINYINT UNSIGNED */
`okey_dy` = 1
AND
/* Replace with a DOUBLE */
`okey_xx` = 4.56
AND
/* Replace with a ENUM('Call','Put','Pair') */
`okey_cp` = 'Call';

Doc Columns Query

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