Schema: HistoricalVolatilities (ID: 3225)
Values in this table are computed daily and are calculated from end-of-day marks from the previous period. Official exchange closing values are used where possible.
HistoricalVolatility records are published to the SpiderRock elastic cluster nightly.
METADATA
Attribute | Value |
---|---|
Topic | 3225-market-statistics |
MLink Token | OptSurface |
SRSE Product | SRAnalytics |
Note: The symbol
=
next to a field number indicates that it is a primary key.
BODY
# | Field | Type | Comment |
---|---|---|---|
10= | ticker | TickerKey | |
11= | windowType | string(12) | eg. cc, ccCen, ccClCen, hl, hlCen, iv63, iv126, etc |
100 | date | string(10) | most recent closing date |
103 | securityID | int | |
106 | value | float | most recent historical value |
109 | mv_5d | float | historical mean value (5 day window) |
112 | sd_5d | float | historical std dev (5 day window) |
115 | mv_10d | float | |
118 | sd_10d | float | |
121 | mv_21d | float | |
124 | sd_21d | float | |
127 | mv_42d | float | |
130 | sd_42d | float | |
133 | mv_63d | float | |
136 | sd_63d | float | |
139 | mv_84d | float | |
142 | sd_84d | float | |
145 | mv_105d | float | |
148 | sd_105d | float | |
151 | mv_126d | float | |
154 | sd_126d | float | |
157 | mv_189d | float | |
160 | sd_189d | float | |
163 | mv_252d | float | |
166 | sd_252d | float | |
169 | mv_378d | float | |
172 | sd_378d | float | |
175 | mv_504d | float | |
178 | sd_504d | float | |
181 | timestamp | DateTime | record update timestamp |
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 = 'HistoricalVolatilities'
# 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=HistoricalVolatilities'
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 = 'HistoricalVolatilities'
# 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 = 'date|securityID|value|mv_5d|sd_5d|mv_10d|sd_10d|mv_21d|sd_21d|mv_42d|sd_42d|mv_63d|sd_63d|mv_84d|sd_84d|mv_105d|sd_105d|mv_126d|sd_126d|mv_189d|sd_189d|mv_252d|sd_252d|mv_378d|sd_378d|mv_504d|sd_504d|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 = 'windowType: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=HistoricalVolatilities' \
--data-urlencode 'view=date|securityID|value|mv_5d|sd_5d|mv_10d|sd_10d|mv_21d|sd_21d|mv_42d|sd_42d|mv_63d|sd_63d|mv_84d|sd_84d|mv_105d|sd_105d|mv_126d|sd_126d|mv_189d|sd_189d|mv_252d|sd_252d|mv_378d|sd_378d|mv_504d|sd_504d|timestamp' \
--data-urlencode 'where=windowType: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 = 'HistoricalVolatilities'
# Replace with your desired view. A "|" separated list of views can be provided
# If no view is provided, all views will be returned
VIEW = 'date|securityID|value|mv_5d|sd_5d|mv_10d|sd_10d|mv_21d|sd_21d|mv_42d|sd_42d|mv_63d|sd_63d|mv_84d|sd_84d|mv_105d|sd_105d|mv_126d|sd_126d|mv_189d|sd_189d|mv_252d|sd_252d|mv_378d|sd_378d|mv_504d|sd_504d|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 = 'windowType: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 = 'date: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=HistoricalVolatilities' \
--data-urlencode 'view=date|securityID|value|mv_5d|sd_5d|mv_10d|sd_10d|mv_21d|sd_21d|mv_42d|sd_42d|mv_63d|sd_63d|mv_84d|sd_84d|mv_105d|sd_105d|mv_126d|sd_126d|mv_189d|sd_189d|mv_252d|sd_252d|mv_378d|sd_378d|mv_504d|sd_504d|timestamp' \
--data-urlencode 'where=windowType:eq:ExampleString' \
--data-urlencode 'limit=500' \
--data-urlencode 'order=date: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 = 'HistoricalVolatilities'
# Replace with fields you want to see aggregate values for. A "|" separated list of measures should be provided
MEASURE = 'date|securityID|value|mv_5d|sd_5d|mv_10d|sd_10d|mv_21d|sd_21d|mv_42d|sd_42d|mv_63d|sd_63d|mv_84d|sd_84d|mv_105d|sd_105d|mv_126d|sd_126d|mv_189d|sd_189d|mv_252d|sd_252d|mv_378d|sd_378d|mv_504d|sd_504d|timestamp'
# Replace with fields you want to see aggregated. A "|" separated list of fields should be provided
GROUP = ''
# 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 = 'windowType: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=HistoricalVolatilities' \
--data-urlencode 'measure=date|securityID|value|mv_5d|sd_5d|mv_10d|sd_10d|mv_21d|sd_21d|mv_42d|sd_42d|mv_63d|sd_63d|mv_84d|sd_84d|mv_105d|sd_105d|mv_126d|sd_126d|mv_189d|sd_189d|mv_252d|sd_252d|mv_378d|sd_378d|mv_504d|sd_504d|timestamp' \
--data-urlencode 'group=' \
--data-urlencode 'where=windowType: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 = 'HistoricalVolatilities'
# 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 = 'windowType: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=HistoricalVolatilities' \
--data-urlencode 'where=windowType:eq:ExampleString'