Schema: SpreadBookQuote (ID: 2900)
This table contains live spread quote records from the individual equity option exchanges. Each record contains up to two price levels and represents a live snapshot of the book for a specific spread.
METADATA
Attribute | Value |
---|---|
Topic | 2895-market-data-spreads |
MLink Token | SpreadMktData |
SRSE Product | SRSpread |
Note: The symbol
=
next to a field number indicates that it is a primary key.
BODY
# | Field | Type | Comment |
---|---|---|---|
10= | skey | TickerKey | SR Spread Key (should have corresponding ProductDefinition record) |
11= | isTest | enum : YesNo | Yes indicates that response is made of entirely of isTest=Yes SpreadExchOrders |
100 | ticker | TickerKey | common spread underlier |
167 | SRspreadID | long | |
103 | bidPrice1 | double | bid price |
106 | isBidPrice1Valid | enum : YesNo | |
109 | askPrice1 | double | ask price |
112 | isAskPrice1Valid | enum : YesNo | |
115 | bidSize1 | int | cumulative size at bidPrice |
118 | askSize1 | int | cumulative size at askPrice |
121 | bidPrice2 | double | 2nd best bid price |
124 | isBidPrice2Valid | enum : YesNo | |
127 | askPrice2 | double | 2nd best ask price |
130 | isAskPrice2Valid | enum : YesNo | |
133 | bidSize2 | int | cumulative size at 2nd price |
136 | askSize2 | int | cumulative size at 2nd price |
139 | bidExch1 | enum : OptExch | exchange at bid price with the largest size (if any) |
142 | askExch1 | enum : OptExch | exchange at ask price with the largest size (if any) |
145 | bidMask1 | uint | exchange bid bit mask (OptExch mask for NMS spreads; zero for single exchange spreads) |
148 | askMask1 | uint | exchange ask bit mask (OptExch mask for NMS spreads; zero for single exchange spreads) |
151 | bidTime | DateTime | last bid price or size change |
154 | askTime | DateTime | last ask price or size change |
168 | printVolume | int | |
157 | updateType | enum : UpdateType | |
160 | srcTimestamp | long | source high precision timestamp (if available) |
163 | netTimestamp | long | inbound packet PTP timestamp from SR gateway switch;usually syncronized with facility grandfather clock |
166 | timestamp | DateTime |
Get Schema API Call
- Python
- cUrl
import requests
# Replace with your desired MLINK URL
MLINK_PROD_URL = 'https://mlink-live.nms.saturn.spiderrockconnect.com/rest/json'
# Replace with your MLINK API Key
API_KEY = 'XXXX-XXXX-XXXX-XXXX'
# Replace with your desired MsgType.
MSG_TYPE = 'SpreadBookQuote'
# Request Parameters for Get Schema Of The MsgType
params = {
#Required Parameters
"apiKey": API_KEY,
"cmd": 'getschema',
"msgType": MSG_TYPE,
}
response = requests.get(MLINK_PROD_URL, params=params)
curl -G 'https://mlink-live.nms.saturn.spiderrockconnect.com/rest/json' \
--data-urlencode 'apiKey=XXXX-XXXX-XXXX-XXXX' \
--data-urlencode 'cmd=getschema' \
--data-urlencode 'msgType=SpreadBookQuote'
Get Msg API Call
- Python
- cUrl
import requests
# Replace with your desired MLINK URL
MLINK_PROD_URL = 'https://mlink-live.nms.saturn.spiderrockconnect.com/rest/json'
# Replace with your MLINK API Key
API_KEY = 'XXXX-XXXX-XXXX-XXXX'
# Replace with your desired MsgType.
MSG_TYPE = 'SpreadBookQuote'
# Replace with your pkey value for getting the specific message desired
PKEY = 'ReplaceThisValueForTheQueryToWork'
# Replace with your desired view. A "|" separated list of views can be provided
# If no view is provided, all views will be returned.
VIEW = 'ticker|SRspreadID|bidPrice1|isBidPrice1Valid|askPrice1|isAskPrice1Valid|bidSize1|askSize1|bidPrice2|isBidPrice2Valid|askPrice2|isAskPrice2Valid|bidSize2|askSize2|bidExch1|askExch1|bidMask1|askMask1|bidTime|askTime|printVolume|updateType|srcTimestamp|netTimestamp|timestamp'
# Replace with your desired where clause.
# a string in the form "field1:eq:valuse" or "(field1:ne:value1 & field1:ne:value2)
# "WHERE" clauses can contain the following comparison symbols:
# :gt: is greater than
# :ge: is greater than or equal to
# :lt: is less than
# :le: is less than or equal to
# :eq: is equal
# :ne: is not equal
# %26 is an AND statement
# | is an OR statement
# :sw: is starts with
# :ew: is ends with
# :cv: is contains values
# :nv: is does not contain value
# :cb: is contained between (two dates for instance) separated by '$'
WHERE = ''
# Request Parameters for getmsg Of The MsgType
params = {
# Required Parameters
"apiKey": API_KEY,
"cmd": 'getmsg',
"pkey": PKEY,
"msgType": MSG_TYPE,
# Optional Parameters
"view": VIEW,
"where": WHERE
}
response = requests.get(MLINK_PROD_URL, params=params)
curl -G 'https://mlink-live.nms.saturn.spiderrockconnect.com/rest/json' \
--data-urlencode 'apiKey=XXXX-XXXX-XXXX-XXXX' \
--data-urlencode 'cmd=getmsg' \
--data-urlencode 'pkey=ReplaceThisValueForTheQueryToWork' \
--data-urlencode 'msgType=SpreadBookQuote' \
--data-urlencode 'view=ticker|SRspreadID|bidPrice1|isBidPrice1Valid|askPrice1|isAskPrice1Valid|bidSize1|askSize1|bidPrice2|isBidPrice2Valid|askPrice2|isAskPrice2Valid|bidSize2|askSize2|bidExch1|askExch1|bidMask1|askMask1|bidTime|askTime|printVolume|updateType|srcTimestamp|netTimestamp|timestamp' \
--data-urlencode 'where='
Get Msgs API Call
- Python
- cUrl
import requests
# Replace with your desired MLINK URL
MLINK_PROD_URL = 'https://mlink-live.nms.saturn.spiderrockconnect.com/rest/json'
# Replace with your MLINK API Key
API_KEY = 'XXXX-XXXX-XXXX-XXXX'
# Replace with your desired MsgType.
MSG_TYPE = 'SpreadBookQuote'
# Replace with your desired view. A "|" separated list of views can be provided
# If no view is provided, all views will be returned
VIEW = 'ticker|SRspreadID|bidPrice1|isBidPrice1Valid|askPrice1|isAskPrice1Valid|bidSize1|askSize1|bidPrice2|isBidPrice2Valid|askPrice2|isAskPrice2Valid|bidSize2|askSize2|bidExch1|askExch1|bidMask1|askMask1|bidTime|askTime|printVolume|updateType|srcTimestamp|netTimestamp|timestamp'
# Replace with your desired where clause.
# a string in the form "field1:eq:value" or "(field1:ne:value1 & field1:ne:value2)
# "WHERE" clauses can contain the following comparison symbols:
# :gt: is greater than
# :ge: is greater than or equal to
# :lt: is less than
# :le: is less than or equal to
# :eq: is equal
# :ne: is not equal
# %26 is an AND statement
# | is an OR statement
# :sw: is starts with
# :ew: is ends with
# :cv: is contains values
# :nv: is does not contain value
# :cb: is contained between (two dates for instance) separated by '$'
WHERE = ''
# Replace with your desired limit of how many messages you receive. The default limit is 500
LIMIT = 500
# Order clause eg. "(field1:DESC | field1:ASC | field2:DESC:ABS | field2:ASC:ABS" (default is unordered; default is faster)
ORDER = 'ticker:ASC'
# Request Parameters for getmsgs Of The MsgType
params = {
# Required Parameters
"apiKey": API_KEY,
"cmd": 'getmsgs',
"msgType": MSG_TYPE,
# Optional Parameters
"view": VIEW,
"where": WHERE,
"limit": LIMIT,
"order": ORDER
}
response = requests.get(MLINK_PROD_URL, params=params)
curl -G 'https://mlink-live.nms.saturn.spiderrockconnect.com/rest/json' \
--data-urlencode 'apiKey=XXXX-XXXX-XXXX-XXXX' \
--data-urlencode 'cmd=getmsgs' \
--data-urlencode 'msgType=SpreadBookQuote' \
--data-urlencode 'view=ticker|SRspreadID|bidPrice1|isBidPrice1Valid|askPrice1|isAskPrice1Valid|bidSize1|askSize1|bidPrice2|isBidPrice2Valid|askPrice2|isAskPrice2Valid|bidSize2|askSize2|bidExch1|askExch1|bidMask1|askMask1|bidTime|askTime|printVolume|updateType|srcTimestamp|netTimestamp|timestamp' \
--data-urlencode 'where=' \
--data-urlencode 'limit=500' \
--data-urlencode 'order=ticker:ASC'
Get Aggregate API Call
- Python
- cUrl
import requests
# Replace with your desired MLINK URL
MLINK_PROD_URL = 'https://mlink-live.nms.saturn.spiderrockconnect.com/rest/json'
# Replace with your MLINK API Key
API_KEY = 'XXXX-XXXX-XXXX-XXXX'
# Replace with your desired MsgType.
MSG_TYPE = 'SpreadBookQuote'
# Replace with fields you want to see aggregate values for. A "|" separated list of measures should be provided
MEASURE = 'ticker|SRspreadID|bidPrice1|isBidPrice1Valid|askPrice1|isAskPrice1Valid|bidSize1|askSize1|bidPrice2|isBidPrice2Valid|askPrice2|isAskPrice2Valid|bidSize2|askSize2|bidExch1|askExch1|bidMask1|askMask1|bidTime|askTime|printVolume|updateType|srcTimestamp|netTimestamp|timestamp'
# Replace with fields you want to see aggregated. A "|" separated list of fields should be provided
GROUP = 'isBidPrice1Valid|isAskPrice1Valid|isBidPrice2Valid|isAskPrice2Valid|bidExch1|askExch1|updateType'
# Replace with your desired where clause.
# a string in the form "field1:eq:value" or "(field1:ne:value1 & field1:ne:value2)
# "WHERE" clauses can contain the following comparison symbols:
# :gt: is greater than
# :ge: is greater than or equal to
# :lt: is less than
# :le: is less than or equal to
# :eq: is equal
# :ne: is not equal
# %26 is an AND statement
# | is an OR statement
# :sw: is starts with
# :ew: is ends with
# :cv: is contains values
# :nv: is does not contain value
# :cb: is contained between (two dates for instance) separated by '$'
WHERE = ''
# Request Parameters for getaggregate Of The MsgType
params = {
# Required Parameters
"apiKey": API_KEY,
"cmd": 'getaggregate',
"msgType": MSG_TYPE,
"measure": MEASURE,
"group": GROUP,
# Optional Parameters
"where": WHERE,
}
response = requests.get(MLINK_PROD_URL, params=params)
curl -G 'https://mlink-live.nms.saturn.spiderrockconnect.com/rest/json' \
--data-urlencode 'apiKey=XXXX-XXXX-XXXX-XXXX' \
--data-urlencode 'cmd=getaggregate' \
--data-urlencode 'msgType=SpreadBookQuote' \
--data-urlencode 'measure=ticker|SRspreadID|bidPrice1|isBidPrice1Valid|askPrice1|isAskPrice1Valid|bidSize1|askSize1|bidPrice2|isBidPrice2Valid|askPrice2|isAskPrice2Valid|bidSize2|askSize2|bidExch1|askExch1|bidMask1|askMask1|bidTime|askTime|printVolume|updateType|srcTimestamp|netTimestamp|timestamp' \
--data-urlencode 'group=isBidPrice1Valid|isAskPrice1Valid|isBidPrice2Valid|isAskPrice2Valid|bidExch1|askExch1|updateType' \
--data-urlencode 'where='
Get Count API Call
- Python
- cUrl
import requests
# Replace with your desired MLINK URL
MLINK_PROD_URL = 'https://mlink-live.nms.saturn.spiderrockconnect.com/rest/json'
# Replace with your MLINK API Key
API_KEY = 'XXXX-XXXX-XXXX-XXXX'
# Replace with your desired MsgType.
MSG_TYPE = 'SpreadBookQuote'
# Replace with your desired where clause.
# a string in the form "field1:eq:value" or "(field1:ne:value1 & field1:ne:value2)
# "WHERE" clauses can contain the following comparison symbols:
# :gt: is greater than
# :ge: is greater than or equal to
# :lt: is less than
# :le: is less than or equal to
# :eq: is equal
# :ne: is not equal
# %26 is an AND statement
# | is an OR statement
# :sw: is starts with
# :ew: is ends with
# :cv: is contains values
# :nv: is does not contain value
# :cb: is contained between (two dates for instance) separated by '$'
WHERE = ''
# Request Parameters for getCount Of The MsgType
params = {
# Required Parameters
"apiKey": API_KEY,
"cmd": 'getcount',
"msgType": MSG_TYPE,
# Optional Parameters
"where": WHERE,
}
response = requests.get(MLINK_PROD_URL, params=params)
curl -G 'https://mlink-live.nms.saturn.spiderrockconnect.com/rest/json' \
--data-urlencode 'apiKey=XXXX-XXXX-XXXX-XXXX' \
--data-urlencode 'cmd=getcount' \
--data-urlencode 'msgType=SpreadBookQuote' \
--data-urlencode 'where='