Schema: UserAuctionFilter (ID: 1915)
METADATA
| Attribute | Value |
|---|---|
| Topic | 1800-client-config |
| MLink Token | SRATS |
| SRSE Product | SRTrade |
Note: The symbol
=next to a field number indicates that it is a primary key.
BODY
| # | Field | Type | Default Value | Comment |
|---|---|---|---|---|
| 10= | userName | string(24) | ||
| 11= | filterName | string(16) | ||
| 100 | clientFirm | string(16) | client firm of the user this filter belongs to | |
| 151 | disabled | enum : YesNo | ||
| 114 | includeCovered | enum : YesNo | must match if not None | |
| 115 | includeETFs | enum : YesNo | must match if not None | |
| 116 | includeADRs | enum : YesNo | must match if not None | |
| 117 | includeIndexes | enum : YesNo | must match if not None | |
| 118 | minUPrc | float | min underlier price | |
| 119 | hasUAvgDailyVlmFilter | enum : YesNo | if Yes use fields: minUAvgDailyVlm, maxUAvgDailyVlm | |
| 120 | minUAvgDailyVlm | float | min underlier avg daily volume (in $1mm increments) | |
| 121 | maxUAvgDailyVlm | float | max underlier avg daily volume (in $1mm increments) | |
| 122 | minSize | float | min order size (no decimals) | |
| 152 | minAbsVega | float | min absolute vega (no decimals) | |
| 124 | hasAbsDeltaFilter | enum : YesNo | if Yes use fields: minAbsDelta, maxAbsDelta | |
| 125 | minAbsDelta | float | min absolute delta | |
| 126 | maxAbsDelta | float | max absolute delta | |
| 127 | hasXDeltaFilter | enum : YesNo | if Yes use fields: minXDelta, maxXDelta | |
| 128 | minXDelta | float | ||
| 129 | maxXDelta | float | ||
| 130 | hasAtmSVolFilter | enum : YesNo | if Yes use fields: minAtmSVol, maxAtmSVol | |
| 131 | minAtmSVol | float | ||
| 132 | maxAtmSVol | float | ||
| 133 | hasAtmSDivFilter | enum : YesNo | if Yes use fields: minAtmSDiv, maxAtmSDiv | |
| 134 | minAtmSDiv | float | ||
| 135 | maxAtmSDiv | float | ||
| 159 | hasStrikeFilters | enum : YesNo | if Yes use fields: minStrike, maxStrike | |
| 160 | minStrike | double | ||
| 161 | maxStrike | double | ||
| 136 | hasExpiryDays | enum : YesNo | if Yes use fields: minExpiryDays, maxExpiryDays | |
| 137 | minExpiryDays | int | min days to expiration | |
| 138 | maxExpiryDays | int | max days to expiration | |
| 139 | includeZDte | enum : YesNo | must match if not None | |
| 140 | includeDaily | enum : YesNo | must match if not None | |
| 141 | includeWeekly | enum : YesNo | must match if not None | |
| 142 | includeRegular | enum : YesNo | must match if not None | |
| 143 | includeQuarterly | enum : YesNo | must match if not None | |
| 153 | includeLongTerm | enum : YesNo | must match if not None | |
| 154 | includeOtherExp | enum : YesNo | must match if not None | |
| 144 | includeFlex | enum : YesNo | must match if not None | |
| 156 | includeDirected | enum : YesNo | must match if not None | |
| 145 | includeCommPaying | enum : YesNo | must match if not None | |
| 146 | direction | enum : BuySell | must match if not None (Buy = Buy Regular or Sell Flipped) (Buy = cust is buying) | |
| 155 | netVegaDirection | enum : BuySell | must match if not None (Buy = cust is buying net vega) | |
| 148 | modifiedBy | string(24) | ||
| 149 | modifiedIn | enum : SysEnvironment | ||
| 150 | timestamp | DateTime |
REPEATING FIELDS
Industry
| # | Field | Type | Default Value | Comment |
|---|---|---|---|---|
| 103 | industry | string(32) | industry string prefix (must match left edge) |
IncludeTicker
| # | Field | Type | Default Value | Comment |
|---|---|---|---|---|
| 105 | ticker | TickerKey |
ExcludeTicker
| # | Field | Type | Default Value | Comment |
|---|---|---|---|---|
| 107 | ticker | TickerKey |
SpreadClasses
| # | Field | Type | Default Value | Comment |
|---|---|---|---|---|
| 158 | spreadClass | enum : SpreadClass |
AuctionTypes
| # | Field | Type | Default Value | Comment |
|---|---|---|---|---|
| 111 | auctionType | enum : AuctionType |
AuctionSources
| # | Field | Type | Default Value | Comment |
|---|---|---|---|---|
| 113 | auctionSource | enum : AuctionSource |
Expiries
| # | Field | Type | Default Value | Comment |
|---|---|---|---|---|
| 163 | expiry | DateKey | must match one of expirations included in repeating group, if Expiries repeating group is non-empty |
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 = 'UserAuctionFilter'
# 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=UserAuctionFilter'
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 = 'UserAuctionFilter'
# 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 = 'clientFirm|disabled|includeCovered|includeETFs|includeADRs|includeIndexes|minUPrc|hasUAvgDailyVlmFilter|minUAvgDailyVlm|maxUAvgDailyVlm|minSize|minAbsVega|hasAbsDeltaFilter|minAbsDelta|maxAbsDelta|hasXDeltaFilter|minXDelta|maxXDelta|hasAtmSVolFilter|minAtmSVol|maxAtmSVol|hasAtmSDivFilter|minAtmSDiv|maxAtmSDiv|hasStrikeFilters|minStrike|maxStrike|hasExpiryDays|minExpiryDays|maxExpiryDays|includeZDte|includeDaily|includeWeekly|includeRegular|includeQuarterly|includeLongTerm|includeOtherExp|includeFlex|includeDirected|includeCommPaying|direction|netVegaDirection|modifiedBy|modifiedIn|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 = 'userName: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=UserAuctionFilter' \
--data-urlencode 'view=clientFirm|disabled|includeCovered|includeETFs|includeADRs|includeIndexes|minUPrc|hasUAvgDailyVlmFilter|minUAvgDailyVlm|maxUAvgDailyVlm|minSize|minAbsVega|hasAbsDeltaFilter|minAbsDelta|maxAbsDelta|hasXDeltaFilter|minXDelta|maxXDelta|hasAtmSVolFilter|minAtmSVol|maxAtmSVol|hasAtmSDivFilter|minAtmSDiv|maxAtmSDiv|hasStrikeFilters|minStrike|maxStrike|hasExpiryDays|minExpiryDays|maxExpiryDays|includeZDte|includeDaily|includeWeekly|includeRegular|includeQuarterly|includeLongTerm|includeOtherExp|includeFlex|includeDirected|includeCommPaying|direction|netVegaDirection|modifiedBy|modifiedIn|timestamp' \
--data-urlencode 'where=userName: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 = 'UserAuctionFilter'
# Replace with your desired view. A "|" separated list of views can be provided
# If no view is provided, all views will be returned
VIEW = 'clientFirm|disabled|includeCovered|includeETFs|includeADRs|includeIndexes|minUPrc|hasUAvgDailyVlmFilter|minUAvgDailyVlm|maxUAvgDailyVlm|minSize|minAbsVega|hasAbsDeltaFilter|minAbsDelta|maxAbsDelta|hasXDeltaFilter|minXDelta|maxXDelta|hasAtmSVolFilter|minAtmSVol|maxAtmSVol|hasAtmSDivFilter|minAtmSDiv|maxAtmSDiv|hasStrikeFilters|minStrike|maxStrike|hasExpiryDays|minExpiryDays|maxExpiryDays|includeZDte|includeDaily|includeWeekly|includeRegular|includeQuarterly|includeLongTerm|includeOtherExp|includeFlex|includeDirected|includeCommPaying|direction|netVegaDirection|modifiedBy|modifiedIn|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 = 'userName: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 = 'clientFirm: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=UserAuctionFilter' \
--data-urlencode 'view=clientFirm|disabled|includeCovered|includeETFs|includeADRs|includeIndexes|minUPrc|hasUAvgDailyVlmFilter|minUAvgDailyVlm|maxUAvgDailyVlm|minSize|minAbsVega|hasAbsDeltaFilter|minAbsDelta|maxAbsDelta|hasXDeltaFilter|minXDelta|maxXDelta|hasAtmSVolFilter|minAtmSVol|maxAtmSVol|hasAtmSDivFilter|minAtmSDiv|maxAtmSDiv|hasStrikeFilters|minStrike|maxStrike|hasExpiryDays|minExpiryDays|maxExpiryDays|includeZDte|includeDaily|includeWeekly|includeRegular|includeQuarterly|includeLongTerm|includeOtherExp|includeFlex|includeDirected|includeCommPaying|direction|netVegaDirection|modifiedBy|modifiedIn|timestamp' \
--data-urlencode 'where=userName:eq:ExampleString' \
--data-urlencode 'limit=500' \
--data-urlencode 'order=clientFirm: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 = 'UserAuctionFilter'
# Replace with fields you want to see aggregate values for. A "|" separated list of measures should be provided
MEASURE = 'clientFirm|disabled|includeCovered|includeETFs|includeADRs|includeIndexes|minUPrc|hasUAvgDailyVlmFilter|minUAvgDailyVlm|maxUAvgDailyVlm|minSize|minAbsVega|hasAbsDeltaFilter|minAbsDelta|maxAbsDelta|hasXDeltaFilter|minXDelta|maxXDelta|hasAtmSVolFilter|minAtmSVol|maxAtmSVol|hasAtmSDivFilter|minAtmSDiv|maxAtmSDiv|hasStrikeFilters|minStrike|maxStrike|hasExpiryDays|minExpiryDays|maxExpiryDays|includeZDte|includeDaily|includeWeekly|includeRegular|includeQuarterly|includeLongTerm|includeOtherExp|includeFlex|includeDirected|includeCommPaying|direction|netVegaDirection|modifiedBy|modifiedIn|timestamp'
# Replace with fields you want to see aggregated. A "|" separated list of fields should be provided
GROUP = 'disabled|includeCovered|includeETFs|includeADRs|includeIndexes|hasUAvgDailyVlmFilter|hasAbsDeltaFilter|hasXDeltaFilter|hasAtmSVolFilter|hasAtmSDivFilter|hasStrikeFilters|hasExpiryDays|includeZDte|includeDaily|includeWeekly|includeRegular|includeQuarterly|includeLongTerm|includeOtherExp|includeFlex|includeDirected|includeCommPaying|direction|netVegaDirection|modifiedIn'
# 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 = 'userName: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=UserAuctionFilter' \
--data-urlencode 'measure=clientFirm|disabled|includeCovered|includeETFs|includeADRs|includeIndexes|minUPrc|hasUAvgDailyVlmFilter|minUAvgDailyVlm|maxUAvgDailyVlm|minSize|minAbsVega|hasAbsDeltaFilter|minAbsDelta|maxAbsDelta|hasXDeltaFilter|minXDelta|maxXDelta|hasAtmSVolFilter|minAtmSVol|maxAtmSVol|hasAtmSDivFilter|minAtmSDiv|maxAtmSDiv|hasStrikeFilters|minStrike|maxStrike|hasExpiryDays|minExpiryDays|maxExpiryDays|includeZDte|includeDaily|includeWeekly|includeRegular|includeQuarterly|includeLongTerm|includeOtherExp|includeFlex|includeDirected|includeCommPaying|direction|netVegaDirection|modifiedBy|modifiedIn|timestamp' \
--data-urlencode 'group=disabled|includeCovered|includeETFs|includeADRs|includeIndexes|hasUAvgDailyVlmFilter|hasAbsDeltaFilter|hasXDeltaFilter|hasAtmSVolFilter|hasAtmSDivFilter|hasStrikeFilters|hasExpiryDays|includeZDte|includeDaily|includeWeekly|includeRegular|includeQuarterly|includeLongTerm|includeOtherExp|includeFlex|includeDirected|includeCommPaying|direction|netVegaDirection|modifiedIn' \
--data-urlencode 'where=userName: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 = 'UserAuctionFilter'
# 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 = 'userName: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=UserAuctionFilter' \
--data-urlencode 'where=userName:eq:ExampleString'
Post 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'
# Request Parameters
params = {
# Required Parameters
"apiKey": API_KEY,
"cmd": 'postmsgs',
"postaction": "U", # (U)pdate, (I)nsert, or (R)eplace
"postmerge": "Y", # (Y)es or (N)o
}
payload = {
"header": {
"mTyp": "UserAuctionFilter"
},
"message": {
"pkey": {
"userName": "exampleString", // string
"filterName": "exampleString" // string
},
"clientFirm": "exampleString", // string
"disabled": "enumValue", // enum(YesNo) - None, Yes, No
"includeCovered": "enumValue", // enum(YesNo) - None, Yes, No
"includeETFs": "enumValue", // enum(YesNo) - None, Yes, No
"includeADRs": "enumValue", // enum(YesNo) - None, Yes, No
"includeIndexes": "enumValue", // enum(YesNo) - None, Yes, No
"minUPrc": 1.0, // float
"hasUAvgDailyVlmFilter": "enumValue", // enum(YesNo) - None, Yes, No
"minUAvgDailyVlm": 1.0, // float
"maxUAvgDailyVlm": 1.0, // float
"minSize": 1.0, // float
"minAbsVega": 1.0, // float
"hasAbsDeltaFilter": "enumValue", // enum(YesNo) - None, Yes, No
"minAbsDelta": 1.0, // float
"maxAbsDelta": 1.0, // float
"hasXDeltaFilter": "enumValue", // enum(YesNo) - None, Yes, No
"minXDelta": 1.0, // float
"maxXDelta": 1.0, // float
"hasAtmSVolFilter": "enumValue", // enum(YesNo) - None, Yes, No
"minAtmSVol": 1.0, // float
"maxAtmSVol": 1.0, // float
"hasAtmSDivFilter": "enumValue", // enum(YesNo) - None, Yes, No
"minAtmSDiv": 1.0, // float
"maxAtmSDiv": 1.0, // float
"hasStrikeFilters": "enumValue", // enum(YesNo) - None, Yes, No
"minStrike": 1.0, // double
"maxStrike": 1.0, // double
"hasExpiryDays": "enumValue", // enum(YesNo) - None, Yes, No
"minExpiryDays": 1, // int
"maxExpiryDays": 1, // int
"includeZDte": "enumValue", // enum(YesNo) - None, Yes, No
"includeDaily": "enumValue", // enum(YesNo) - None, Yes, No
"includeWeekly": "enumValue", // enum(YesNo) - None, Yes, No
"includeRegular": "enumValue", // enum(YesNo) - None, Yes, No
"includeQuarterly": "enumValue", // enum(YesNo) - None, Yes, No
"includeLongTerm": "enumValue", // enum(YesNo) - None, Yes, No
"includeOtherExp": "enumValue", // enum(YesNo) - None, Yes, No
"includeFlex": "enumValue", // enum(YesNo) - None, Yes, No
"includeDirected": "enumValue", // enum(YesNo) - None, Yes, No
"includeCommPaying": "enumValue", // enum(YesNo) - None, Yes, No
"direction": "enumValue", // enum(BuySell) - None, Buy, Sell
"netVegaDirection": "enumValue", // enum(BuySell) - None, Buy, Sell
"modifiedBy": "exampleString", // string
"modifiedIn": "enumValue", // enum(SysEnvironment) - None, Neptune, Pluto, V7_Stable, V7_Latest, Saturn, Venus, Mars, SysTest, V7_Current
"timestamp": "2025-01-01 12:00:00.000000", // yyyy-MM-dd HH:mm:ss.SSSSSS
"Industry": [ // Repeating Field
{
"industry": "exampleString" // string
}
],
"IncludeTicker": [ // Repeating Field
{
"ticker": {
"at": "EQT",
"ts": "NMS",
"tk": "AAPL"
},
}
],
"ExcludeTicker": [ // Repeating Field
{
"ticker": {
"at": "EQT",
"ts": "NMS",
"tk": "AAPL"
},
}
],
"SpreadClasses": [ // Repeating Field
{
"spreadClass": "enumValue" // enum(SpreadClass) - None, Stk, Fut, Call, Put, Synth, RevCon, Box, JRoll, Roll, Straddle, Strangle, CSpread, PSpread, VStrip, VSpread, HStrip, HSpread, BFly, RiskRev, Mixed, VarSwap, Pair, ExpPair, VolPair
}
],
"AuctionTypes": [ // Repeating Field
{
"auctionType": "enumValue" // enum(AuctionType) - None, Exposure, Improvement, Facilitation, Solicitation, Opening, Closing, RFQ, Block, Flash, BlockDAC, BlockPOC, BlockPCV
}
],
"AuctionSources": [ // Repeating Field
{
"auctionSource": "enumValue" // enum(AuctionSource) - None, SRC, AMEX, BOX, CBOE, ISE, NYSE, PHLX, NSDQ, BATS, C2, NQBX, MIAX, GMNI, EDGO, MCRY, MPRL, EMLD, MEMX, CME, CBOT, NYMEX, COMEX, ICE, EUREX
}
],
"Expiries": [ // Repeating Field
{
"expiry": "2025-01-01" // yyyy-MM-dd
}
]
}
}
response = requests.post(MLINK_PROD_URL, params=params, json=payload)
curl -X POST 'https://mlink-live.nms.saturn.spiderrockconnect.com/rest/json' \
--data-urlencode 'apiKey=XXXX-XXXX-XXXX-XXXX' \
--data-urlencode 'cmd=postmsgs' \
--data-urlencode 'postaction=U' \ # (U)pdate, (I)nsert, or (R)eplace
--data-urlencode 'postmerge=Y' \ # (Y)es or (N)o
--header 'Content-Type: application/json' \
--data '{
"header": {
"mTyp": "UserAuctionFilter"
},
"message": {
"pkey": {
"userName": "exampleString", // string
"filterName": "exampleString" // string
},
"clientFirm": "exampleString", // string
"disabled": "enumValue", // enum(YesNo) - None, Yes, No
"includeCovered": "enumValue", // enum(YesNo) - None, Yes, No
"includeETFs": "enumValue", // enum(YesNo) - None, Yes, No
"includeADRs": "enumValue", // enum(YesNo) - None, Yes, No
"includeIndexes": "enumValue", // enum(YesNo) - None, Yes, No
"minUPrc": 1.0, // float
"hasUAvgDailyVlmFilter": "enumValue", // enum(YesNo) - None, Yes, No
"minUAvgDailyVlm": 1.0, // float
"maxUAvgDailyVlm": 1.0, // float
"minSize": 1.0, // float
"minAbsVega": 1.0, // float
"hasAbsDeltaFilter": "enumValue", // enum(YesNo) - None, Yes, No
"minAbsDelta": 1.0, // float
"maxAbsDelta": 1.0, // float
"hasXDeltaFilter": "enumValue", // enum(YesNo) - None, Yes, No
"minXDelta": 1.0, // float
"maxXDelta": 1.0, // float
"hasAtmSVolFilter": "enumValue", // enum(YesNo) - None, Yes, No
"minAtmSVol": 1.0, // float
"maxAtmSVol": 1.0, // float
"hasAtmSDivFilter": "enumValue", // enum(YesNo) - None, Yes, No
"minAtmSDiv": 1.0, // float
"maxAtmSDiv": 1.0, // float
"hasStrikeFilters": "enumValue", // enum(YesNo) - None, Yes, No
"minStrike": 1.0, // double
"maxStrike": 1.0, // double
"hasExpiryDays": "enumValue", // enum(YesNo) - None, Yes, No
"minExpiryDays": 1, // int
"maxExpiryDays": 1, // int
"includeZDte": "enumValue", // enum(YesNo) - None, Yes, No
"includeDaily": "enumValue", // enum(YesNo) - None, Yes, No
"includeWeekly": "enumValue", // enum(YesNo) - None, Yes, No
"includeRegular": "enumValue", // enum(YesNo) - None, Yes, No
"includeQuarterly": "enumValue", // enum(YesNo) - None, Yes, No
"includeLongTerm": "enumValue", // enum(YesNo) - None, Yes, No
"includeOtherExp": "enumValue", // enum(YesNo) - None, Yes, No
"includeFlex": "enumValue", // enum(YesNo) - None, Yes, No
"includeDirected": "enumValue", // enum(YesNo) - None, Yes, No
"includeCommPaying": "enumValue", // enum(YesNo) - None, Yes, No
"direction": "enumValue", // enum(BuySell) - None, Buy, Sell
"netVegaDirection": "enumValue", // enum(BuySell) - None, Buy, Sell
"modifiedBy": "exampleString", // string
"modifiedIn": "enumValue", // enum(SysEnvironment) - None, Neptune, Pluto, V7_Stable, V7_Latest, Saturn, Venus, Mars, SysTest, V7_Current
"timestamp": "2025-01-01 12:00:00.000000", // yyyy-MM-dd HH:mm:ss.SSSSSS
"Industry": [ // Repeating Field
{
"industry": "exampleString" // string
}
],
"IncludeTicker": [ // Repeating Field
{
"ticker": {
"at": "EQT",
"ts": "NMS",
"tk": "AAPL"
},
}
],
"ExcludeTicker": [ // Repeating Field
{
"ticker": {
"at": "EQT",
"ts": "NMS",
"tk": "AAPL"
},
}
],
"SpreadClasses": [ // Repeating Field
{
"spreadClass": "enumValue" // enum(SpreadClass) - None, Stk, Fut, Call, Put, Synth, RevCon, Box, JRoll, Roll, Straddle, Strangle, CSpread, PSpread, VStrip, VSpread, HStrip, HSpread, BFly, RiskRev, Mixed, VarSwap, Pair, ExpPair, VolPair
}
],
"AuctionTypes": [ // Repeating Field
{
"auctionType": "enumValue" // enum(AuctionType) - None, Exposure, Improvement, Facilitation, Solicitation, Opening, Closing, RFQ, Block, Flash, BlockDAC, BlockPOC, BlockPCV
}
],
"AuctionSources": [ // Repeating Field
{
"auctionSource": "enumValue" // enum(AuctionSource) - None, SRC, AMEX, BOX, CBOE, ISE, NYSE, PHLX, NSDQ, BATS, C2, NQBX, MIAX, GMNI, EDGO, MCRY, MPRL, EMLD, MEMX, CME, CBOT, NYMEX, COMEX, ICE, EUREX
}
],
"Expiries": [ // Repeating Field
{
"expiry": "2025-01-01" // yyyy-MM-dd
}
]
}
}'