SyntheticFutureQuote
Live synthetic future quotes are SpiderRock implied futures quotes derived from roll prices.
METADATA
| Attribute | Value |
|---|---|
| Topic | 2675-market-data-index |
| MLink Token | ClientLive |
| Product | SRLive |
| accessType | SELECT |
| MLink Endpoint | MLink-Live |
Table Definition
| Field | Type | Key | Default Value | Comment |
|---|---|---|---|---|
| fkey_at | enum - AssetType | PRI | 'None' | ccode expiry |
| fkey_ts | enum - TickerSrc | PRI | 'None' | ccode expiry |
| fkey_tk | VARCHAR(12) | PRI | '' | ccode expiry |
| fkey_yr | SMALLINT UNSIGNED | PRI | 0 | ccode expiry |
| fkey_mn | TINYINT UNSIGNED | PRI | 0 | ccode expiry |
| fkey_dy | TINYINT UNSIGNED | PRI | 0 | ccode expiry |
| bidPrice | DOUBLE | 0 | best implied future bid price adjusted for option expiry | |
| askPrice | DOUBLE | 0 | best implied future ask price adjusted for option expiry | |
| bidSize | INT | 0 | best implied future bid size | |
| askSize | INT | 0 | best implied future ask size | |
| bidSource | enum - SyntheticSource | 'None' | ||
| askSource | enum - SyntheticSource | 'None' | ||
| marketStatus | enum - MarketStatus | 'None' | composite market status of all dependent markets | |
| netTimestamp | BIGINT | 0 | most recent net timestamp of any market affecting this record |
PRIMARY KEY DEFINITION (Unique)
| Field | Sequence |
|---|---|
| fkey_tk | 1 |
| fkey_yr | 2 |
| fkey_mn | 3 |
| fkey_dy | 4 |
| fkey_at | 5 |
| fkey_ts | 6 |
SELECT TABLE EXAMPLE QUERY
SELECT *
FROM `SRLive`.`MsgSyntheticFutureQuote`
WHERE
/* Replace with a ENUM('None','EQT','IDX','BND','CUR','COM','FUT','SYN','WAR','FLX','MUT','SPD','MM','MF','COIN','TOKEN','ANY','RATE') */
`fkey_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') */
`fkey_ts` = 'None'
AND
/* Replace with a VARCHAR(12) */
`fkey_tk` = 'Example_fkey_tk'
AND
/* Replace with a SMALLINT UNSIGNED */
`fkey_yr` = 123
AND
/* Replace with a TINYINT UNSIGNED */
`fkey_mn` = 1
AND
/* Replace with a TINYINT UNSIGNED */
`fkey_dy` = 1;
Doc Columns Query
SELECT * FROM SRLive.doccolumns WHERE TABLE_NAME='SyntheticFutureQuote' ORDER BY ordinal_position ASC;