Schema: BookControl (ID: 1635)
METADATA
| Attribute | Value |
|---|---|
| Topic | 1630-client-book-risk |
| MLink Token | ClientControl |
| SRSE Product | SRControl |
Note: The symbol
=next to a field number indicates that it is a primary key.
BODY
| # | Field | Type | Default Value | Comment |
|---|---|---|---|---|
| 10= | accnt | string(16) | ||
| 11= | clientFirm | string(16) | SR client firm | |
| 100 | bookStatus | enum : BookStatus | TwoWay | |
| 103 | bookRiskMultiplier | float | 1.0 | book risk multiplier (xRM) |
| 106 | maxAccHaircut | float | 1000000 | (xRM) max pre-expiration target haircut ($37.50) |
| 109 | minAccRho | float | -1000 | minimum accnt rho (d$/dInt) |
| 112 | maxAccRho | float | +1000 | maximum accnt rho (d$/dInt) |
| 115 | minDDelta | int | 1000000 | min accnt $delta |
| 118 | maxDDelta | int | 1000000 | max accnt $delta |
| 121 | maxAccAbsWtVega | float | 10000 | (xRM) max account abs wtVega (sum of abs{symbol net wtVega});wtVega = ve * vol / sqrt(max(0.1, years * 4)) |
| 124 | minAccWtVega | float | -1000 | (xRM) minimum accnt net wtVega |
| 127 | maxAccWtVega | float | +1000 | (xRM) maximum accnt net wtVega |
| 130 | minIndWtVega | float | -1000 | (xRM) minimum ind (0) net wtVega (applies to each industry unless overriden by an IndustryControl record) |
| 133 | maxIndWtVega | float | +1000 | (xRM) maximum ind (0) net wtVega (applies to each industry unless overriden by an IndustryControl record) |
| 136 | minSubWtVega | float | -1000 | (xRM) minimum sub (00) net wtVega (applies to each subIndustry unless overriden by an IndustryControl record) |
| 139 | maxSubWtVega | float | +1000 | (xRM) maximum sub (00) net wtVega (applies to each subIndustry unless overriden by an IndustryControl record) |
| 142 | minGrpWtVega | float | -1000 | (xRM) minimum grp (000) net wtVega (applies to each indGroup unless overriden by an IndustryControl record) |
| 145 | maxGrpWtVega | float | +1000 | (xRM) maximum grp (000) net wtVega (applies to each indGroup unless overriden by an IndustryControl record) |
| 148 | userText | text1 | free form text | |
| 151 | modifiedBy | string(24) | user who last modified this record | |
| 154 | modifiedIn | enum : SysEnvironment | ||
| 157 | timestamp | DateTime | timestamp of last modification |
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 = 'BookControl'
# 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=BookControl'
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 = 'BookControl'
# 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 = 'bookStatus|bookRiskMultiplier|maxAccHaircut|minAccRho|maxAccRho|minDDelta|maxDDelta|maxAccAbsWtVega|minAccWtVega|maxAccWtVega|minIndWtVega|maxIndWtVega|minSubWtVega|maxSubWtVega|minGrpWtVega|maxGrpWtVega|userText|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 = 'accnt: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=BookControl' \
--data-urlencode 'view=bookStatus|bookRiskMultiplier|maxAccHaircut|minAccRho|maxAccRho|minDDelta|maxDDelta|maxAccAbsWtVega|minAccWtVega|maxAccWtVega|minIndWtVega|maxIndWtVega|minSubWtVega|maxSubWtVega|minGrpWtVega|maxGrpWtVega|userText|modifiedBy|modifiedIn|timestamp' \
--data-urlencode 'where=accnt: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 = 'BookControl'
# Replace with your desired view. A "|" separated list of views can be provided
# If no view is provided, all views will be returned
VIEW = 'bookStatus|bookRiskMultiplier|maxAccHaircut|minAccRho|maxAccRho|minDDelta|maxDDelta|maxAccAbsWtVega|minAccWtVega|maxAccWtVega|minIndWtVega|maxIndWtVega|minSubWtVega|maxSubWtVega|minGrpWtVega|maxGrpWtVega|userText|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 = 'accnt: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 = 'bookStatus: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=BookControl' \
--data-urlencode 'view=bookStatus|bookRiskMultiplier|maxAccHaircut|minAccRho|maxAccRho|minDDelta|maxDDelta|maxAccAbsWtVega|minAccWtVega|maxAccWtVega|minIndWtVega|maxIndWtVega|minSubWtVega|maxSubWtVega|minGrpWtVega|maxGrpWtVega|userText|modifiedBy|modifiedIn|timestamp' \
--data-urlencode 'where=accnt:eq:ExampleString' \
--data-urlencode 'limit=500' \
--data-urlencode 'order=bookStatus: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 = 'BookControl'
# Replace with fields you want to see aggregate values for. A "|" separated list of measures should be provided
MEASURE = 'bookStatus|bookRiskMultiplier|maxAccHaircut|minAccRho|maxAccRho|minDDelta|maxDDelta|maxAccAbsWtVega|minAccWtVega|maxAccWtVega|minIndWtVega|maxIndWtVega|minSubWtVega|maxSubWtVega|minGrpWtVega|maxGrpWtVega|userText|modifiedBy|modifiedIn|timestamp'
# Replace with fields you want to see aggregated. A "|" separated list of fields should be provided
GROUP = 'bookStatus|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 = 'accnt: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=BookControl' \
--data-urlencode 'measure=bookStatus|bookRiskMultiplier|maxAccHaircut|minAccRho|maxAccRho|minDDelta|maxDDelta|maxAccAbsWtVega|minAccWtVega|maxAccWtVega|minIndWtVega|maxIndWtVega|minSubWtVega|maxSubWtVega|minGrpWtVega|maxGrpWtVega|userText|modifiedBy|modifiedIn|timestamp' \
--data-urlencode 'group=bookStatus|modifiedIn' \
--data-urlencode 'where=accnt: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 = 'BookControl'
# 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 = 'accnt: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=BookControl' \
--data-urlencode 'where=accnt: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": "I", # (I)nsert, (U)pdate, (R)eplace, or (D)elete
"postmerge": "Y", # (Y)es or (N)o
}
payload = {
"header": {
"mTyp": "BookControl"
},
"message": {
"pkey": {
"accnt": "exampleString", // string
"clientFirm": "exampleString" // string
},
"bookStatus": "TwoWay", // enum(BookStatus) - Hold, TwoWay, BuyOnly, SellOnly, CloseOnly, CloseNow, CloseRisk, BuyCloseOnly, SellCloseOnly. Default=TwoWay
"bookRiskMultiplier": 1.0, // float. Default=1.0
"maxAccHaircut": 1000000, // float. Default=1000000
"minAccRho": -1000, // float. Default=-1000
"maxAccRho": +1000, // float. Default=+1000
"minDDelta": 1000000, // int. Default=1000000
"maxDDelta": 1000000, // int. Default=1000000
"maxAccAbsWtVega": 10000, // float. Default=10000
"minAccWtVega": -1000, // float. Default=-1000
"maxAccWtVega": +1000, // float. Default=+1000
"minIndWtVega": -1000, // float. Default=-1000
"maxIndWtVega": +1000, // float. Default=+1000
"minSubWtVega": -1000, // float. Default=-1000
"maxSubWtVega": +1000, // float. Default=+1000
"minGrpWtVega": -1000, // float. Default=-1000
"maxGrpWtVega": +1000, // float. Default=+1000
"userText": "exampleString", // text1
"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
}
}
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=I' \ # (I)nsert, (U)pdate, (R)eplace, or (D)elete
--data-urlencode 'postmerge=Y' \ # (Y)es or (N)o
--header 'Content-Type: application/json' \
--data '{
"header": {
"mTyp": "BookControl"
},
"message": {
"pkey": {
"accnt": "exampleString", // string
"clientFirm": "exampleString" // string
},
"bookStatus": "TwoWay", // enum(BookStatus) - Hold, TwoWay, BuyOnly, SellOnly, CloseOnly, CloseNow, CloseRisk, BuyCloseOnly, SellCloseOnly. Default=TwoWay
"bookRiskMultiplier": 1.0, // float. Default=1.0
"maxAccHaircut": 1000000, // float. Default=1000000
"minAccRho": -1000, // float. Default=-1000
"maxAccRho": +1000, // float. Default=+1000
"minDDelta": 1000000, // int. Default=1000000
"maxDDelta": 1000000, // int. Default=1000000
"maxAccAbsWtVega": 10000, // float. Default=10000
"minAccWtVega": -1000, // float. Default=-1000
"maxAccWtVega": +1000, // float. Default=+1000
"minIndWtVega": -1000, // float. Default=-1000
"maxIndWtVega": +1000, // float. Default=+1000
"minSubWtVega": -1000, // float. Default=-1000
"maxSubWtVega": +1000, // float. Default=+1000
"minGrpWtVega": -1000, // float. Default=-1000
"maxGrpWtVega": +1000, // float. Default=+1000
"userText": "exampleString", // text1
"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
}
}'