Schema: SpdrDropExecution (ID: 1460)
METADATA
Attribute | Value |
---|---|
Topic | 1450-away-drop |
MLink Token | ClientTrading |
SRSE Product | SRTrade |
Note: The symbol
=
next to a field number indicates that it is a primary key.
BODY
# | Field | Type | Comment |
---|---|---|---|
10= | dropNumber | long | SR drop record number |
100 | sysEnvironment | enum : SysEnvironment | original (source) sys environment [Stable, Current, etc] |
103 | runStatus | enum : RunStatus | original (source) run status [Prod,Beta] |
106 | routingCode | text1 | |
109 | routingSeqNum | int | |
112 | secKey | OptionKey | |
115 | secType | enum : SpdrKeyType | |
118 | securityDesc | string(16) | |
121 | securityType | string(4) | |
124 | symbol | string(12) | symbol (+ '.' + symbolSfx) |
127 | maturityDate | DateTime | |
130 | strike | double | |
133 | callPut | enum : CallPut | |
136 | account | text1 | FixTag.1 |
139 | giveupFirm | string(6) | |
142 | giveupAccnt | text1 | |
145 | clearingFirm | string(6) | |
148 | clearingAccnt | text1 | |
151 | dropData1 | text1 | |
154 | dropData2 | text1 | |
157 | clOrdId | string(32) | child order clOrdId (if available) |
160 | fillVersion | byte | cancel/correct version number (initial fill is version=1) |
163 | fillExecStatus | enum : ExecStatus | SpiderRock execution status (Fill,Bust,Correct,Reject,SysRej) |
166 | fillDttm | DateTime | fill DateTime (from SRDateTime) |
169 | fillQuantity | int | fill size (from execReport.lastSize) |
172 | fillSide | enum : BuySell | fill side (from execReport.side) |
175 | fillSSaleFlag | enum : ShortSaleFlag | fill side (from execReport.side) |
178 | fillPositionType | enum : PositionType | |
181 | fillPrice | double | fill price (from execReport.lastPrice) |
184 | fillTransactDttm | DateTime | fill DateTime (from execReport.fillDttm) |
187 | fillMarket | string(8) | fill market (from execReport.lastMarket) |
190 | fillSRLiqTag | string(2) | fill SR normalized liquidity tag |
193 | fillExchLiqTag | string(4) | fill exchange liquidity code |
196 | fillExchFee | float | fill exchange fee (if available) |
199 | fillExecId | text1 | fill execution id (from execReport.execId) |
202 | fillRefExecId | text1 | fill ref execution id (from execReport.refExecId) [only set on a cancel or correct] |
205 | fillLegRefId | long | fill leg ref id (from execReport.legRefId) |
208 | fillFirmType | string(16) | fill firm type (as reported from street side) |
211 | fillExecBroker | string(16) | fill execution broker (as reported from street side) |
214 | fillOrderCapacity | enum : OrderCapacity | fill order capacity (as reported from street side) |
217 | fillContraDetail | string(16) | fill contra party additional detail (if available) |
220 | fillContraCapacity | enum : OrderCapacity | fill order capacity of contra party (if available) |
223 | fillStreetText | text1 | |
226 | netTimestamp | long | drop gateway arrival timestamp |
229 | 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 = 'SpdrDropExecution'
# 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=SpdrDropExecution'
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 = 'SpdrDropExecution'
# 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 = 'sysEnvironment|runStatus|routingCode|routingSeqNum|secKey|secType|securityDesc|securityType|symbol|maturityDate|strike|callPut|account|giveupFirm|giveupAccnt|clearingFirm|clearingAccnt|dropData1|dropData2|clOrdId|fillVersion|fillExecStatus|fillDttm|fillQuantity|fillSide|fillSSaleFlag|fillPositionType|fillPrice|fillTransactDttm|fillMarket|fillSRLiqTag|fillExchLiqTag|fillExchFee|fillExecId|fillRefExecId|fillLegRefId|fillFirmType|fillExecBroker|fillOrderCapacity|fillContraDetail|fillContraCapacity|fillStreetText|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 = 'securityDesc:eq:ExampleString'
# 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=SpdrDropExecution' \
--data-urlencode 'view=sysEnvironment|runStatus|routingCode|routingSeqNum|secKey|secType|securityDesc|securityType|symbol|maturityDate|strike|callPut|account|giveupFirm|giveupAccnt|clearingFirm|clearingAccnt|dropData1|dropData2|clOrdId|fillVersion|fillExecStatus|fillDttm|fillQuantity|fillSide|fillSSaleFlag|fillPositionType|fillPrice|fillTransactDttm|fillMarket|fillSRLiqTag|fillExchLiqTag|fillExchFee|fillExecId|fillRefExecId|fillLegRefId|fillFirmType|fillExecBroker|fillOrderCapacity|fillContraDetail|fillContraCapacity|fillStreetText|netTimestamp|timestamp' \
--data-urlencode 'where=securityDesc:eq:ExampleString'
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 = 'SpdrDropExecution'
# Replace with your desired view. A "|" separated list of views can be provided
# If no view is provided, all views will be returned
VIEW = 'sysEnvironment|runStatus|routingCode|routingSeqNum|secKey|secType|securityDesc|securityType|symbol|maturityDate|strike|callPut|account|giveupFirm|giveupAccnt|clearingFirm|clearingAccnt|dropData1|dropData2|clOrdId|fillVersion|fillExecStatus|fillDttm|fillQuantity|fillSide|fillSSaleFlag|fillPositionType|fillPrice|fillTransactDttm|fillMarket|fillSRLiqTag|fillExchLiqTag|fillExchFee|fillExecId|fillRefExecId|fillLegRefId|fillFirmType|fillExecBroker|fillOrderCapacity|fillContraDetail|fillContraCapacity|fillStreetText|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 = 'securityDesc:eq:ExampleString'
# 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 = 'sysEnvironment: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=SpdrDropExecution' \
--data-urlencode 'view=sysEnvironment|runStatus|routingCode|routingSeqNum|secKey|secType|securityDesc|securityType|symbol|maturityDate|strike|callPut|account|giveupFirm|giveupAccnt|clearingFirm|clearingAccnt|dropData1|dropData2|clOrdId|fillVersion|fillExecStatus|fillDttm|fillQuantity|fillSide|fillSSaleFlag|fillPositionType|fillPrice|fillTransactDttm|fillMarket|fillSRLiqTag|fillExchLiqTag|fillExchFee|fillExecId|fillRefExecId|fillLegRefId|fillFirmType|fillExecBroker|fillOrderCapacity|fillContraDetail|fillContraCapacity|fillStreetText|netTimestamp|timestamp' \
--data-urlencode 'where=securityDesc:eq:ExampleString' \
--data-urlencode 'limit=500' \
--data-urlencode 'order=sysEnvironment: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 = 'SpdrDropExecution'
# Replace with fields you want to see aggregate values for. A "|" separated list of measures should be provided
MEASURE = 'sysEnvironment|runStatus|routingCode|routingSeqNum|secKey|secType|securityDesc|securityType|symbol|maturityDate|strike|callPut|account|giveupFirm|giveupAccnt|clearingFirm|clearingAccnt|dropData1|dropData2|clOrdId|fillVersion|fillExecStatus|fillDttm|fillQuantity|fillSide|fillSSaleFlag|fillPositionType|fillPrice|fillTransactDttm|fillMarket|fillSRLiqTag|fillExchLiqTag|fillExchFee|fillExecId|fillRefExecId|fillLegRefId|fillFirmType|fillExecBroker|fillOrderCapacity|fillContraDetail|fillContraCapacity|fillStreetText|netTimestamp|timestamp'
# Replace with fields you want to see aggregated. A "|" separated list of fields should be provided
GROUP = 'sysEnvironment|runStatus|secType|callPut|fillExecStatus|fillSide|fillSSaleFlag|fillPositionType|fillOrderCapacity|fillContraCapacity'
# 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 = 'securityDesc:eq:ExampleString'
# 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=SpdrDropExecution' \
--data-urlencode 'measure=sysEnvironment|runStatus|routingCode|routingSeqNum|secKey|secType|securityDesc|securityType|symbol|maturityDate|strike|callPut|account|giveupFirm|giveupAccnt|clearingFirm|clearingAccnt|dropData1|dropData2|clOrdId|fillVersion|fillExecStatus|fillDttm|fillQuantity|fillSide|fillSSaleFlag|fillPositionType|fillPrice|fillTransactDttm|fillMarket|fillSRLiqTag|fillExchLiqTag|fillExchFee|fillExecId|fillRefExecId|fillLegRefId|fillFirmType|fillExecBroker|fillOrderCapacity|fillContraDetail|fillContraCapacity|fillStreetText|netTimestamp|timestamp' \
--data-urlencode 'group=sysEnvironment|runStatus|secType|callPut|fillExecStatus|fillSide|fillSSaleFlag|fillPositionType|fillOrderCapacity|fillContraCapacity' \
--data-urlencode 'where=securityDesc:eq:ExampleString'
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 = 'SpdrDropExecution'
# 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 = 'securityDesc:eq:ExampleString'
# 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=SpdrDropExecution' \
--data-urlencode 'where=securityDesc:eq:ExampleString'