Forecast market volatility with implied volatility models and access real-time contract-level derivatives data, including trading volume, open interest, funding rates, and options Greeks.
If you need implied volatilities for expiry dates that are not listed, you can use the "implied volatility surface" endpoint to calculate this.
The IV Smile endpoint lets you calculate volatility on a minute-by-minute basis from options market prices. The endpoint returns a volatility curve for a specific expiry date.
You can get volatility estimates by providing the following information:
Strikes
Forward-log-moneyness
Deltas
The calculation methodology leverages space interpolation.
Currently supported assets and exchanges:
BTC, ETH, SOL, MATIC, XRP on Deribit.
BTC, ETH on OKX.
BTC, ETH on Deribit & OKX (aggregated).
If you need data from other exchanges, we can add them on request.
Short listed-maturities (e.g. 7 days time-to-maturity) are only available for individual exchanges.
https://{eu/us}.market-api.kaiko.io/v2/data/analytics.v2/implied_volatility_smile
region
Yes
Choose between eu
and us
.
base
Yes
The desired base as the underlying of the options. See supported assets above.
btc
, eth
quote
Yes
The desired quote as the underlying of the options.
usd
or usdc
usd
value_time
Yes
The time at which to compute implied volatilities The time t should be smaller than the expiry T
2022-09-20T16:15:00.000Z
expiry
Yes
The expiry for which the implied volatilities are to be computed Must be an existing expiry on the selected exchange and tradable at the time of the computation.
2022-12-30T08:00:00.000Z
strikes
Yes, if neither forward_log_moneynesses
nor deltas
parameters are used.
The strike prices for which the implied volatilities are to be computed. Strike prices can be existing or non-existing ones (space interpolation included)
Either strikes
or forward_log_moneynesses
or deltas should be filled.
singular: 10000
plural: 10000,15000,20000
forward_log_moneynesses
Yes, if neither strikes
nor deltas
parameters are used.
The forward log moneyness for which the implied volatilities are to be computed.
Either strikes, forward_log_moneynesses
or deltas
should be filled.
singular: 1
plural: -1,-0.5,0,0.5,1
deltas
Yes, if neither forward_log_moneynesses
nor strikes
parameters are used.
The delta levels (of a Call option) for which the implied volatilities are to be computed.
Either strikes, forward_log_moneynesses
or deltas
should be filled.
exchanges
No
The desired exchange as source of options data. See supported exchanges above.
drbt
value_time
The time in parameter
2022-09-20T16:15:00.000Z
expiry
The expiry in parameter
2022-12-30T00:00:00.000Z
time_to_expiry
The associated time to expiry in year
0.27580868156450355
implied_volatilities
The list of requested implied volatilities
[{"strike": 40000,
"forward_log_moneyness": 0.7348555803648208,
"implied_volatility": 0.7341747093260883,
"delta": 0.04334612697660922,
"gamma": 0.000012437991693543254},
{"strike": 20000,
"forward_log_moneyness": 0.041708399804875465,
"implied_volatility": 0.6670092468551713,
"delta": 0.5223606946028295,
"gamma": 0.00005929353471794603}, ... ]
delta
The first derivative of the price with regards to the underlying price.
2.8863019124747424e-7
gamma
The second derivative of the price with regards to the underlying price.
2.416523346501216e-10
current_spot
The underlying spot price at the value timestamp.
71717
interest_rate
The implied interest rate.
0.14954983972466698
Use this example to calculate IV using deltas.
curl --compressed -H 'Accept: application/json' -H 'X-Api-Key: <client-api-key>' \
'https://us.market-api.kaiko.io/v2/data/analytics.v2/implied_volatility_smile?base=btc"e=usd&value_time=2024-06-07T12:00:00.000Z&expiry=2024-06-28T00:00:00.000Z&exchanges=drbt&deltas=0.25,0.5,0.75'
Use this example to calculate IV using forward log moneyness.
https://us.market-api.kaiko.io/v2/data/analytics.v2/implied_volatility_smile?base=btc"e=usd&exchanges=drbt,okex&value_time=2024-09-12T10:00:00.000Z&expiry=2024-09-27T08:00:00.000Z&forward_log_moneynesses=-1,-0.5,0,0.5,1
Use this example to calculate IV using strikes.
https://us.market-api.kaiko.io/v2/data/analytics.v2/implied_volatility_smile?base=btc"e=usd&exchanges=drbt&value_time=2024-09-12T10:00:00.000Z&expiry=2024-09-27T08:00:00.000Z&strikes=30000,50000,60000,70000,90000
Use this example to calculate IV using deltas
##### 1. Import dependencies #####
import requests
import pandas as pd
##### 2. Choose the value of the query's parameters #####
# ---- Required parameters ---- #
base = "btc"
quote = "usd"
value_time = "2024-06-07T12:00:00.000Z"
expiry = "2024-06-28T00:00:00.000Z"
deltas = "0.25,0.5,0.75"
# ---- Optional parameters ---- #
exchanges = "drbt"
# ---- API key configuration ---- #
api_key = "YOUR_API_KEY"
##### 3. Get the data #####
# ---- Function to run an API call ---- #
# Get the data in a dataframe --------- #
def get_kaiko_data(api_key: str, base: str, quote: str, value_time: str, expiry: str, deltas: str, exchanges: str = None):
headers = {'Accept': 'application/json', 'X-Api-Key': api_key}
url = f'https://us.market-api.kaiko.io/v2/data/analytics.v2/implied_volatility_smile'
params = {
"base": base,
"quote": quote,
"value_time": value_time,
"expiry": expiry,
"deltas": deltas,
"exchanges": exchanges
}
try:
res = requests.get(url, headers=headers, params=params)
res.raise_for_status()
data = res.json()
if 'data' not in data:
print("No data returned.")
return pd.DataFrame()
df = pd.DataFrame(data['data'])
# Handle pagination with continuation token
while 'next_url' in data:
next_url = data['next_url']
if next_url is None:
break
res = requests.get(next_url, headers=headers)
res.raise_for_status()
data = res.json()
if 'data' in data:
df = pd.concat([df, pd.DataFrame(data['data'])], ignore_index=True)
return df
except requests.exceptions.RequestException as e:
print(f"API request error: {e}")
return pd.DataFrame()
# ---- Get the data ---- #
df = get_kaiko_data(api_key=api_key, base=base, quote=quote, value_time=value_time, expiry=expiry, deltas=deltas, exchanges=exchanges)
print (df)
Use this example to calculate IV using forward log moneyness
##### 1. Import dependencies #####
import requests
import pandas as pd
##### 2. Choose the value of the query's parameters #####
# ---- Required parameters ---- #
base = "btc"
quote = "usd"
value_time = "2022-09-20T16:15:00.000Z"
expiry = "2022-12-30T08:00:00.000Z"
forward_log_moneynesses = "-1,-0.5,0,0.5,1"
# ---- Optional parameters ---- #
exchanges = "drbt"
# ---- API key configuration ---- #
api_key = "YOUR_API_KEY"
##### 3. Get the data #####
# ---- Function to run an API call ---- #
# Get the data in a dataframe --------- #
def get_kaiko_data(api_key: str, base: str, quote: str, value_time: str, expiry: str, forward_log_moneynesses: str, exchanges: str = None):
headers = {'Accept': 'application/json', 'X-Api-Key': api_key}
url = f'https://us.market-api.kaiko.io/v2/data/analytics.v2/implied_volatility_smile'
params = {
"base": base,
"quote": quote,
"value_time": value_time,
"expiry": expiry,
"forward_log_moneynesses": forward_log_moneynesses,
"exchanges": exchanges
}
try:
res = requests.get(url, headers=headers, params=params)
res.raise_for_status()
data = res.json()
if 'data' not in data:
print("No data returned.")
return pd.DataFrame()
df = pd.DataFrame(data['data'])
# Handle pagination with continuation token
while 'next_url' in data:
next_url = data['next_url']
if next_url is None:
break
res = requests.get(next_url, headers=headers)
res.raise_for_status()
data = res.json()
if 'data' in data:
df = pd.concat([df, pd.DataFrame(data['data'])], ignore_index=True)
return df
except requests.exceptions.RequestException as e:
print(f"API request error: {e}")
return pd.DataFrame()
# ---- Get the data ---- #
df = get_kaiko_data(api_key=api_key, base=base, quote=quote, value_time=value_time, expiry=expiry, forward_log_moneynesses=forward_log_moneynesses, exchanges=exchanges)
print (df)
Use this example to calculate IV using forward log moneyness
##### 1. Import dependencies #####
import requests
import pandas as pd
##### 2. Choose the value of the query's parameters #####
# ---- Required parameters ---- #
base = "btc"
quote = "usd"
value_time = "2022-09-20T16:15:00.000Z"
expiry = "2022-12-30T08:00:00.000Z"
strikes = "10000,15000,20000"
# ---- Optional parameters ---- #
exchanges = "drbt"
# ---- API key configuration ---- #
api_key = "YOUR_API_KEY"
##### 3. Get the data #####
# ---- Function to run an API call ---- #
# Get the data in a dataframe --------- #
def get_kaiko_data(api_key: str, base: str, quote: str, value_time: str, expiry: str, strikes: str, exchanges: str = None):
headers = {'Accept': 'application/json', 'X-Api-Key': api_key}
url = f'https://us.market-api.kaiko.io/v2/data/analytics.v2/implied_volatility_smile'
params = {
"base": base,
"quote": quote,
"value_time": value_time,
"expiry": expiry,
"strikes": strikes,
"exchanges": exchanges
}
try:
res = requests.get(url, headers=headers, params=params)
res.raise_for_status()
data = res.json()
if 'data' not in data:
print("No data returned.")
return pd.DataFrame()
df = pd.DataFrame(data['data'])
# Handle pagination with continuation token
while 'next_url' in data:
next_url = data['next_url']
if next_url is None:
break
res = requests.get(next_url, headers=headers)
res.raise_for_status()
data = res.json()
if 'data' in data:
df = pd.concat([df, pd.DataFrame(data['data'])], ignore_index=True)
return df
except requests.exceptions.RequestException as e:
print(f"API request error: {e}")
return pd.DataFrame()
# ---- Get the data ---- #
df = get_kaiko_data(api_key=api_key, base=base, quote=quote, value_time=value_time, expiry=expiry, strikes=strikes, exchanges=exchanges)
print (df)
{
"query": {
"base": "btc",
"quote": "usd",
"exchanges": [
"drbt",
"okex"
],
"value_time": "2024-06-07T12:00:00.000Z",
"expiry": "2024-06-28T00:00:00.000Z",
"data_version": "v2",
"commodity": "analytics",
"request_time": "2024-06-24T12:30:09.700Z",
"sources": "false"
},
"time": "2024-06-24T12:30:10.147Z",
"data": [
{
"value_time": "2024-06-07T12:00:00.000Z",
"expiry": "2024-06-28T00:00:00.000Z",
"time_to_expiry": 0.056164383561643834,
"implied_volatilities": [
{
"strike": 72853.3324003775,
"forward_log_moneyness": 0.007321081822738051,
"implied_volatility": 0.5105897940662363,
"delta": 0.5,
"gamma": 0.000045971145294598765,
"current_spot": 71717,
"interest_rate": 0.14954983972466698
},
{
"strike": 79392.23132701412,
"forward_log_moneyness": 0.09327332815155387,
"implied_volatility": 0.5335098490669691,
"delta": 0.25,
"gamma": 0.00003504506121504308,
"current_spot": 71717,
"interest_rate": 0.14954983972466698
},
{
"strike": 67169.33106494324,
"forward_log_moneyness": -0.07391043269308284,
"implied_volatility": 0.5076566142080143,
"delta": 0.75,
"gamma": 0.000036829787686483384,
"current_spot": 71717,
"interest_rate": 0.14954983972466698
}
]
}
],
"exchanges": [
"drbt",
"okex"
]
}
{
"query": {
"base": "btc",
"quote": "usd",
"exchanges": [
"drbt",
"okex"
],
"value_time": "2024-09-12T10:00:00.000Z",
"expiry": "2024-09-27T08:00:00.000Z",
"data_version": "v2",
"commodity": "analytics",
"request_time": "2024-09-16T10:08:13.297Z",
"sources": "false"
},
"time": "2024-09-16T10:08:13.510Z",
"data": [
{
"value_time": "2024-09-12T10:00:00.000Z",
"expiry": "2024-09-27T00:00:00.000Z",
"time_to_expiry": 0.03995433789954338,
"implied_volatilities": [
{
"strike": 21393.433382294108,
"forward_log_moneyness": -1,
"implied_volatility": 1.333640363610205,
"delta": 0.9999487436462999,
"gamma": 1.3636212810241294E-8,
"current_spot": 58033.01112255454,
"interest_rate": 0.051859643540835755
},
{
"strike": 35271.80867069449,
"forward_log_moneyness": -0.5,
"implied_volatility": 0.9596570717413877,
"delta": 0.9965589532046168,
"gamma": 9.298329941261203E-7,
"current_spot": 58033.01112255454,
"interest_rate": 0.051859643540835755
},
{
"strike": 58153.381211439206,
"forward_log_moneyness": 0,
"implied_volatility": 0.5101368982713104,
"delta": 0.5203310896967671,
"gamma": 6.732894295644585E-5,
"current_spot": 58033.01112255454,
"interest_rate": 0.051859643540835755
},
{
"strike": 95878.71656643301,
"forward_log_moneyness": 0.5,
"implied_volatility": 0.8386751286583922,
"delta": 0.0018731164887705876,
"gamma": 6.140349526013891E-7,
"current_spot": 58033.01112255454,
"interest_rate": 0.051859643540835755
},
{
"strike": 158077.27941050686,
"forward_log_moneyness": 1,
"implied_volatility": 1.1585659255535645,
"delta": 1.3207614779298105E-5,
"gamma": 4.342680303635139E-9,
"current_spot": 58033.01112255454,
"interest_rate": 0.051859643540835755
}
]
}
]
}
{
"query": {
"base": "btc",
"quote": "usd",
"exchanges": [
"drbt"
],
"value_time": "2024-09-12T10:00:00.000Z",
"expiry": "2024-09-27T08:00:00.000Z",
"data_version": "v2",
"commodity": "analytics",
"request_time": "2024-09-16T10:16:06.767Z",
"sources": "false"
},
"time": "2024-09-16T10:16:07.109Z",
"data": [
{
"value_time": "2024-09-12T10:00:00.000Z",
"expiry": "2024-09-27T08:00:00.000Z",
"time_to_expiry": 0.0408675799086758,
"implied_volatilities": [
{
"strike": 30000,
"forward_log_moneyness": -0.6621439523959698,
"implied_volatility": 1.0918347265102102,
"delta": 0.999065374274305,
"gamma": 2.470728795941105E-7,
"current_spot": 58026.01780838792,
"interest_rate": 0.0599458347465653
},
{
"strike": 50000,
"forward_log_moneyness": -0.15131832862997915,
"implied_volatility": 0.6151097548518855,
"delta": 0.8995619045026346,
"gamma": 2.4400231724112595E-5,
"current_spot": 58026.01780838792,
"interest_rate": 0.0599458347465653
},
{
"strike": 60000,
"forward_log_moneyness": 0.031003228163975546,
"implied_volatility": 0.5087453039141314,
"delta": 0.40128287640417803,
"gamma": 6.479219462479912E-5,
"current_spot": 58026.01780838792,
"interest_rate": 0.0599458347465653
},
{
"strike": 70000,
"forward_log_moneyness": 0.18515390799123382,
"implied_volatility": 0.5834792805075438,
"delta": 0.06542894780360681,
"gamma": 1.861991887220773E-5,
"current_spot": 58026.01780838792,
"interest_rate": 0.0599458347465653
},
{
"strike": 90000,
"forward_log_moneyness": 0.4364683362721398,
"implied_volatility": 0.7752384746098042,
"delta": 0.0033982150399509137,
"gamma": 1.125492902360329E-6,
"current_spot": 58026.01780838792,
"interest_rate": 0.0599458347465653
}
]
}
]
}
Shared in
Derivatives risk endpoint
This endpoint returns exchange-provided metrics such as open interest, funding rates, and option greeks.
https://{eu/us}.market-api.kaiko.io/v2/data/derivatives.v2/risk
region
Yes
Choose between eu
and us
.
exchange
Yes
Should be one of the exchanges currently supported
okex
instrument_class
Yes
future
, perpetual-future
, or option
future
instrument
Yes
btcusdt250117
interval
No
Interval period (can be one of 1m
, 1h
, 4h
, and 1d
). Default 1m
When you query data using aninterval
greater than one minute, we'll return the data from the last minute of that time period. For example, if you query data for 09:00
with the interval
set at 1h
, we'll return data from 09:59
(since that's the last minute of the 09:00-10:00 hour period).
1h
page_size
No
10
sort
No
Return the data in ascending (asc) or descending (desc) order. Default desc
asc
start_time
No
Starting time in ISO 8601 (inclusive).
2025-01-01T00:00:00.000Z
end_time
No
Ending time in ISO 8601 (exclusive).
2025-01-04T00:00:00.000Z
timestamp
Timestamp at which the interval begins. In milliseconds.
1650441900000
24h_volume
The volume of the trades executed in the last 24 hours (can be in base_asset, quote_asset or the number of contracts)
5270648
open_interest
The total outstanding number of contracts (units in which open interest metrics are quoted vary by exchange)
1127623
funding_rate
The current funding rate.
-0.0000756735759807
predicted_funding_rate
The predicted funding rate for the next period.
-0.0000845044644161
timestamp
Timestamp at which the interval begins. In milliseconds.
1650441900000
24h_volume
The volume of the trades executed in the last 24 hours (can be in base_asset, quote_asset or the number of contracts)
5270648
open_interest
The total outstanding number of contracts (units in which open interest metrics are quoted vary by exchange)
1127623
time_to_expiry
The number of minutes remaining before expiry.
41504
nearby
The soonest expiring contract with the same base & quote asset on the specified exchange
boolean value
quarterly_nearby
The soonest expiring quarterly contract with the same base & quote asset on the specified exchange
boolean value
timestamp
Timestamp at which the interval begins. In milliseconds.
1650441900000
24h_volume
The volume of the trades executed in the last 24 hours (can be in base_asset, quote_asset or the number of contracts)
5270648
open_interest
The total outstanding number of contracts (units in which open interest metrics are quoted vary by exchange)
1127623
time_to_expiry
The number of minutes remaining before expiry.
41504
nearby
The soonest expiring contract with the same base & quote asset on the specified exchange
boolean value
quarterly_nearby
The soonest expiring quarterly contract with the same base & quote asset on the specified exchange
boolean value
ask_iv
Implied volatility for the best ask.
57.5
bid_iv
Implied volatility for the best bid.
65.4
mark_iv
The implied volatility for the mark price.
69.42
delta
The delta value for the option.
0.8841
gamma
The gamma value for the option.
0.00003
rho
The rho value for the option.
21.26122
theta
The theta value for the option.
-26.18193
vega
The vega value for the option.
2.36321
curl --compressed -H 'Accept: application/json' -H 'X-Api-Key: <client-api-key>' \
'https://us.market-api.kaiko.io/v2/data/derivatives.v2/risk?exchange=okex&instrument_class=perpetual-future&instrument=btc-usdt&page_size=2'
##### 1. Import dependencies #####
import requests
import pandas as pd
##### 2. Choose the value of the query's parameters #####
# ---- Required parameters ---- #
exchange = "okex"
instrument_class = "perpetual-future"
instrument = "btc-usdt"
# ---- Optional parameters ---- #
interval = "1h"
sort = "desc"
page_size = 100
start_time= None
end_time= None
# ---- API key configuration ---- #
api_key = "YOUR_API_KEY"
##### 3. Get the data #####
# ---- Function to run an API call ---- #
# Get the data in a dataframe --------- #
def get_kaiko_data(api_key: str, exchange: str, instrument_class: str, instrument: str, start_time: str, end_time: str, interval: str, sort: str, page_size: int):
headers = {'Accept': 'application/json', 'X-Api-Key': api_key}
url = f'https://us.market-api.kaiko.io/v2/data/derivatives.v2/risk'
params = {
"start_time": start_time,
"end_time": end_time,
"sort": sort,
"page_size": page_size,
"interval": interval,
"exchange": exchange,
"instrument_class": instrument_class,
"instrument": instrument
}
try:
res = requests.get(url, headers=headers, params=params)
res.raise_for_status()
data = res.json()
if 'data' not in data:
print("No data returned.")
return pd.DataFrame()
df = pd.DataFrame(data['data'])
# Handle pagination with continuation token
while 'next_url' in data:
next_url = data['next_url']
if next_url is None:
break
res = requests.get(next_url, headers=headers)
res.raise_for_status()
data = res.json()
if 'data' in data:
df = pd.concat([df, pd.DataFrame(data['data'])], ignore_index=True)
return df
except requests.exceptions.RequestException as e:
print(f"API request error: {e}")
return pd.DataFrame()
# ---- Get the data ---- #
df = get_kaiko_data(api_key=api_key, exchange=exchange, instrument_class=instrument_class, instrument=instrument, interval=interval, start_time=start_time, end_time=end_time, sort=sort, page_size=page_size)
print (df)
{
"query": {
"page_size": "2",
"exchange": "okex",
"instrument_class": "perpetual-future",
"instrument": "btc-usdt",
"sort": "desc",
"data_version": "v2",
"commodity": "derivatives",
"request_time": "2022-04-28T10:17:48.180Z"
},
"time": "2022-04-28T10:17:48.698Z",
"timestamp": 1651141068698,
"data": [
{
"timestamp": 1651141020000,
"24h_volume": "10428503",
"open_interest": "1084816",
"funding_rate": "-0.0001225804461251",
"predicted_funding_rate": "-0.0000652655998942"
},
{
"timestamp": 1651140960000,
"24h_volume": "10423219",
"open_interest": "1086823",
"funding_rate": "-0.0001225804461251",
"predicted_funding_rate": "-0.0000654154039082"
},
],
/* ... */
"access": {
"access_range": {
"start_timestamp": 1646006400,
"end_timestamp": null
},
"data_range": {
"start_timestamp": null,
"end_timestamp": null
}
}
}
Instrument code
.
See
One instrument returned per query.
Number of snapshots to return data for. (default: 100, min: 1, max: 1000). See
Information from this endpoint can be accessed through Google BigQuery. To get started, read our .
The IV surface endpoint lets you calculate volatility from options market prices. Feed the endpoint a set of maturity dates or timeframes for when options can be exercised, and you'll receive a volatility surface, which shows how volatility changes over different dates and prices.
You can get volatility estimates based on:
A specific set of strike prices
A forward-log-moneyness grid
A specific set of delta values
A delta grid
The calculation methodology leverages space and time interpolation.
Currently supported assets and exchanges:
BTC, ETH, SOL, MATIC, XRP on Deribit.
BTC, ETH on OKX.
BTC, ETH on Deribit & OKX (aggregated).
If you need data from other exchanges, we can add them on request.
https://{eu/us}.market-api.kaiko.io/v2/data/analytics.v2/implied_volatility_surface
region
Yes
Choose between eu
and us
.
Short listed-maturities (e.g. 7 days time-to-maturity) are only available for individual exchange.
Time extrapolation is not permitted. I.e. the shortest requested expiry should be after the exchange’s shortest expiry, and the furthest requested expiry must be before the exchange’s latest expiry. If these conditions are not met, only a partial surface will be returned within the available expiry range. The completeness of the output is indicated in the complete_output
field.
Strikes and forward-log-moneynesses are only available when retrieving implied volatilities by strikes or forward-log-moneynesses (not by delta).
base
Yes
The desired base as the underlying of the options. See asset support above.
btc
, eth
quote
Yes
The desired quote as the underlying of the options. See asset support above.
usd
exchanges
Yes
The desired exchange as source of options data. See exchange support above.
drbt
value_time
Yes
The time at which to compute implied volatilities The time t should be smaller than the lowest requested expiry.
2022-06-25T16:00:00.000Z
expiry_list
Yes, if the set of parameters (tte_min
, tte_max
, tte_step
) is not used.
The expiries for which the implied volatilities are to be computed. Expiries can be listed or non-listed ones.
Expiries should be between minimum and maximum listed maturities on exchange. If not, a partial output will be returned.
Either expiry_list
or (tte_min
, tte_max
, tte_step
) should be filled.
expiry_list=2022-08-28T08:00:00.000Z, 2022-08-30T08:00:00.000Z
or tte_min=0.034288&tte_max=1&tte_step=0.02
tte_min
Yes, if expiry_list
is not used. To be used along with tte_max
, tte_step
.
Minimum time-to-expiry on the time grid.
Strictly positive value allowed.
If the `tte_min` is below the time to expiry associated with the minimum listed maturity, partial output will be returned.
Either expiry_list
or (tte_min
, tte_max
, tte_step
) should be filled.
0.034288
tte_max
Yes, if expiry_list
is not used. To be used along with tte_min
, tte_step
.
Maximum time-to-expiry on the time grid.
Strictly positive value above the `tte_min`.
If the `tte_max` is above the time to expiry associated with the maximum listed maturity, partial output will be returned.
Either expiry_list
or (tte_min, tte_max,tte_step)
should be filled.
1
tte_step
Yes, if expiry_list
is not used. To be used along with tte_min
, tte_max
.
Step between two time-to-expiries in time grid.
Strictly positive value allowed.
Either expiry_list
or (tte_min, tte_max, tte_step)
should be filled.
0.02
strike_list
Yes, if the set of parameters (f_log_min
, f_log_max
, f_log_step
) or deltas
or the set of parameters (delta_min
, delta_max
, delta_step
) are not used.
The strike prices for which the implied volatilities are to be computed. Strike prices can be listed or non-listed ones.
Strictly positives values allowed.
Either strike_list
, (f_log_m_min
, f_log_m_max
, f_log_m_step
), deltas
or
(delta_min
, delta_max
, delta_step
) should be filled.
strike_list=25000, 29150, 29155, 29160
or f_log_m_min=-1.5&f_log_m_max=1.5&f_log_m_step=0.05
f_log_m_min
Yes, if strike_list
or deltas
or the set of parameters (delta_min
, delta_max
, delta_step
) are not used.
To be used along with f_log_m_max
, f_log_m_step
.
Minimum forward log-moneyness on the space grid.
Either strike_list
, (f_log_m_min
, f_log_m_max
, f_log_m_step
), deltas
or
(delta_min
, delta_max
, delta_step
) should be filled.
-1.5
f_log_m_max
Yes, if strike_list
or deltas
or the set of parameters (delta_min
, delta_max
, delta_step
) are not used.
To be used along with f_log_m_min
, f_log_m_step
.
Maximum forward log-moneyness on the space grid.
Either strike_list
, (f_log_m_min
, f_log_m_max
, f_log_m_step
), deltas
or
(delta_min
, delta_max
, delta_step
) should be filled.
1
f_log_m_step
Yes, if strike_list
or deltas
or the set of parameters (delta_min
, delta_max
, delta_step
) are not used.
To be used along with f_log_m_min
, f_log_m_max
.
Step between two forward log moneyness in space grid.
Either strike_list
, (f_log_m_min
, f_log_m_max
, f_log_m_step
), deltas
or
(delta_min
, delta_max
, delta_step
) should be filled.
0.02
deltas
Yes, if strike_list
or the sets of parameters (delta_min, delta_max, delta_step)
or (f_log_m_min
, f_log_m_max
, f_log_m_step
) are not used.
The delta levels (of a Call option) for which the implied volatilities are to be computed.
Only delta values between 0.01
and 0.99
are allowed.
Either strike_list
, (f_log_m_min
, f_log_m_max
, f_log_m_step
), deltas
or
(delta_min
, delta_max
, delta_step
) should be filled.
deltas=0.25,0.5,0.75
delta_min
Yes, if strike_list
or deltas
or the set of parameters (f_log_m_min
, f_log_m_max
, f_log_m_step
) are not used. To be used along with delta_max
, delta_step
.
Minimum delta (of a Call option) on the space grid.
Only delta values between 0.01
and 0.99
are allowed.
Either strike_list
, (f_log_m_min
, f_log_m_max
, f_log_m_step
), deltas
or
(delta_min
, delta_max
, delta_step
) should be filled.
0.01
delta_max
Yes, if strike_list
or deltas
or the set of parameters (f_log_m_min
, f_log_m_max
, f_log_m_step
) are not used. To be used along with delta_min
, delta_step
.
Maximum delta (of a Call option) on the space grid.
Only delta values between 0.01
and 0.99
are allowed.
Either strike_list
, (f_log_m_min
, f_log_m_max
, f_log_m_step
), deltas
or
(delta_min
, delta_max
, delta_step
) should be filled.
0.99
delta_step
Yes, if strike_list
or deltas
or the set of parameters (f_log_m_min
, f_log_m_max
, f_log_m_step
) are not used. To be used along with delta_min
, delta_max
.
Step between two deltas (of a Call option) on the space grid.
Either strike_list
, (f_log_m_min
, f_log_m_max
, f_log_m_step
), deltas
or
(delta_min
, delta_max
, delta_step
) should be filled.
complete_output
This indicates whether the output covers the entire requested range within the listed expiries, or only the valid subset.
True
value_time
The time in parameter
2022-06-25T16:00:00Z
expiry
The expiry at which the IV has been interpolated.
2022-08-28T08:00:00Z
time_to_expiry
The associated time-to-expiry (in year).
0.17442922374429223
strike
The strike at which the IV has been computed. Not provided when the input is a delta list.
265.88827409960714
forward_log_moneyness
The associated forward log-moneyness. Not provided when the input is a delta list.
-1.5
implied_volatility
The calibrated and interpolated implied volatilities.
1.8088997727784055
delta
The first derivative of the price (of a Call option) with regards to the underlying price
-0.009058250602524742
gamma
The second derivative of the price with regards to the underlying price
0.000027152549142705487
interest_rate
The implied interest rate.
0.14954983972466698
current_spot
The underlying spot price at the value timestamp.
71717
Use this example to calculate IV Surface using Deltas.
https://us.market-api.kaiko.io/v2/data/analytics.v2/implied_volatility_surface?base=btc"e=usd&exchanges=drbt%2Cokex&value_time=2024-09-12T10%3A00%3A00.000Z&expiry_list=2024-09-20T08%3A00%3A00.000Z%2C2024-09-27T08%3A00%3A00.000Z%2C2024-10-04T08%3A00%3A00.000Z%2C2024-10-25T08%3A00%3A00.000Z%2C2024-11-08T08%3A00%3A00.000Z&delta_min=0.1&delta_max=0.9&delta_step=0.1
Use this example to calculate IV Surface using forward log moneyness.
https://us.market-api.kaiko.io/v2/data/analytics.v2/implied_volatility_surface?base=btc"e=usd&exchanges=drbt&value_time=2024-09-12T10%3A00%3A00.000Z&tte_min=0.01&tte_max=1.&tte_step=0.02&f_log_m_min=-0.5&f_log_m_max=0.5&f_log_m_step=0.5
Use this example to calculate IV Surface using strikes.
https://us.market-api.kaiko.io/v2/data/analytics.v2/implied_volatility_surface?base=btc"e=usd&exchanges=drbt&value_time=2024-09-12T10%3A00%3A00.000Z&tte_min=0.01&tte_max=1.&tte_step=0.02&strike_list=55000%2C56000%2C57000%2C58000%2C59000%2C60000
{
"query":{
"base":"btc",
"quote":"usd",
"exchanges":[
"drbt",
"okex"
],
"value_time":"2024-09-12T10:00:00.000Z",
"data_version":"v2",
"commodity":"analytics",
"request_time":"2024-09-12T17:12:07.699Z"
},
"time":"2024-09-12T17:12:07.699Z",
"timestamp":1726161128874,
"complete_output":true,
"data":[
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-09-20T08:00:00.000Z",
"time_to_expiry":0.021689497716894976,
"implied_volatilities":[
{
"implied_volatility":0.55567045411767,
"delta":0.1,
"interest_rate":0.05222290146213202,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5304086533216835,
"delta":0.2,
"interest_rate":0.05222290146213202,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5204807466788227,
"delta":0.30000000000000004,
"interest_rate":0.05222290146213202,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5176080670107802,
"delta":0.4,
"interest_rate":0.05222290146213202,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5198235126846833,
"delta":0.5,
"interest_rate":0.05222290146213202,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5271474253673343,
"delta":0.6,
"interest_rate":0.05222290146213202,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5412722397557681,
"delta":0.7,
"interest_rate":0.05222290146213202,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5672860200574902,
"delta":0.7999999999999999,
"interest_rate":0.05222290146213202,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.6234279466167519,
"delta":0.8999999999999999,
"interest_rate":0.05222290146213202,
"current_spot":58033.01112255454
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-09-27T08:00:00.000Z",
"time_to_expiry":0.0408675799086758,
"implied_volatilities":[
{
"implied_volatility":0.5621097108504748,
"delta":0.1,
"interest_rate":0.052497499225334636,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5272061410113572,
"delta":0.2,
"interest_rate":0.052497499225334636,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5131506051610666,
"delta":0.30000000000000004,
"interest_rate":0.052497499225334636,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5082456534252546,
"delta":0.4,
"interest_rate":0.052497499225334636,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5095651826004636,
"delta":0.5,
"interest_rate":0.052497499225334636,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.51677777797711,
"delta":0.6,
"interest_rate":0.052497499225334636,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5314642342464321,
"delta":0.7,
"interest_rate":0.052497499225334636,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5587288797341338,
"delta":0.7999999999999999,
"interest_rate":0.052497499225334636,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.6167183766301421,
"delta":0.8999999999999999,
"interest_rate":0.052497499225334636,
"current_spot":58033.01112255454
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-10-04T08:00:00.000Z",
"time_to_expiry":0.06004566210045662,
"implied_volatilities":[
{
"implied_volatility":0.5666208561497174,
"delta":0.1,
"interest_rate":0.06524195117082478,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5323692982650756,
"delta":0.2,
"interest_rate":0.06524195117082478,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5186955773995799,
"delta":0.30000000000000004,
"interest_rate":0.06524195117082478,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5138985541028067,
"delta":0.4,
"interest_rate":0.06524195117082478,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5150201900956664,
"delta":0.5,
"interest_rate":0.06524195117082478,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5216164561118771,
"delta":0.6,
"interest_rate":0.06524195117082478,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5349940736116142,
"delta":0.7,
"interest_rate":0.06524195117082478,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5595467577751186,
"delta":0.7999999999999999,
"interest_rate":0.06524195117082478,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.6109550611499716,
"delta":0.8999999999999999,
"interest_rate":0.06524195117082478,
"current_spot":58033.01112255454
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-10-25T08:00:00.000Z",
"time_to_expiry":0.11757990867579908,
"implied_volatilities":[
{
"implied_volatility":0.5922138420961504,
"delta":0.1,
"interest_rate":0.06444166091264596,
"current_spot":58033.0026110549
},
{
"implied_volatility":0.5520922097809197,
"delta":0.2,
"interest_rate":0.06444166091264596,
"current_spot":58033.0026110549
},
{
"implied_volatility":0.5329630080551225,
"delta":0.30000000000000004,
"interest_rate":0.06444166091264596,
"current_spot":58033.0026110549
},
{
"implied_volatility":0.5231218680220053,
"delta":0.4,
"interest_rate":0.06444166091264596,
"current_spot":58033.0026110549
},
{
"implied_volatility":0.5194493140150083,
"delta":0.5,
"interest_rate":0.06444166091264596,
"current_spot":58033.0026110549
},
{
"implied_volatility":0.5213876755567547,
"delta":0.6,
"interest_rate":0.06444166091264596,
"current_spot":58033.0026110549
},
{
"implied_volatility":0.5302377211015243,
"delta":0.7,
"interest_rate":0.06444166091264596,
"current_spot":58033.0026110549
},
{
"implied_volatility":0.550749699660159,
"delta":0.7999999999999999,
"interest_rate":0.06444166091264596,
"current_spot":58033.0026110549
},
{
"implied_volatility":0.6010333506232379,
"delta":0.8999999999999999,
"interest_rate":0.06444166091264596,
"current_spot":58033.0026110549
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-11-08T08:00:00.000Z",
"time_to_expiry":0.15593607305936072,
"implied_volatilities":[
{
"implied_volatility":0.6624300907047234,
"delta":0.1,
"interest_rate":0.06396819887540026,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.6181620638701805,
"delta":0.2,
"interest_rate":0.06396819887540026,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5977210831388879,
"delta":0.30000000000000004,
"interest_rate":0.06396819887540026,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5873014915704046,
"delta":0.4,
"interest_rate":0.06396819887540026,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5831399288267296,
"delta":0.5,
"interest_rate":0.06396819887540026,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5842407024308494,
"delta":0.6,
"interest_rate":0.06396819887540026,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.5912675169813805,
"delta":0.7,
"interest_rate":0.06396819887540026,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.6074281344387386,
"delta":0.7999999999999999,
"interest_rate":0.06396819887540026,
"current_spot":58033.01112255454
},
{
"implied_volatility":0.6449624313701908,
"delta":0.8999999999999999,
"interest_rate":0.06396819887540026,
"current_spot":58033.01112255454
}
]
}
],
"result":"success",
"access":{
"access_range":{
"start_timestamp":1262304000000,
"end_timestamp":1924991999000
},
"data_range":{
"start_timestamp":1262304000000,
"end_timestamp":1924991999000
}
}
}
{
"query":{
"base":"btc",
"quote":"usd",
"exchanges":[
"drbt"
],
"value_time":"2024-09-12T10:00:00.000Z",
"data_version":"v2",
"commodity":"analytics",
"request_time":"2024-09-13T10:22:26.108Z"
},
"time":"2024-09-13T10:22:26.108Z",
"timestamp":1726222946604,
"complete_output":false,
"data":[
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-09-16T01:36:00.000Z",
"time_to_expiry":0.01,
"implied_volatilities":[
{
"strike":35205.07731688165,
"forward_log_moneyness":-0.5,
"implied_volatility":1.219961822819801,
"delta":0.9999840518413259,
"gamma":9.862878922173833e-09,
"interest_rate":0.029882129261974883,
"current_spot":58026.01780838781
},
{
"strike":58043.35980898536,
"forward_log_moneyness":0,
"implied_volatility":0.47173352808037106,
"delta":0.5094088500573186,
"gamma":0.00014570314379410554,
"interest_rate":0.029882129261974883,
"current_spot":58026.01780838781
},
{
"strike":95697.3219399751,
"forward_log_moneyness":0.5,
"implied_volatility":0.9995009904225983,
"delta":3.662902785528388e-07,
"gamma":3.2466205143302194e-10,
"interest_rate":0.029882129261974883,
"current_spot":58026.01780838781
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-09-23T08:48:00.000Z",
"time_to_expiry":0.03,
"implied_volatilities":[
{
"strike":35258.65197953432,
"forward_log_moneyness":-0.5,
"implied_volatility":1.0227076131194504,
"delta":0.998199924676951,
"gamma":5.605337511004371e-07,
"interest_rate":0.06064841675926235,
"current_spot":58026.01780838785
},
{
"strike":58131.68949487142,
"forward_log_moneyness":0,
"implied_volatility":0.5150355416768742,
"delta":0.517788278262302,
"gamma":7.69939568408782e-05,
"interest_rate":0.06064841675926235,
"current_spot":58026.01780838785
},
{
"strike":95842.95297192968,
"forward_log_moneyness":0.5,
"implied_volatility":0.8521845389437603,
"delta":0.00046039932852065535,
"gamma":1.922319739897016e-07,
"interest_rate":0.06064841675926235,
"current_spot":58026.01780838785
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-09-30T16:00:00.000Z",
"time_to_expiry":0.05,
"implied_volatilities":[
{
"strike":35306.34125006645,
"forward_log_moneyness":-0.5,
"implied_volatility":0.9000176772559828,
"delta":0.9951324086246934,
"gamma":1.2089704742589137e-06,
"interest_rate":0.06342187503569374,
"current_spot":58026.01780838792
},
{
"strike":58210.3158095819,
"forward_log_moneyness":0,
"implied_volatility":0.51382233838562,
"delta":0.522905471292496,
"gamma":5.9740914598632886e-05,
"interest_rate":0.06342187503569374,
"current_spot":58026.01780838792
},
{
"strike":95972.58584942963,
"forward_log_moneyness":0.5,
"implied_volatility":0.7922110861857629,
"delta":0.0031285593939101575,
"gamma":9.243683297678397e-07,
"interest_rate":0.06342187503569374,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-10-07T23:12:00.000Z",
"time_to_expiry":0.07,
"implied_volatilities":[
{
"strike":35360.71890845669,
"forward_log_moneyness":-0.5,
"implied_volatility":0.828127141031331,
"delta":0.9916123215219155,
"gamma":1.7972889965676697e-06,
"interest_rate":0.06728679739793171,
"current_spot":58026.01780838783
},
{
"strike":58299.96941162078,
"forward_log_moneyness":0,
"implied_volatility":0.5164706953874756,
"delta":0.5272356033058659,
"gamma":5.0197042263844037e-05,
"interest_rate":0.06728679739793171,
"current_spot":58026.01780838783
},
{
"strike":96120.39965010602,
"forward_log_moneyness":0.5,
"implied_volatility":0.7464559932842119,
"delta":0.0074875726771543305,
"gamma":1.8044884826225764e-06,
"interest_rate":0.06728679739793171,
"current_spot":58026.01780838783
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-10-15T06:24:00.000Z",
"time_to_expiry":0.09000000000000001,
"implied_volatilities":[
{
"strike":35408.60142607324,
"forward_log_moneyness":-0.5,
"implied_volatility":0.7910724424510162,
"delta":0.986976336148381,
"gamma":2.4347028120210604e-06,
"interest_rate":0.06736973218397824,
"current_spot":58026.01780838783
},
{
"strike":58378.914336909846,
"forward_log_moneyness":0,
"implied_volatility":0.517020500780755,
"delta":0.5309082147347206,
"gamma":4.4192790606748824e-05,
"interest_rate":0.06736973218397824,
"current_spot":58026.01780838783
},
{
"strike":96250.55782764393,
"forward_log_moneyness":0.5,
"implied_volatility":0.7137227872343034,
"delta":0.012936414946896013,
"gamma":2.6829260079941945e-06,
"interest_rate":0.06736973218397824,
"current_spot":58026.01780838783
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-10-22T13:36:00.000Z",
"time_to_expiry":0.11000000000000001,
"implied_volatilities":[
{
"strike":35456.666405622804,
"forward_log_moneyness":-0.5,
"implied_volatility":0.7665601461136989,
"delta":0.9818598165540046,
"gamma":3.020625727200306e-06,
"interest_rate":0.06745266697002476,
"current_spot":58026.01780838783
},
{
"strike":58458.16009106899,
"forward_log_moneyness":0,
"implied_volatility":0.5173700727313382,
"delta":0.5341857547297713,
"gamma":3.9919988877804825e-05,
"interest_rate":0.06745266697002476,
"current_spot":58026.01780838783
},
{
"strike":96381.21198813876,
"forward_log_moneyness":0.5,
"implied_volatility":0.6920869662211807,
"delta":0.019532251867923345,
"gamma":3.5628982792173914e-06,
"interest_rate":0.06745266697002476,
"current_spot":58026.01780838783
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-10-29T20:48:00.000Z",
"time_to_expiry":0.13,
"implied_volatilities":[
{
"strike":35508.422803157875,
"forward_log_moneyness":-0.5,
"implied_volatility":0.746694177498397,
"delta":0.9768034365375131,
"gamma":3.5131108017826186e-06,
"interest_rate":0.06829567333489632,
"current_spot":58026.01780838791
},
{
"strike":58543.491964579865,
"forward_log_moneyness":0,
"implied_volatility":0.5441431140622193,
"delta":0.5390722837426289,
"gamma":3.4874826454214145e-05,
"interest_rate":0.06829567333489632,
"current_spot":58026.01780838791
},
{
"strike":96521.90046306486,
"forward_log_moneyness":0.5,
"implied_volatility":0.6973828419830258,
"delta":0.031246311790620984,
"gamma":4.823365346327674e-06,
"interest_rate":0.06829567333489632,
"current_spot":58026.01780838791
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-11-06T04:00:00.000Z",
"time_to_expiry":0.15,
"implied_volatilities":[
{
"strike":35563.92832597037,
"forward_log_moneyness":-0.5,
"implied_volatility":0.7304703931953009,
"delta":0.9718561610549586,
"gamma":3.930583791623972e-06,
"interest_rate":0.06960254691331551,
"current_spot":58026.01780838791
},
{
"strike":58635.005100682145,
"forward_log_moneyness":0,
"implied_volatility":0.5760490651462036,
"delta":0.544410454345521,
"gamma":3.0625222152157556e-05,
"interest_rate":0.06960254691331551,
"current_spot":58026.01780838791
},
{
"strike":96672.78011710517,
"forward_log_moneyness":0.5,
"implied_volatility":0.7118768487498811,
"delta":0.04690301547513481,
"gamma":6.125288885966162e-06,
"interest_rate":0.06960254691331551,
"current_spot":58026.01780838791
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-11-13T11:12:00.000Z",
"time_to_expiry":0.16999999999999998,
"implied_volatilities":[
{
"strike":35623.626386079304,
"forward_log_moneyness":-0.5,
"implied_volatility":0.721718174050619,
"delta":0.9663040517680004,
"gamma":4.33754130982732e-06,
"interest_rate":0.07127992585463479,
"current_spot":58026.01780838777
},
{
"strike":58733.43056220328,
"forward_log_moneyness":0,
"implied_volatility":0.5835725414364753,
"delta":0.5478798467004804,
"gamma":2.8367707863728314e-05,
"interest_rate":0.07127992585463479,
"current_spot":58026.01780838777
},
{
"strike":96835.05626909353,
"forward_log_moneyness":0.5,
"implied_volatility":0.7074557803269064,
"delta":0.05840625886740114,
"gamma":6.890948711664006e-06,
"interest_rate":0.07127992585463479,
"current_spot":58026.01780838777
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-11-20T18:24:00.000Z",
"time_to_expiry":0.18999999999999997,
"implied_volatilities":[
{
"strike":35686.87925583984,
"forward_log_moneyness":-0.5,
"implied_volatility":0.7162150934457168,
"delta":0.9605989719092229,
"gamma":4.698978158615397e-06,
"interest_rate":0.07311368692964569,
"current_spot":58026.01780838777
},
{
"strike":58837.7169140103,
"forward_log_moneyness":0,
"implied_volatility":0.5834532939997044,
"delta":0.5505933941119975,
"gamma":2.6815897656471405e-05,
"interest_rate":0.07311368692964569,
"current_spot":58026.01780838777
},
{
"strike":97006.99539556148,
"forward_log_moneyness":0.5,
"implied_volatility":0.6980481728670079,
"delta":0.06796372312397003,
"gamma":7.4336889324488815e-06,
"interest_rate":0.07311368692964569,
"current_spot":58026.01780838777
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-11-28T01:36:00.000Z",
"time_to_expiry":0.20999999999999996,
"implied_volatilities":[
{
"strike":35752.86682905489,
"forward_log_moneyness":-0.5,
"implied_volatility":0.7117290547935944,
"delta":0.9550655806596073,
"gamma":5.0025339575499e-06,
"interest_rate":0.07494744800465658,
"current_spot":58026.01780838777
},
{
"strike":58946.51202957184,
"forward_log_moneyness":0,
"implied_volatility":0.5833567425067311,
"delta":0.553165792670529,
"gamma":2.548960158194958e-05,
"interest_rate":0.07494744800465658,
"current_spot":58026.01780838777
},
{
"strike":97186.36821673607,
"forward_log_moneyness":0.5,
"implied_volatility":0.6903385981988979,
"delta":0.07746421798228281,
"gamma":7.903447063197836e-06,
"interest_rate":0.07494744800465658,
"current_spot":58026.01780838777
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-12-05T08:48:00.000Z",
"time_to_expiry":0.22999999999999995,
"implied_volatilities":[
{
"strike":35812.19117271369,
"forward_log_moneyness":-0.5,
"implied_volatility":0.7003313174745773,
"delta":0.9512015953587601,
"gamma":5.190199441737905e-06,
"interest_rate":0.0756386005296464,
"current_spot":58026.017808387885
},
{
"strike":59044.32133683242,
"forward_log_moneyness":0,
"implied_volatility":0.5832516696271334,
"delta":0.5556142376297987,
"gamma":2.4339914970530187e-05,
"interest_rate":0.0756386005296464,
"current_spot":58026.017808387885
},
{
"strike":97347.62850208905,
"forward_log_moneyness":0.5,
"implied_volatility":0.6847615396060961,
"delta":0.0871790227762283,
"gamma":8.32207559076525e-06,
"interest_rate":0.0756386005296464,
"current_spot":58026.017808387885
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-12-12T16:00:00.000Z",
"time_to_expiry":0.24999999999999994,
"implied_volatilities":[
{
"strike":35870.454419064496,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6890995916966378,
"delta":0.9477527318136644,
"gamma":5.3422925542408805e-06,
"interest_rate":0.076089868386676,
"current_spot":58026.017808387885
},
{
"strike":59140.38119039104,
"forward_log_moneyness":0,
"implied_volatility":0.5831585060645141,
"delta":0.5579562673771701,
"gamma":2.332998570562908e-05,
"interest_rate":0.076089868386676,
"current_spot":58026.017808387885
},
{
"strike":97506.00442591147,
"forward_log_moneyness":0.5,
"implied_volatility":0.6802080704226982,
"delta":0.09678568327529857,
"gamma":8.68254579910703e-06,
"interest_rate":0.076089868386676,
"current_spot":58026.017808387885
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-12-19T23:12:00.000Z",
"time_to_expiry":0.26999999999999996,
"implied_volatilities":[
{
"strike":35929.46100111083,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6793853817266143,
"delta":0.9444046325229148,
"gamma":5.476954016936011e-06,
"interest_rate":0.07654113624370561,
"current_spot":58026.017808387885
},
{
"strike":59237.666597322146,
"forward_log_moneyness":0,
"implied_volatility":0.5830791327701744,
"delta":0.5602047706056178,
"gamma":2.2433334744525613e-05,
"interest_rate":0.07654113624370561,
"current_spot":58026.017808387885
},
{
"strike":97666.4009456475,
"forward_log_moneyness":0.5,
"implied_volatility":0.6763050082388905,
"delta":0.10618110384420681,
"gamma":8.98967405231349e-06,
"interest_rate":0.07654113624370561,
"current_spot":58026.017808387885
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-12-27T06:24:00.000Z",
"time_to_expiry":0.29,
"implied_volatilities":[
{
"strike":35989.21427362662,
"forward_log_moneyness":-0.5,
"implied_volatility":0.670898179511778,
"delta":0.9411587869242752,
"gamma":5.595987585552628e-06,
"interest_rate":0.07699240410073521,
"current_spot":58026.017808387885
},
{
"strike":59336.18308871287,
"forward_log_moneyness":0,
"implied_volatility":0.5830106988432193,
"delta":0.562369866190329,
"gamma":2.163016442831909e-05,
"interest_rate":0.07699240410073521,
"current_spot":58026.017808387885
},
{
"strike":97828.82718051813,
"forward_log_moneyness":0.5,
"implied_volatility":0.672922129747721,
"delta":0.11534592709962938,
"gamma":9.250622938852245e-06,
"interest_rate":0.07699240410073521,
"current_spot":58026.017808387885
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-01-03T13:36:00.000Z",
"time_to_expiry":0.31,
"implied_volatilities":[
{
"strike":36048.92648425896,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6679678626792047,
"delta":0.9370374303516131,
"gamma":5.7317087485274615e-06,
"interest_rate":0.07737287709195237,
"current_spot":58026.01780838792
},
{
"strike":59434.63188050294,
"forward_log_moneyness":0,
"implied_volatility":0.5859817537938207,
"delta":0.5647921240926812,
"gamma":2.0794233277177758e-05,
"interest_rate":0.07737287709195237,
"current_spot":58026.01780838792
},
{
"strike":97991.14179761717,
"forward_log_moneyness":0.5,
"implied_volatility":0.6700214502235391,
"delta":0.12429742545143802,
"gamma":9.472272436634292e-06,
"interest_rate":0.07737287709195237,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-01-10T20:48:00.000Z",
"time_to_expiry":0.33,
"implied_volatilities":[
{
"strike":36109.279532657514,
"forward_log_moneyness":-0.5,
"implied_volatility":0.665421495511619,
"delta":0.933083062177843,
"gamma":5.846592519268601e-06,
"interest_rate":0.07775269759592703,
"current_spot":58026.01780838792
},
{
"strike":59534.137235149225,
"forward_log_moneyness":0,
"implied_volatility":0.5886063557855834,
"delta":0.5671269691023384,
"gamma":2.004462300938605e-05,
"interest_rate":0.07775269759592703,
"current_spot":58026.01780838792
},
{
"strike":98155.19839237105,
"forward_log_moneyness":0.5,
"implied_volatility":0.6674624799068604,
"delta":0.13300206105083862,
"gamma":9.659172856765809e-06,
"interest_rate":0.07775269759592703,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-01-18T04:00:00.000Z",
"time_to_expiry":0.35000000000000003,
"implied_volatilities":[
{
"strike":36170.28314845455,
"forward_log_moneyness":-0.5,
"implied_volatility":0.663157976626766,
"delta":0.9293008214530067,
"gamma":5.943148361810485e-06,
"interest_rate":0.07813251809990168,
"current_spot":58026.01780838792
},
{
"strike":59634.715194103424,
"forward_log_moneyness":0,
"implied_volatility":0.5909212683245534,
"delta":0.5693803754632355,
"gamma":1.936814930861872e-05,
"interest_rate":0.07813251809990168,
"current_spot":58026.01780838792
},
{
"strike":98321.02341266243,
"forward_log_moneyness":0.5,
"implied_volatility":0.6651877423695867,
"delta":0.1414595798208534,
"gamma":9.815998071595665e-06,
"interest_rate":0.07813251809990168,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-01-25T11:12:00.000Z",
"time_to_expiry":0.37000000000000005,
"implied_volatilities":[
{
"strike":36231.940285943245,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6611326243186885,
"delta":0.9256851893716047,
"gamma":6.023814573471915e-06,
"interest_rate":0.07851233860387634,
"current_spot":58026.01780838792
},
{
"strike":59736.37062817149,
"forward_log_moneyness":0,
"implied_volatility":0.5929782956406244,
"delta":0.5715600409220507,
"gamma":1.8753574858502585e-05,
"interest_rate":0.07851233860387634,
"current_spot":58026.01780838792
},
{
"strike":98488.62488909272,
"forward_log_moneyness":0.5,
"implied_volatility":0.6631523393765039,
"delta":0.14967305594856423,
"gamma":9.946767024463076e-06,
"interest_rate":0.07851233860387634,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-02-01T18:24:00.000Z",
"time_to_expiry":0.39000000000000007,
"implied_volatilities":[
{
"strike":36294.253934242304,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6593097032020858,
"delta":0.9222298621699195,
"gamma":6.0906856436348864e-06,
"interest_rate":0.078892159107851,
"current_spot":58026.01780838792
},
{
"strike":59839.1084655771,
"forward_log_moneyness":0,
"implied_volatility":0.5948182891227818,
"delta":0.5736725146086658,
"gamma":1.8191942175051474e-05,
"interest_rate":0.078892159107851,
"current_spot":58026.01780838792
},
{
"strike":98658.01094692905,
"forward_log_moneyness":0.5,
"implied_volatility":0.66132036197531,
"delta":0.15764765226901595,
"gamma":1.0054928929661422e-05,
"interest_rate":0.078892159107851,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-02-09T01:36:00.000Z",
"time_to_expiry":0.4100000000000001,
"implied_volatilities":[
{
"strike":36357.22711753722,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6576602906296823,
"delta":0.9189281108901203,
"gamma":6.1455615675798424e-06,
"interest_rate":0.07927197961182565,
"current_spot":58026.01780838792
},
{
"strike":59942.93369235912,
"forward_log_moneyness":0,
"implied_volatility":0.5964738987014115,
"delta":0.575723423789942,
"gamma":1.7676011260266423e-05,
"interest_rate":0.07927197961182565,
"current_spot":58026.01780838792
},
{
"strike":98829.18980675985,
"forward_log_moneyness":0.5,
"implied_volatility":0.6596627467523394,
"delta":0.16538991558862898,
"gamma":1.0143445719822414e-05,
"interest_rate":0.07927197961182565,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-02-16T08:48:00.000Z",
"time_to_expiry":0.4300000000000001,
"implied_volatilities":[
{
"strike":36420.862895324484,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6561607262105765,
"delta":0.9157730321464483,
"gamma":6.189991001937826e-06,
"interest_rate":0.07965180011580031,
"current_spot":58026.01780838792
},
{
"strike":60047.851352774516,
"forward_log_moneyness":0,
"implied_volatility":0.5979715339788125,
"delta":0.5777176461052483,
"gamma":1.7199858018997315e-05,
"interest_rate":0.07965180011580031,
"current_spot":58026.01780838792
},
{
"strike":99002.16978515883,
"forward_log_moneyness":0.5,
"implied_volatility":0.6581557179455457,
"delta":0.1729072679589228,
"gamma":1.0214863966935872e-05,
"interest_rate":0.07965180011580031,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-02-23T16:00:00.000Z",
"time_to_expiry":0.4500000000000001,
"implied_volatilities":[
{
"strike":36485.16436265892,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6547914665280272,
"delta":0.9127577211883326,
"gamma":6.2253084481009406e-06,
"interest_rate":0.08003162061977497,
"current_spot":58026.01780838792
},
{
"strike":60153.86654970605,
"forward_log_moneyness":0,
"implied_volatility":0.5993327879770832,
"delta":0.5796594424988346,
"gamma":1.675858179880843e-05,
"interest_rate":0.08003162061977497,
"current_spot":58026.01780838792
},
{
"strike":99176.95929535729,
"forward_log_moneyness":0.5,
"implied_volatility":0.6567796366780594,
"delta":0.18020764009820367,
"gamma":1.0271376702403038e-05,
"interest_rate":0.08003162061977497,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-03-02T23:12:00.000Z",
"time_to_expiry":0.47000000000000014,
"implied_volatilities":[
{
"strike":36550.13465040425,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6535362266196858,
"delta":0.9098753894923948,
"gamma":6.252665991544482e-06,
"interest_rate":0.08041144112374962,
"current_spot":58026.01780838792
},
{
"strike":60260.984445075286,
"forward_log_moneyness":0,
"implied_volatility":0.6005754878888658,
"delta":0.5815525612864333,
"gamma":1.6348088653525164e-05,
"interest_rate":0.08041144112374962,
"current_spot":58026.01780838792
},
{
"strike":99353.56684792519,
"forward_log_moneyness":0.5,
"implied_volatility":0.6555181383175726,
"delta":0.18729920827677043,
"gamma":1.031487608695086e-05,
"interest_rate":0.08041144112374962,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-03-10T06:24:00.000Z",
"time_to_expiry":0.49000000000000016,
"implied_volatilities":[
{
"strike":36615.776925486694,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6523813277758325,
"delta":0.9071194427368175,
"gamma":6.273060245473111e-06,
"interest_rate":0.08079126162772428,
"current_spot":58026.01780838792
},
{
"strike":60369.210260260865,
"forward_log_moneyness":0,
"implied_volatility":0.6017144821238312,
"delta":0.583400320667559,
"gamma":1.5964928197398504e-05,
"interest_rate":0.08079126162772428,
"current_spot":58026.01780838792
},
{
"strike":99532.00105146051,
"forward_log_moneyness":0.5,
"implied_volatility":0.6543574771371616,
"delta":0.1941902067286228,
"gamma":1.0346998054360535e-05,
"interest_rate":0.08079126162772428,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-03-17T13:36:00.000Z",
"time_to_expiry":0.5100000000000001,
"implied_volatilities":[
{
"strike":36682.09439115184,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6513151960169534,
"delta":0.9044835305051513,
"gamma":6.287355155072169e-06,
"interest_rate":0.08117108213169894,
"current_spot":58026.01780838792
},
{
"strike":60478.54927652192,
"forward_log_moneyness":0,
"implied_volatility":0.6027622377978934,
"delta":0.5852056749019943,
"gamma":1.5606169060981268e-05,
"interest_rate":0.08117108213169894,
"current_spot":58026.01780838792
},
{
"strike":99712.27061328752,
"forward_log_moneyness":0.5,
"implied_volatility":0.6532860223753855,
"delta":0.2008887953224186,
"gamma":1.0369160048689091e-05,
"interest_rate":0.08117108213169894,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-03-24T20:48:00.000Z",
"time_to_expiry":0.5300000000000001,
"implied_volatilities":[
{
"strike":36749.09028722471,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6503279721292464,
"delta":0.9019615758689511,
"gamma":6.296301273094999e-06,
"interest_rate":0.08155090263567359,
"current_spot":58026.01780838792
},
{
"strike":60589.006835426866,
"forward_log_moneyness":0,
"implied_volatility":0.6037292998953473,
"delta":0.586971267938301,
"gamma":1.5269302598076197e-05,
"interest_rate":0.08155090263567359,
"current_spot":58026.01780838792
},
{
"strike":99894.38434016371,
"forward_log_moneyness":0.5,
"implied_volatility":0.6522938663885004,
"delta":0.20740296772284422,
"gamma":1.038259288783101e-05,
"interest_rate":0.08155090263567359,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-04-01T04:00:00.000Z",
"time_to_expiry":0.5500000000000002,
"implied_volatilities":[
{
"strike":36809.60921966647,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6490684971001264,
"delta":0.8996219124555145,
"gamma":6.30048417032778e-06,
"interest_rate":0.08157716058576774,
"current_spot":58026.017808387805
},
{
"strike":60688.78568662366,
"forward_log_moneyness":0,
"implied_volatility":0.6049428293550925,
"delta":0.5887453775459217,
"gamma":1.4943907780518931e-05,
"interest_rate":0.08157716058576774,
"current_spot":58026.017808387805
},
{
"strike":100058.89185449791,
"forward_log_moneyness":0.5,
"implied_volatility":0.6521575799088905,
"delta":0.21418835264707525,
"gamma":1.0388513057777013e-05,
"interest_rate":0.08157716058576774,
"current_spot":58026.017808387805
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-04-08T11:12:00.000Z",
"time_to_expiry":0.5700000000000002,
"implied_volatilities":[
{
"strike":36863.54740678996,
"forward_log_moneyness":-0.5,
"implied_volatility":0.64759546683631,
"delta":0.8974431026219174,
"gamma":6.300823350990473e-06,
"interest_rate":0.0812836750088743,
"current_spot":58026.017808387805
},
{
"strike":60777.714723037156,
"forward_log_moneyness":0,
"implied_volatility":0.606346016857856,
"delta":0.5905230273552948,
"gamma":1.4630257665894388e-05,
"interest_rate":0.0812836750088743,
"current_spot":58026.017808387805
},
{
"strike":100205.5110484157,
"forward_log_moneyness":0.5,
"implied_volatility":0.6527152522301968,
"delta":0.22117289968756865,
"gamma":1.0386452374519812e-05,
"interest_rate":0.0812836750088743,
"current_spot":58026.017808387805
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-04-15T18:24:00.000Z",
"time_to_expiry":0.5900000000000002,
"implied_volatilities":[
{
"strike":36917.1312427359,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6462192790718065,
"delta":0.8953508761040165,
"gamma":6.297918867785276e-06,
"interest_rate":0.08099018943198087,
"current_spot":58026.017808387805
},
{
"strike":60866.059533126936,
"forward_log_moneyness":0,
"implied_volatility":0.6076511548413593,
"delta":0.5922640547697162,
"gamma":1.4334405083399179e-05,
"interest_rate":0.08099018943198087,
"current_spot":58026.017808387805
},
{
"strike":100351.16701596668,
"forward_log_moneyness":0.5,
"implied_volatility":0.6532346874905771,
"delta":0.22795012326304553,
"gamma":1.0376959894678083e-05,
"interest_rate":0.08099018943198087,
"current_spot":58026.017808387805
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-04-23T01:36:00.000Z",
"time_to_expiry":0.6100000000000002,
"implied_volatilities":[
{
"strike":36970.35895343557,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6449306790806686,
"delta":0.8933411185184987,
"gamma":6.2921394594514046e-06,
"interest_rate":0.08069670385508745,
"current_spot":58026.017808387805
},
{
"strike":60953.81719194817,
"forward_log_moneyness":0,
"implied_volatility":0.6088681815475112,
"delta":0.5939704987428261,
"gamma":1.4054709872270769e-05,
"interest_rate":0.08069670385508745,
"current_spot":58026.017808387805
},
{
"strike":100495.85493473208,
"forward_log_moneyness":0.5,
"implied_volatility":0.6537196883970442,
"delta":0.23453002315141752,
"gamma":1.0361048449078726e-05,
"interest_rate":0.08069670385508745,
"current_spot":58026.017808387805
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-04-30T08:48:00.000Z",
"time_to_expiry":0.6300000000000002,
"implied_volatilities":[
{
"strike":37023.22877480308,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6437215559192604,
"delta":0.891409932987744,
"gamma":6.283811248537111e-06,
"interest_rate":0.08040321827819402,
"current_spot":58026.017808387805
},
{
"strike":61040.98479101488,
"forward_log_moneyness":0,
"implied_volatility":0.6100057349755975,
"delta":0.5956442136783187,
"gamma":1.378973638032665e-05,
"interest_rate":0.08040321827819402,
"current_spot":58026.017808387805
},
{
"strike":100639.57000942926,
"forward_log_moneyness":0.5,
"implied_volatility":0.6541735695387509,
"delta":0.24092208068616,
"gamma":1.033959165727875e-05,
"interest_rate":0.08040321827819402,
"current_spot":58026.017808387805
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-05-07T16:00:00.000Z",
"time_to_expiry":0.6500000000000002,
"implied_volatilities":[
{
"strike":37075.7389528326,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6425847708932765,
"delta":0.8895536319029893,
"gamma":6.273223151306557e-06,
"interest_rate":0.08010973270130059,
"current_spot":58026.017808387805
},
{
"strike":61127.559438460405,
"forward_log_moneyness":0,
"implied_volatility":0.611071358945577,
"delta":0.5972868920481528,
"gamma":1.353822178517538e-05,
"interest_rate":0.08010973270130059,
"current_spot":58026.017808387805
},
{
"strike":100782.30747217605,
"forward_log_moneyness":0.5,
"implied_volatility":0.6545992332787502,
"delta":0.24713526484222675,
"gamma":1.031334487396154e-05,
"interest_rate":0.08010973270130059,
"current_spot":58026.017808387805
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-05-14T23:12:00.000Z",
"time_to_expiry":0.6700000000000003,
"implied_volatilities":[
{
"strike":37127.88774369526,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6415140160163469,
"delta":0.8877687277943976,
"gamma":6.260631535694374e-06,
"interest_rate":0.07981624712440716,
"current_spot":58026.017808387805
},
{
"strike":61213.53825919696,
"forward_log_moneyness":0,
"implied_volatility":0.612071671149257,
"delta":0.5989000835645941,
"gamma":1.3299050215267482e-05,
"interest_rate":0.07981624712440716,
"current_spot":58026.017808387805
},
{
"strike":100924.06258275412,
"forward_log_moneyness":0.5,
"implied_volatility":0.65499923191197,
"delta":0.25317804599616633,
"gamma":1.0282962689178526e-05,
"interest_rate":0.07981624712440716,
"current_spot":58026.017808387805
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-05-22T06:24:00.000Z",
"time_to_expiry":0.6900000000000003,
"implied_volatilities":[
{
"strike":37179.67341383548,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6405036965118509,
"delta":0.8860519237238551,
"gamma":6.246264239749656e-06,
"interest_rate":0.07952276154751373,
"current_spot":58026.017808387805
},
{
"strike":61298.918395074594,
"forward_log_moneyness":0,
"implied_volatility":0.6130125011315778,
"delta":0.6004852115270767,
"gamma":1.3071231456072592e-05,
"interest_rate":0.07952276154751373,
"current_spot":58026.017808387805
},
{
"strike":101064.83062887086,
"forward_log_moneyness":0.5,
"implied_volatility":0.6553758189043412,
"delta":0.2590584146129957,
"gamma":1.0249013592927193e-05,
"interest_rate":0.07952276154751373,
"current_spot":58026.017808387805
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-05-29T13:36:00.000Z",
"time_to_expiry":0.7100000000000003,
"implied_volatilities":[
{
"strike":37231.0942400669,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6395488327214849,
"delta":0.8844001035011674,
"gamma":6.230324045352499e-06,
"interest_rate":0.0792292759706203,
"current_spot":58026.017808387805
},
{
"strike":61383.69700503932,
"forward_log_moneyness":0,
"implied_volatility":0.6138990043014603,
"delta":0.6020435868367855,
"gamma":1.2853883311090034e-05,
"interest_rate":0.0792292759706203,
"current_spot":58026.017808387805
},
{
"strike":101204.60692642008,
"forward_log_moneyness":0.5,
"implied_volatility":0.6557309913873326,
"delta":0.26478390290780807,
"gamma":1.0211992300442549e-05,
"interest_rate":0.0792292759706203,
"current_spot":58026.017808387805
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-06-05T20:48:00.000Z",
"time_to_expiry":0.7300000000000003,
"implied_volatilities":[
{
"strike":37282.14850966782,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6386449777790982,
"delta":0.8828103219385111,
"gamma":6.212991687141015e-06,
"interest_rate":0.07893579039372686,
"current_spot":58026.017808387805
},
{
"strike":61467.87126529042,
"forward_log_moneyness":0,
"implied_volatility":0.6147357566966473,
"delta":0.6035764200733317,
"gamma":1.2646216898623222e-05,
"interest_rate":0.07893579039372686,
"current_spot":58026.017808387805
},
{
"strike":101343.38681974151,
"forward_log_moneyness":0.5,
"implied_volatility":0.6560665256009832,
"delta":0.27036160810226006,
"gamma":1.0172330142380753e-05,
"interest_rate":0.07893579039372686,
"current_spot":58026.017808387805
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-06-13T04:00:00.000Z",
"time_to_expiry":0.7500000000000003,
"implied_volatilities":[
{
"strike":37332.83452047616,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6377881481692333,
"delta":0.8812797952940707,
"gamma":6.1944284641286705e-06,
"interest_rate":0.07864230481683343,
"current_spot":58026.017808387805
},
{
"strike":61551.43836943706,
"forward_log_moneyness":0,
"implied_volatility":0.6155268341913215,
"delta":0.6050848319514089,
"gamma":1.244752432371126e-05,
"interest_rate":0.07864230481683343,
"current_spot":58026.017808387805
},
{
"strike":101481.16568187889,
"forward_log_moneyness":0.5,
"implied_volatility":0.656384006613938,
"delta":0.27579821630855184,
"gamma":1.0130403849647117e-05,
"interest_rate":0.07864230481683343,
"current_spot":58026.017808387805
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-06-20T11:12:00.000Z",
"time_to_expiry":0.7700000000000004,
"implied_volatilities":[
{
"strike":37383.15058098387,
"forward_log_moneyness":-0.5,
"implied_volatility":0.6369747648763131,
"delta":0.8798058920082439,
"gamma":6.174778511045466e-06,
"interest_rate":0.07834881923994,
"current_spot":58026.017808387805
},
{
"strike":61634.39552865396,
"forward_log_moneyness":0,
"implied_volatility":0.6162758790483663,
"delta":0.6065698624154641,
"gamma":1.2257168284623043e-05,
"interest_rate":0.07834881923994,
"current_spot":58026.017808387805
},
{
"strike":101617.93891483666,
"forward_log_moneyness":0.5,
"implied_volatility":0.6566848533704227,
"delta":0.2811000263712149,
"gamma":1.0086543002522495e-05,
"interest_rate":0.07834881923994,
"current_spot":58026.017808387805
}
]
}
],
"result":"success",
"access":{
"access_range":{
"start_timestamp":1262304000000,
"end_timestamp":1924991999000
},
"data_range":{
"start_timestamp":1262304000000,
"end_timestamp":1924991999000
}
}
}
{
"query":{
"base":"btc",
"quote":"usd",
"exchanges":[
"drbt"
],
"value_time":"2024-09-12T10:00:00.000Z",
"data_version":"v2",
"commodity":"analytics",
"request_time":"2024-09-13T10:31:21.687Z"
},
"time":"2024-09-13T10:31:21.687Z",
"timestamp":1726223482124,
"complete_output":false,
"data":[
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-09-16T01:36:00.000Z",
"time_to_expiry":0.01,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.05366487346004658,
"implied_volatility":0.5263415099966944,
"delta":0.852196362088788,
"gamma":7.559273789942694e-05,
"interest_rate":0.029882129261974883,
"current_spot":58026.01780838781
},
{
"strike":56000,
"forward_log_moneyness":-0.03564636795736816,
"implied_volatility":0.5006151313412007,
"delta":0.7694637897433387,
"gamma":0.00010466670910680262,
"interest_rate":0.029882129261974883,
"current_spot":58026.01780838781
},
{
"strike":57000,
"forward_log_moneyness":-0.01794679085796725,
"implied_volatility":0.4819489912300139,
"delta":0.654123383312744,
"gamma":0.00013187156663654225,
"interest_rate":0.029882129261974883,
"current_spot":58026.01780838781
},
{
"strike":58000,
"forward_log_moneyness":-0.0005550481460980808,
"implied_volatility":0.4719070408301803,
"delta":0.5141025288925045,
"gamma":0.00014559905414962757,
"interest_rate":0.029882129261974883,
"current_spot":58026.01780838781
},
{
"strike":59000,
"forward_log_moneyness":0.01653938521320191,
"implied_volatility":0.47066959697525906,
"delta":0.37150584797577946,
"gamma":0.0001384291652993436,
"interest_rate":0.029882129261974883,
"current_spot":58026.01780838781
},
{
"strike":60000,
"forward_log_moneyness":0.033346503529583134,
"implied_volatility":0.47695940890030264,
"delta":0.249742703450699,
"gamma":0.00011475707745698765,
"interest_rate":0.029882129261974883,
"current_spot":58026.01780838781
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-09-23T08:48:00.000Z",
"time_to_expiry":0.03,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.05517695846064048,
"implied_volatility":0.5425687833167366,
"delta":0.7370015910184295,
"gamma":5.983454033549572e-05,
"interest_rate":0.06064841675926235,
"current_spot":58026.01780838785
},
{
"strike":56000,
"forward_log_moneyness":-0.037158452957962065,
"implied_volatility":0.5304232233598728,
"delta":0.6737871622567879,
"gamma":6.761666958231436e-05,
"interest_rate":0.06064841675926235,
"current_spot":58026.01780838785
},
{
"strike":57000,
"forward_log_moneyness":-0.019458875858561157,
"implied_volatility":0.5213745830056621,
"delta":0.6028120421290016,
"gamma":7.359110576410973e-05,
"interest_rate":0.06064841675926235,
"current_spot":58026.01780838785
},
{
"strike":58000,
"forward_log_moneyness":-0.0020671331466919868,
"implied_volatility":0.5155242241693819,
"delta":0.5270260340167057,
"gamma":7.682077624044303e-05,
"interest_rate":0.06064841675926235,
"current_spot":58026.01780838785
},
{
"strike":59000,
"forward_log_moneyness":0.015027300212608004,
"implied_volatility":0.5128041050078616,
"delta":0.4503498172108612,
"gamma":7.680570683441592e-05,
"interest_rate":0.06064841675926235,
"current_spot":58026.01780838785
},
{
"strike":60000,
"forward_log_moneyness":0.03183441852898923,
"implied_volatility":0.5129925583420212,
"delta":0.37681530416269027,
"gamma":7.365879317833233e-05,
"interest_rate":0.06064841675926235,
"current_spot":58026.01780838785
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-09-30T16:00:00.000Z",
"time_to_expiry":0.05,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.056579283286628604,
"implied_volatility":0.5340022326602855,
"delta":0.7031703266161395,
"gamma":4.9939481815754467e-05,
"interest_rate":0.06342187503569374,
"current_spot":58026.01780838792
},
{
"strike":56000,
"forward_log_moneyness":-0.03856077778395019,
"implied_volatility":0.5254984961736725,
"delta":0.6505905376496605,
"gamma":5.429030788080317e-05,
"interest_rate":0.06342187503569374,
"current_spot":58026.01780838792
},
{
"strike":57000,
"forward_log_moneyness":-0.02086120068454928,
"implied_volatility":0.5189769610963068,
"delta":0.5939775609060134,
"gamma":5.759371862878644e-05,
"interest_rate":0.06342187503569374,
"current_spot":58026.01780838792
},
{
"strike":58000,
"forward_log_moneyness":-0.003469457972680111,
"implied_volatility":0.5144833326389389,
"delta":0.5349341654676525,
"gamma":5.953341716556945e-05,
"interest_rate":0.06342187503569374,
"current_spot":58026.01780838792
},
{
"strike":59000,
"forward_log_moneyness":0.01362497538661988,
"implied_volatility":0.5119953547963492,
"delta":0.4753739842063306,
"gamma":5.993865370431952e-05,
"interest_rate":0.06342187503569374,
"current_spot":58026.01780838792
},
{
"strike":60000,
"forward_log_moneyness":0.030432093703001106,
"implied_volatility":0.5114253142471717,
"delta":0.4172502696502459,
"gamma":5.882204531701455e-05,
"interest_rate":0.06342187503569374,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-10-07T23:12:00.000Z",
"time_to_expiry":0.07,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.05768244676318576,
"implied_volatility":0.5309372563339247,
"delta":0.6846945330436163,
"gamma":4.359960958614088e-05,
"interest_rate":0.06728679739793171,
"current_spot":58026.01780838783
},
{
"strike":56000,
"forward_log_moneyness":-0.039663941260507346,
"implied_volatility":0.5249066194544859,
"delta":0.6387212942975614,
"gamma":4.6481785179854536e-05,
"interest_rate":0.06728679739793171,
"current_spot":58026.01780838783
},
{
"strike":57000,
"forward_log_moneyness":-0.021964364161106437,
"implied_volatility":0.5202874156066821,
"delta":0.590327842115745,
"gamma":4.865947942719942e-05,
"interest_rate":0.06728679739793171,
"current_spot":58026.01780838783
},
{
"strike":58000,
"forward_log_moneyness":-0.004572621449237266,
"implied_volatility":0.5170857608095715,
"delta":0.5405532605930189,
"gamma":4.9994623558095854e-05,
"interest_rate":0.06728679739793171,
"current_spot":58026.01780838783
},
{
"strike":59000,
"forward_log_moneyness":0.012521811910062724,
"implied_volatility":0.5152762938455151,
"delta":0.4905518929204863,
"gamma":5.041682286720016e-05,
"interest_rate":0.06728679739793171,
"current_spot":58026.01780838783
},
{
"strike":60000,
"forward_log_moneyness":0.02932893022644395,
"implied_volatility":0.5148032484453554,
"delta":0.4414757866588223,
"gamma":4.993318089505192e-05,
"interest_rate":0.06728679739793171,
"current_spot":58026.01780838783
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-10-15T06:24:00.000Z",
"time_to_expiry":0.09000000000000001,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.05918538696239057,
"implied_volatility":0.52718935303962,
"delta":0.6748329381535279,
"gamma":3.9226481890339244e-05,
"interest_rate":0.06736973218397824,
"current_spot":58026.01780838783
},
{
"strike":56000,
"forward_log_moneyness":-0.04116688145971215,
"implied_volatility":0.5227966285716276,
"delta":0.6334098581933278,
"gamma":4.136160928482908e-05,
"interest_rate":0.06736973218397824,
"current_spot":58026.01780838783
},
{
"strike":57000,
"forward_log_moneyness":-0.023467304360311244,
"implied_volatility":0.5195729850772242,
"delta":0.5903677314245973,
"gamma":4.2971627380014475e-05,
"interest_rate":0.06736973218397824,
"current_spot":58026.01780838783
},
{
"strike":58000,
"forward_log_moneyness":-0.006075561648442073,
"implied_volatility":0.5174912656854102,
"delta":0.5464742460324498,
"gamma":4.3984729845759184e-05,
"interest_rate":0.06736973218397824,
"current_spot":58026.01780838783
},
{
"strike":59000,
"forward_log_moneyness":0.011018871710857917,
"implied_volatility":0.5165053881728001,
"delta":0.5025388976779434,
"gamma":4.436919678463633e-05,
"interest_rate":0.06736973218397824,
"current_spot":58026.01780838783
},
{
"strike":60000,
"forward_log_moneyness":0.027825990027239143,
"implied_volatility":0.5165525349027059,
"delta":0.45934686513941636,
"gamma":4.413549551182699e-05,
"interest_rate":0.06736973218397824,
"current_spot":58026.01780838783
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-10-22T13:36:00.000Z",
"time_to_expiry":0.11000000000000001,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.06083284191101327,
"implied_volatility":0.5247766880052537,
"delta":0.6687776904585447,
"gamma":3.5911567746332656e-05,
"interest_rate":0.06745266697002476,
"current_spot":58026.01780838783
},
{
"strike":56000,
"forward_log_moneyness":-0.042814336408334853,
"implied_volatility":0.5214174629811115,
"delta":0.6308262925895118,
"gamma":3.7598827427913154e-05,
"interest_rate":0.06745266697002476,
"current_spot":58026.01780838783
},
{
"strike":57000,
"forward_log_moneyness":-0.025114759308933948,
"implied_volatility":0.5190710176607353,
"delta":0.5917160793221665,
"gamma":3.8875813088944186e-05,
"interest_rate":0.06745266697002476,
"current_spot":58026.01780838783
},
{
"strike":58000,
"forward_log_moneyness":-0.007723016597064776,
"implied_volatility":0.5176908119714432,
"delta":0.5520448608838652,
"gamma":3.970113380750093e-05,
"interest_rate":0.06745266697002476,
"current_spot":58026.01780838783
},
{
"strike":59000,
"forward_log_moneyness":0.009371416762235215,
"implied_volatility":0.5172190522850123,
"delta":0.5124213241519475,
"gamma":4.0059455258751274e-05,
"interest_rate":0.06745266697002476,
"current_spot":58026.01780838783
},
{
"strike":60000,
"forward_log_moneyness":0.026178535078616443,
"implied_volatility":0.5175893779099702,
"delta":0.473424065997466,
"gamma":3.996130983240432e-05,
"interest_rate":0.06745266697002476,
"current_spot":58026.01780838783
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-10-29T20:48:00.000Z",
"time_to_expiry":0.13,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.06234327041529049,
"implied_volatility":0.5496492983402653,
"delta":0.6604421900565612,
"gamma":3.1847123758389674e-05,
"interest_rate":0.06829567333489632,
"current_spot":58026.01780838791
},
{
"strike":56000,
"forward_log_moneyness":-0.04432476491261207,
"implied_volatility":0.5471339432368718,
"delta":0.6267752908337741,
"gamma":3.307659727176708e-05,
"interest_rate":0.06829567333489632,
"current_spot":58026.01780838791
},
{
"strike":57000,
"forward_log_moneyness":-0.026625187813211163,
"implied_volatility":0.5453944733292364,
"delta":0.5923987308020375,
"gamma":3.402063463199852e-05,
"interest_rate":0.06829567333489632,
"current_spot":58026.01780838791
},
{
"strike":58000,
"forward_log_moneyness":-0.009233445101341994,
"implied_volatility":0.5443924495960055,
"delta":0.5577168530839036,
"gamma":3.4659767408258537e-05,
"interest_rate":0.06829567333489632,
"current_spot":58026.01780838791
},
{
"strike":59000,
"forward_log_moneyness":0.007860988257957998,
"implied_volatility":0.5440835026456786,
"delta":0.5231313213997073,
"gamma":3.498794209878273e-05,
"interest_rate":0.06829567333489632,
"current_spot":58026.01780838791
},
{
"strike":60000,
"forward_log_moneyness":0.024668106574339224,
"implied_volatility":0.5444190474965616,
"delta":0.48902120486876066,
"gamma":3.5012005665306274e-05,
"interest_rate":0.06829567333489632,
"current_spot":58026.01780838791
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-11-06T04:00:00.000Z",
"time_to_expiry":0.15,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.06397540420994535,
"implied_volatility":0.5803317168000793,
"delta":0.6543227549895029,
"gamma":2.8270737910910722e-05,
"interest_rate":0.06960254691331551,
"current_spot":58026.01780838791
},
{
"strike":56000,
"forward_log_moneyness":-0.045956898707266935,
"implied_volatility":0.5784346812654221,
"delta":0.6244364674535882,
"gamma":2.918397605714123e-05,
"interest_rate":0.06960254691331551,
"current_spot":58026.01780838791
},
{
"strike":57000,
"forward_log_moneyness":-0.028257321607866023,
"implied_volatility":0.5770955220236584,
"delta":0.5941294244373949,
"gamma":2.9900220657064792e-05,
"interest_rate":0.06960254691331551,
"current_spot":58026.01780838791
},
{
"strike":58000,
"forward_log_moneyness":-0.010865578895996854,
"implied_volatility":0.5762921250932859,
"delta":0.5636697663263396,
"gamma":3.041023045835817e-05,
"interest_rate":0.06960254691331551,
"current_spot":58026.01780838791
},
{
"strike":59000,
"forward_log_moneyness":0.006228854463303138,
"implied_volatility":0.5759994115503155,
"delta":0.5333207941466548,
"gamma":3.071145815783461e-05,
"interest_rate":0.06960254691331551,
"current_spot":58026.01780838791
},
{
"strike":60000,
"forward_log_moneyness":0.023035972779684364,
"implied_volatility":0.5761899531146634,
"delta":0.5033316254210285,
"gamma":3.0807752553045106e-05,
"interest_rate":0.06960254691331551,
"current_spot":58026.01780838791
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-11-13T11:12:00.000Z",
"time_to_expiry":0.16999999999999998,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.06552395541880032,
"implied_volatility":0.5870309524955298,
"delta":0.6523733488474932,
"gamma":2.6307418281763847e-05,
"interest_rate":0.07127992585463479,
"current_spot":58026.01780838777
},
{
"strike":56000,
"forward_log_moneyness":-0.0475054499161219,
"implied_volatility":0.5854635028296251,
"delta":0.6245654899722721,
"gamma":2.70815336468474e-05,
"interest_rate":0.07127992585463479,
"current_spot":58026.01780838777
},
{
"strike":57000,
"forward_log_moneyness":-0.02980587281672099,
"implied_volatility":0.5843769340696906,
"delta":0.5964529579861966,
"gamma":2.7696325365451917e-05,
"interest_rate":0.07127992585463479,
"current_spot":58026.01780838777
},
{
"strike":58000,
"forward_log_moneyness":-0.01241413010485182,
"implied_volatility":0.5837508931369548,
"delta":0.5682503007081859,
"gamma":2.8145971741737596e-05,
"interest_rate":0.07127992585463479,
"current_spot":58026.01780838777
},
{
"strike":59000,
"forward_log_moneyness":0.004680303254448171,
"implied_volatility":0.5835632881724113,
"delta":0.5401663337479067,
"gamma":2.8429248752905534e-05,
"interest_rate":0.07127992585463479,
"current_spot":58026.01780838777
},
{
"strike":60000,
"forward_log_moneyness":0.021487421570829397,
"implied_volatility":0.5837906590934814,
"delta":0.5123979714597098,
"gamma":2.8549275061573535e-05,
"interest_rate":0.07127992585463479,
"current_spot":58026.01780838777
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-11-20T18:24:00.000Z",
"time_to_expiry":0.18999999999999997,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.06735897669590868,
"implied_volatility":0.5863057739367858,
"delta":0.65223127813658,
"gamma":2.4918856018005622e-05,
"interest_rate":0.07311368692964569,
"current_spot":58026.01780838777
},
{
"strike":56000,
"forward_log_moneyness":-0.04934047119323026,
"implied_volatility":0.5849433153369128,
"delta":0.6258946463421947,
"gamma":2.5610666415666276e-05,
"interest_rate":0.07311368692964569,
"current_spot":58026.01780838777
},
{
"strike":57000,
"forward_log_moneyness":-0.03164089409382935,
"implied_volatility":0.5840313726325521,
"delta":0.5993158134820614,
"gamma":2.616556274276484e-05,
"interest_rate":0.07311368692964569,
"current_spot":58026.01780838777
},
{
"strike":58000,
"forward_log_moneyness":-0.014249151381960184,
"implied_volatility":0.583547195495472,
"delta":0.5726795602528979,
"gamma":2.657943326340458e-05,
"interest_rate":0.07311368692964569,
"current_spot":58026.01780838777
},
{
"strike":59000,
"forward_log_moneyness":0.002845281977339808,
"implied_volatility":0.5834669976554467,
"delta":0.5461643000770593,
"gamma":2.685175286051114e-05,
"interest_rate":0.07311368692964569,
"current_spot":58026.01780838777
},
{
"strike":60000,
"forward_log_moneyness":0.019652400293721034,
"implied_volatility":0.5837663113297767,
"delta":0.5199374012837408,
"gamma":2.698533738166518e-05,
"interest_rate":0.07311368692964569,
"current_spot":58026.01780838777
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-11-28T01:36:00.000Z",
"time_to_expiry":0.20999999999999996,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.06928400255888097,
"implied_volatility":0.5857159126911701,
"delta":0.652593936926188,
"gamma":2.3717306187184175e-05,
"interest_rate":0.07494744800465658,
"current_spot":58026.01780838777
},
{
"strike":56000,
"forward_log_moneyness":-0.05126549705620255,
"implied_volatility":0.5845134160828153,
"delta":0.6275304165424644,
"gamma":2.4344509355822192e-05,
"interest_rate":0.07494744800465658,
"current_spot":58026.01780838777
},
{
"strike":57000,
"forward_log_moneyness":-0.03356591995680164,
"implied_volatility":0.5837374891162651,
"delta":0.602271161408961,
"gamma":2.485231716577437e-05,
"interest_rate":0.07494744800465658,
"current_spot":58026.01780838777
},
{
"strike":58000,
"forward_log_moneyness":-0.016174177244932468,
"implied_volatility":0.5833634504582188,
"delta":0.5769777762340984,
"gamma":2.5237765878545034e-05,
"interest_rate":0.07494744800465658,
"current_spot":58026.01780838777
},
{
"strike":59000,
"forward_log_moneyness":0.0009202561143675236,
"implied_volatility":0.5833661343470592,
"delta":0.5518052386758521,
"gamma":2.550076377894649e-05,
"interest_rate":0.07494744800465658,
"current_spot":58026.01780838777
},
{
"strike":60000,
"forward_log_moneyness":0.01772737443074875,
"implied_volatility":0.5837202325878651,
"delta":0.5268982641725962,
"gamma":2.5643861982810008e-05,
"interest_rate":0.07494744800465658,
"current_spot":58026.01780838777
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-12-05T08:48:00.000Z",
"time_to_expiry":0.22999999999999995,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.07089316740162552,
"implied_volatility":0.5850460358831413,
"delta":0.6528244589546865,
"gamma":2.268306000159144e-05,
"interest_rate":0.0756386005296464,
"current_spot":58026.017808387885
},
{
"strike":56000,
"forward_log_moneyness":-0.0528746618989471,
"implied_volatility":0.5840343001377082,
"delta":0.6288548364470643,
"gamma":2.3254414560304435e-05,
"interest_rate":0.0756386005296464,
"current_spot":58026.017808387885
},
{
"strike":57000,
"forward_log_moneyness":-0.035175084799546195,
"implied_volatility":0.5834117380834468,
"delta":0.6047320636707766,
"gamma":2.3720693765507275e-05,
"interest_rate":0.0756386005296464,
"current_spot":58026.017808387885
},
{
"strike":58000,
"forward_log_moneyness":-0.017783342087677026,
"implied_volatility":0.5831551877665005,
"delta":0.5805974988289544,
"gamma":2.407979164152057e-05,
"interest_rate":0.0756386005296464,
"current_spot":58026.017808387885
},
{
"strike":59000,
"forward_log_moneyness":-0.0006889087283770343,
"implied_volatility":0.5832412580065514,
"delta":0.556586081433512,
"gamma":2.433190147193144e-05,
"interest_rate":0.0756386005296464,
"current_spot":58026.017808387885
},
{
"strike":60000,
"forward_log_moneyness":0.016118209588004192,
"implied_volatility":0.5836466114787339,
"delta":0.5328235146265632,
"gamma":2.4479317410391537e-05,
"interest_rate":0.0756386005296464,
"current_spot":58026.017808387885
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-12-12T16:00:00.000Z",
"time_to_expiry":0.24999999999999994,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.07253628736941978,
"implied_volatility":0.5844370439469456,
"delta":0.6533332996206793,
"gamma":2.1767684869129277e-05,
"interest_rate":0.076089868386676,
"current_spot":58026.017808387885
},
{
"strike":56000,
"forward_log_moneyness":-0.05451778186674136,
"implied_volatility":0.5835961142060504,
"delta":0.6303320710790771,
"gamma":2.2292739367322032e-05,
"interest_rate":0.076089868386676,
"current_spot":58026.017808387885
},
{
"strike":57000,
"forward_log_moneyness":-0.03681820476734045,
"implied_volatility":0.5831093901173519,
"delta":0.607211931511735,
"gamma":2.272448041480362e-05,
"interest_rate":0.076089868386676,
"current_spot":58026.017808387885
},
{
"strike":58000,
"forward_log_moneyness":-0.019426462055471282,
"implied_volatility":0.5829556276138746,
"delta":0.5840974654152754,
"gamma":2.3061408730028344e-05,
"interest_rate":0.076089868386676,
"current_spot":58026.017808387885
},
{
"strike":59000,
"forward_log_moneyness":-0.0023320286961712906,
"implied_volatility":0.583113518798884,
"delta":0.5611071840153274,
"gamma":2.330388902019031e-05,
"interest_rate":0.076089868386676,
"current_spot":58026.017808387885
},
{
"strike":60000,
"forward_log_moneyness":0.014475089620209936,
"implied_volatility":0.5835619177190728,
"delta":0.5383513157469393,
"gamma":2.345398063868374e-05,
"interest_rate":0.076089868386676,
"current_spot":58026.017808387885
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-12-19T23:12:00.000Z",
"time_to_expiry":0.26999999999999996,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.07420115233819691,
"implied_volatility":0.5839004804994143,
"delta":0.6540449822755717,
"gamma":2.0949232698342626e-05,
"interest_rate":0.07654113624370561,
"current_spot":58026.017808387885
},
{
"strike":56000,
"forward_log_moneyness":-0.056182646835518484,
"implied_volatility":0.5832053978862581,
"delta":0.6319100887691182,
"gamma":2.143552256376795e-05,
"interest_rate":0.07654113624370561,
"current_spot":58026.017808387885
},
{
"strike":57000,
"forward_log_moneyness":-0.03848306973611758,
"implied_volatility":0.5828346362049288,
"delta":0.6096836901828337,
"gamma":2.1838230635891743e-05,
"interest_rate":0.07654113624370561,
"current_spot":58026.017808387885
},
{
"strike":58000,
"forward_log_moneyness":-0.021091327024248405,
"implied_volatility":0.5827686066982242,
"delta":0.5874765537192173,
"gamma":2.2156295021947572e-05,
"interest_rate":0.07654113624370561,
"current_spot":58026.017808387885
},
{
"strike":59000,
"forward_log_moneyness":-0.003996893664948414,
"implied_volatility":0.5829877896938351,
"delta":0.5653937326800452,
"gamma":2.239018705060363e-05,
"interest_rate":0.07654113624370561,
"current_spot":58026.017808387885
},
{
"strike":60000,
"forward_log_moneyness":0.012810224651432812,
"implied_volatility":0.583472913008351,
"delta":0.5435328116039359,
"gamma":2.2541766049994783e-05,
"interest_rate":0.07654113624370561,
"current_spot":58026.017808387885
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2024-12-27T06:24:00.000Z",
"time_to_expiry":0.29,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.07588776230795688,
"implied_volatility":0.5834210619846506,
"delta":0.654917739886295,
"gamma":2.0211525063748506e-05,
"interest_rate":0.07699240410073521,
"current_spot":58026.017808387885
},
{
"strike":56000,
"forward_log_moneyness":-0.05786925680527847,
"implied_volatility":0.5828520034905954,
"delta":0.6335640828996827,
"gamma":2.0664907683785543e-05,
"interest_rate":0.07699240410073521,
"current_spot":58026.017808387885
},
{
"strike":57000,
"forward_log_moneyness":-0.040169679705877565,
"implied_volatility":0.5825814329621061,
"delta":0.6121411490295285,
"gamma":2.1042868042457242e-05,
"interest_rate":0.07699240410073521,
"current_spot":58026.017808387885
},
{
"strike":58000,
"forward_log_moneyness":-0.02277793699400839,
"implied_volatility":0.5825912008690817,
"delta":0.5907481682741974,
"gamma":2.1344665191826132e-05,
"interest_rate":0.07699240410073521,
"current_spot":58026.017808387885
},
{
"strike":59000,
"forward_log_moneyness":-0.0056835036347084,
"implied_volatility":0.5828633359816396,
"delta":0.569479009538266,
"gamma":2.1570835135264652e-05,
"interest_rate":0.07699240410073521,
"current_spot":58026.017808387885
},
{
"strike":60000,
"forward_log_moneyness":0.011123614681672826,
"implied_volatility":0.5833801840698435,
"delta":0.5484207724130146,
"gamma":2.1723065626451507e-05,
"interest_rate":0.07699240410073521,
"current_spot":58026.017808387885
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-01-03T13:36:00.000Z",
"time_to_expiry":0.31,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.07735902115250148,
"implied_volatility":0.5865147449358172,
"delta":0.6554847966839834,
"gamma":1.943360545411439e-05,
"interest_rate":0.07737287709195237,
"current_spot":58026.01780838792
},
{
"strike":56000,
"forward_log_moneyness":-0.05934051564982307,
"implied_volatility":0.5859441421122469,
"delta":0.6349574078483926,
"gamma":1.9856450972405152e-05,
"interest_rate":0.07737287709195237,
"current_spot":58026.01780838792
},
{
"strike":57000,
"forward_log_moneyness":-0.041640938550422155,
"implied_volatility":0.5856497256720994,
"delta":0.6143753573062026,
"gamma":2.0212132336004204e-05,
"interest_rate":0.07737287709195237,
"current_spot":58026.01780838792
},
{
"strike":58000,
"forward_log_moneyness":-0.024249195838552985,
"implied_volatility":0.5856150378534065,
"delta":0.5938265374141283,
"gamma":2.050006859243845e-05,
"interest_rate":0.07737287709195237,
"current_spot":58026.01780838792
},
{
"strike":59000,
"forward_log_moneyness":-0.0071547624792529935,
"implied_volatility":0.5858238022165216,
"delta":0.5733940847076532,
"gamma":2.0720726856119867e-05,
"interest_rate":0.07737287709195237,
"current_spot":58026.01780838792
},
{
"strike":60000,
"forward_log_moneyness":0.009652355837128233,
"implied_volatility":0.5862600402694625,
"delta":0.553155246345636,
"gamma":2.0875521050823157e-05,
"interest_rate":0.07737287709195237,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-01-10T20:48:00.000Z",
"time_to_expiry":0.33,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.07903709658477406,
"implied_volatility":0.5892628535282048,
"delta":0.656430642263953,
"gamma":1.8728330949905594e-05,
"interest_rate":0.07775269759592703,
"current_spot":58026.01780838792
},
{
"strike":56000,
"forward_log_moneyness":-0.06101859108209565,
"implied_volatility":0.5886873919486633,
"delta":0.6366514402312091,
"gamma":1.9125674966525187e-05,
"interest_rate":0.07775269759592703,
"current_spot":58026.01780838792
},
{
"strike":57000,
"forward_log_moneyness":-0.043319013982694735,
"implied_volatility":0.5883687373424442,
"delta":0.616828511487168,
"gamma":1.946277206158193e-05,
"interest_rate":0.07775269759592703,
"current_spot":58026.01780838792
},
{
"strike":58000,
"forward_log_moneyness":-0.02592727127082557,
"implied_volatility":0.5882919082600271,
"delta":0.5970403247494949,
"gamma":1.9739150092249815e-05,
"interest_rate":0.07775269759592703,
"current_spot":58026.01780838792
},
{
"strike":59000,
"forward_log_moneyness":-0.008832837911525577,
"implied_volatility":0.5884421027699014,
"delta":0.5773611181710084,
"gamma":1.995520874298391e-05,
"interest_rate":0.07775269759592703,
"current_spot":58026.01780838792
},
{
"strike":60000,
"forward_log_moneyness":0.00797428040485565,
"implied_volatility":0.5888047970039489,
"delta":0.5578599731989942,
"gamma":2.0112136832818713e-05,
"interest_rate":0.07775269759592703,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-01-18T04:00:00.000Z",
"time_to_expiry":0.35000000000000003,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.08073246513740137,
"implied_volatility":0.5916919060086901,
"delta":0.6575024200285706,
"gamma":1.8089381474361105e-05,
"interest_rate":0.07813251809990168,
"current_spot":58026.01780838792
},
{
"strike":56000,
"forward_log_moneyness":-0.06271395963472295,
"implied_volatility":0.5911123740630142,
"delta":0.638400391842463,
"gamma":1.846467703618473e-05,
"interest_rate":0.07813251809990168,
"current_spot":58026.01780838792
},
{
"strike":57000,
"forward_log_moneyness":-0.04501438253532204,
"implied_volatility":0.5907725881268474,
"delta":0.6192635876330114,
"gamma":1.8785552041532127e-05,
"interest_rate":0.07813251809990168,
"current_spot":58026.01780838792
},
{
"strike":58000,
"forward_log_moneyness":-0.02762263982345287,
"implied_volatility":0.5906588566938544,
"delta":0.6001625601629821,
"gamma":1.9051617389724943e-05,
"interest_rate":0.07813251809990168,
"current_spot":58026.01780838792
},
{
"strike":59000,
"forward_log_moneyness":-0.010528206464152878,
"implied_volatility":0.5907576647470786,
"delta":0.5811640748843903,
"gamma":1.92632177102504e-05,
"interest_rate":0.07813251809990168,
"current_spot":58026.01780838792
},
{
"strike":60000,
"forward_log_moneyness":0.0062789118522283485,
"implied_volatility":0.5910557571389317,
"delta":0.5623303446149028,
"gamma":1.9421363003765108e-05,
"interest_rate":0.07813251809990168,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-01-25T11:12:00.000Z",
"time_to_expiry":0.37000000000000005,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.08244512681038338,
"implied_volatility":0.593855363950742,
"delta":0.6586750136667728,
"gamma":1.750680982136774e-05,
"interest_rate":0.07851233860387634,
"current_spot":58026.01780838792
},
{
"strike":56000,
"forward_log_moneyness":-0.06442662130770496,
"implied_volatility":0.5932724273552809,
"delta":0.6401898891500555,
"gamma":1.7862840900701067e-05,
"interest_rate":0.07851233860387634,
"current_spot":58026.01780838792
},
{
"strike":57000,
"forward_log_moneyness":-0.04672704420830405,
"implied_volatility":0.5929140932515073,
"delta":0.621677389779866,
"gamma":1.8169413251068007e-05,
"interest_rate":0.07851233860387634,
"current_spot":58026.01780838792
},
{
"strike":58000,
"forward_log_moneyness":-0.02933530149643488,
"implied_volatility":0.5927678064114495,
"delta":0.603201344367778,
"gamma":1.8426202176754724e-05,
"interest_rate":0.07851233860387634,
"current_spot":58026.01780838792
},
{
"strike":59000,
"forward_log_moneyness":-0.012240868137134889,
"implied_volatility":0.59282118446842,
"delta":0.5848221722012061,
"gamma":1.863350679452335e-05,
"interest_rate":0.07851233860387634,
"current_spot":58026.01780838792
},
{
"strike":60000,
"forward_log_moneyness":0.004566250179246337,
"implied_volatility":0.5930620884062215,
"delta":0.5665962443733391,
"gamma":1.8792192924293632e-05,
"interest_rate":0.07851233860387634,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-02-01T18:24:00.000Z",
"time_to_expiry":0.39000000000000007,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.08417508160372009,
"implied_volatility":0.5957953726808443,
"delta":0.6599288984018723,
"gamma":1.69726415234124e-05,
"interest_rate":0.078892159107851,
"current_spot":58026.01780838792
},
{
"strike":56000,
"forward_log_moneyness":-0.06615657610104167,
"implied_volatility":0.5952096009972234,
"delta":0.6420090024752564,
"gamma":1.7311685002639268e-05,
"interest_rate":0.078892159107851,
"current_spot":58026.01780838792
},
{
"strike":57000,
"forward_log_moneyness":-0.048456999001640765,
"implied_volatility":0.5948348923099175,
"delta":0.6240679052720292,
"gamma":1.7605536405944058e-05,
"interest_rate":0.078892159107851,
"current_spot":58026.01780838792
},
{
"strike":58000,
"forward_log_moneyness":-0.031065256289771595,
"implied_volatility":0.5946596994303446,
"delta":0.6061636680003031,
"gamma":1.7853921706796786e-05,
"interest_rate":0.078892159107851,
"current_spot":58026.01780838792
},
{
"strike":59000,
"forward_log_moneyness":-0.013970822930471603,
"implied_volatility":0.5946726442063355,
"delta":0.588351267172056,
"gamma":1.805710199138283e-05,
"interest_rate":0.078892159107851,
"current_spot":58026.01780838792
},
{
"strike":60000,
"forward_log_moneyness":0.002836295385909623,
"implied_volatility":0.5948625769257114,
"delta":0.5706820570612242,
"gamma":1.8215825305769134e-05,
"interest_rate":0.078892159107851,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-02-09T01:36:00.000Z",
"time_to_expiry":0.4100000000000001,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.08592232951741152,
"implied_volatility":0.5975456065600105,
"delta":0.6612486952920765,
"gamma":1.648039869741702e-05,
"interest_rate":0.07927197961182565,
"current_spot":58026.01780838792
},
{
"strike":56000,
"forward_log_moneyness":-0.0679038240147331,
"implied_volatility":0.5969574929286067,
"delta":0.6438493227054407,
"gamma":1.680434031579316e-05,
"interest_rate":0.07927197961182565,
"current_spot":58026.01780838792
},
{
"strike":57000,
"forward_log_moneyness":-0.05020424691533219,
"implied_volatility":0.596568258283163,
"delta":0.6264339374601571,
"gamma":1.7086790323140616e-05,
"interest_rate":0.07927197961182565,
"current_spot":58026.01780838792
},
{
"strike":58000,
"forward_log_moneyness":-0.032812504203463023,
"implied_volatility":0.5963672553034276,
"delta":0.6090556104277264,
"gamma":1.7327515069962093e-05,
"interest_rate":0.07927197961182565,
"current_spot":58026.01780838792
},
{
"strike":59000,
"forward_log_moneyness":-0.015718070844163035,
"implied_volatility":0.5963440019435505,
"delta":0.5917646092677293,
"gamma":1.7526743565484844e-05,
"interest_rate":0.07927197961182565,
"current_spot":58026.01780838792
},
{
"strike":60000,
"forward_log_moneyness":0.0010890474722181909,
"implied_volatility":0.5964882312040217,
"delta":0.5746079426225191,
"gamma":1.7685126546026714e-05,
"interest_rate":0.07927197961182565,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-02-16T08:48:00.000Z",
"time_to_expiry":0.4300000000000001,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.08768687055145766,
"implied_volatility":0.5991332962796908,
"delta":0.6626221503342903,
"gamma":1.602475720603069e-05,
"interest_rate":0.07965180011580031,
"current_spot":58026.01780838792
},
{
"strike":56000,
"forward_log_moneyness":-0.06966836504877924,
"implied_volatility":0.5985432723503092,
"delta":0.6457043154367361,
"gamma":1.6335176270031695e-05,
"interest_rate":0.07965180011580031,
"current_spot":58026.01780838792
},
{
"strike":57000,
"forward_log_moneyness":-0.05196878794937833,
"implied_volatility":0.5981410992551035,
"delta":0.6287748573067753,
"gamma":1.66073377782489e-05,
"interest_rate":0.07965180011580031,
"current_spot":58026.01780838792
},
{
"strike":58000,
"forward_log_moneyness":-0.03457704523750916,
"implied_volatility":0.5979169374231913,
"delta":0.6118824954967079,
"gamma":1.684104063258247e-05,
"interest_rate":0.07965180011580031,
"current_spot":58026.01780838792
},
{
"strike":59000,
"forward_log_moneyness":-0.01748261187820917,
"implied_volatility":0.5978611090250164,
"delta":0.5950733919830575,
"gamma":1.703648656458808e-05,
"interest_rate":0.07965180011580031,
"current_spot":58026.01780838792
},
{
"strike":60000,
"forward_log_moneyness":-0.0006754935618279445,
"implied_volatility":0.5979641392993806,
"delta":0.578390762146786,
"gamma":1.719424509140647e-05,
"interest_rate":0.07965180011580031,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-02-23T16:00:00.000Z",
"time_to_expiry":0.4500000000000001,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.0894687047058585,
"implied_volatility":0.6005807001593987,
"delta":0.6640393995175122,
"gamma":1.560129516326121e-05,
"interest_rate":0.08003162061977497,
"current_spot":58026.01780838792
},
{
"strike":56000,
"forward_log_moneyness":-0.07145019920318009,
"implied_volatility":0.5999891475564512,
"delta":0.6475688604321334,
"gamma":1.589952756895927e-05,
"interest_rate":0.08003162061977497,
"current_spot":58026.01780838792
},
{
"strike":57000,
"forward_log_moneyness":-0.05375062210377918,
"implied_volatility":0.5995754113072382,
"delta":0.6310904325782578,
"gamma":1.6162348328586778e-05,
"interest_rate":0.08003162061977497,
"current_spot":58026.01780838792
},
{
"strike":58000,
"forward_log_moneyness":-0.03635887939191001,
"implied_volatility":0.599330380465012,
"delta":0.6146490149702933,
"gamma":1.6389582866996322e-05,
"interest_rate":0.08003162061977497,
"current_spot":58026.01780838792
},
{
"strike":59000,
"forward_log_moneyness":-0.01926444603261002,
"implied_volatility":0.5992451026243109,
"delta":0.5982871647535803,
"gamma":1.658140955184527e-05,
"interest_rate":0.08003162061977497,
"current_spot":58026.01780838792
},
{
"strike":60000,
"forward_log_moneyness":-0.0024573277162287938,
"implied_volatility":0.5993108177832943,
"delta":0.5820447632894308,
"gamma":1.673832949786088e-05,
"interest_rate":0.08003162061977497,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-03-02T23:12:00.000Z",
"time_to_expiry":0.47000000000000014,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.09126783198061406,
"implied_volatility":0.6019061896741811,
"delta":0.6654924305937795,
"gamma":1.5206305353120411e-05,
"interest_rate":0.08041144112374962,
"current_spot":58026.01780838792
},
{
"strike":56000,
"forward_log_moneyness":-0.07324932647793564,
"implied_volatility":0.6013134489180074,
"delta":0.6494389175938624,
"gamma":1.5493491238647052e-05,
"interest_rate":0.08041144112374962,
"current_spot":58026.01780838792
},
{
"strike":57000,
"forward_log_moneyness":-0.05554974937853474,
"implied_volatility":0.6008893505740637,
"delta":0.6333807087161338,
"gamma":1.5747785400548932e-05,
"interest_rate":0.08041144112374962,
"current_spot":58026.01780838792
},
{
"strike":58000,
"forward_log_moneyness":-0.038158006666665564,
"implied_volatility":0.6006254438255276,
"delta":0.6173593274072899,
"gamma":1.5969035087915286e-05,
"interest_rate":0.08041144112374962,
"current_spot":58026.01780838792
},
{
"strike":59000,
"forward_log_moneyness":-0.021063573307365576,
"implied_volatility":0.6005134335925274,
"delta":0.6014141457496237,
"gamma":1.615739852940158e-05,
"interest_rate":0.08041144112374962,
"current_spot":58026.01780838792
},
{
"strike":60000,
"forward_log_moneyness":-0.00425645499098435,
"implied_volatility":0.6005452077482033,
"delta":0.5855820964162011,
"gamma":1.631331876590657e-05,
"interest_rate":0.08041144112374962,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-03-10T06:24:00.000Z",
"time_to_expiry":0.49000000000000016,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.09308425237572432,
"implied_volatility":0.6031250623399091,
"delta":0.6669746828299354,
"gamma":1.4836653214234356e-05,
"interest_rate":0.08079126162772428,
"current_spot":58026.01780838792
},
{
"strike":56000,
"forward_log_moneyness":-0.0750657468730459,
"implied_volatility":0.6025314398717343,
"delta":0.6513112809981132,
"gamma":1.5113773518421076e-05,
"interest_rate":0.08079126162772428,
"current_spot":58026.01780838792
},
{
"strike":57000,
"forward_log_moneyness":-0.057366169773645004,
"implied_volatility":0.6020980361099939,
"delta":0.6356459247590897,
"gamma":1.5360245958853648e-05,
"interest_rate":0.08079126162772428,
"current_spot":58026.01780838792
},
{
"strike":58000,
"forward_log_moneyness":-0.03997442706177583,
"implied_volatility":0.6018170006557687,
"delta":0.620017138153929,
"gamma":1.557593590766825e-05,
"interest_rate":0.08079126162772428,
"current_spot":58026.01780838792
},
{
"strike":59000,
"forward_log_moneyness":-0.02287999370247584,
"implied_volatility":0.6016806364732566,
"delta":0.6044614629774034,
"gamma":1.5760984136720794e-05,
"interest_rate":0.08079126162772428,
"current_spot":58026.01780838792
},
{
"strike":60000,
"forward_log_moneyness":-0.006072875386094613,
"implied_volatility":0.6016814211496871,
"delta":0.5890132092236232,
"gamma":1.591578402449494e-05,
"interest_rate":0.08079126162772428,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-03-17T13:36:00.000Z",
"time_to_expiry":0.5100000000000001,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.09491796589118931,
"implied_volatility":0.6042501586756007,
"delta":0.6684807452390528,
"gamma":1.4489667862804099e-05,
"interest_rate":0.08117108213169894,
"current_spot":58026.01780838792
},
{
"strike":56000,
"forward_log_moneyness":-0.07689946038851089,
"implied_volatility":0.6036559324489383,
"delta":0.6531833953004134,
"gamma":1.4757572743308682e-05,
"interest_rate":0.08117108213169894,
"current_spot":58026.01780838792
},
{
"strike":57000,
"forward_log_moneyness":-0.05919988328910998,
"implied_volatility":0.6032141592953926,
"delta":0.6378864534183504,
"gamma":1.4996838066826294e-05,
"interest_rate":0.08117108213169894,
"current_spot":58026.01780838792
},
{
"strike":58000,
"forward_log_moneyness":-0.041808140577240804,
"implied_volatility":0.6029175368404938,
"delta":0.6226257646464239,
"gamma":1.5207344385061953e-05,
"interest_rate":0.08117108213169894,
"current_spot":58026.01780838792
},
{
"strike":59000,
"forward_log_moneyness":-0.024713707217940816,
"implied_volatility":0.6027589141455627,
"delta":0.607435342632349,
"gamma":1.5389217262851015e-05,
"interest_rate":0.08117108213169894,
"current_spot":58026.01780838792
},
{
"strike":60000,
"forward_log_moneyness":-0.00790658890155959,
"implied_volatility":0.6027313075987321,
"delta":0.5923471525989952,
"gamma":1.5542807332031056e-05,
"interest_rate":0.08117108213169894,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-03-24T20:48:00.000Z",
"time_to_expiry":0.5300000000000001,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.09676897252700899,
"implied_volatility":0.6052923362319923,
"delta":0.6700061262096932,
"gamma":1.416305743890709e-05,
"interest_rate":0.08155090263567359,
"current_spot":58026.01780838792
},
{
"strike":56000,
"forward_log_moneyness":-0.07875046702433057,
"implied_volatility":0.6046977602065192,
"delta":0.6550532170110428,
"gamma":1.4422488627147983e-05,
"interest_rate":0.08155090263567359,
"current_spot":58026.01780838792
},
{
"strike":57000,
"forward_log_moneyness":-0.06105088992492966,
"implied_volatility":0.6042484520921164,
"delta":0.6401027580316636,
"gamma":1.4655086188360688e-05,
"interest_rate":0.08155090263567359,
"current_spot":58026.01780838792
},
{
"strike":58000,
"forward_log_moneyness":-0.04365914721306049,
"implied_volatility":0.6039376112929509,
"delta":0.6251881901711369,
"gamma":1.4860743492452214e-05,
"interest_rate":0.08155090263567359,
"current_spot":58026.01780838792
},
{
"strike":59000,
"forward_log_moneyness":-0.0265647138537605,
"implied_volatility":0.6037585871715093,
"delta":0.6103412580412351,
"gamma":1.5039572798879317e-05,
"interest_rate":0.08155090263567359,
"current_spot":58026.01780838792
},
{
"strike":60000,
"forward_log_moneyness":-0.009757595537379274,
"implied_volatility":0.603704890074666,
"delta":0.5955918206338475,
"gamma":1.5191887728562388e-05,
"interest_rate":0.08155090263567359,
"current_spot":58026.01780838792
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-04-01T04:00:00.000Z",
"time_to_expiry":0.5500000000000002,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.09823322437819879,
"implied_volatility":0.6063849919635552,
"delta":0.6712226510746713,
"gamma":1.385752273241733e-05,
"interest_rate":0.08157716058576774,
"current_spot":58026.017808387805
},
{
"strike":56000,
"forward_log_moneyness":-0.08021471887552037,
"implied_volatility":0.6058253740693738,
"delta":0.6565927708414324,
"gamma":1.4107795956346336e-05,
"interest_rate":0.08157716058576774,
"current_spot":58026.017808387805
},
{
"strike":57000,
"forward_log_moneyness":-0.06251514177611947,
"implied_volatility":0.6054042232469958,
"delta":0.6419694724330184,
"gamma":1.4332815392978886e-05,
"interest_rate":0.08157716058576774,
"current_spot":58026.017808387805
},
{
"strike":58000,
"forward_log_moneyness":-0.045123399064250294,
"implied_volatility":0.6051150762546469,
"delta":0.6273840232586034,
"gamma":1.4532504475780632e-05,
"interest_rate":0.08157716058576774,
"current_spot":58026.017808387805
},
{
"strike":59000,
"forward_log_moneyness":-0.028028965704950306,
"implied_volatility":0.6049516236647029,
"delta":0.612866079908221,
"gamma":1.4706982876532905e-05,
"interest_rate":0.08157716058576774,
"current_spot":58026.017808387805
},
{
"strike":60000,
"forward_log_moneyness":-0.01122184738856908,
"implied_volatility":0.6049077177685007,
"delta":0.5984435251984077,
"gamma":1.48565505806553e-05,
"interest_rate":0.08157716058576774,
"current_spot":58026.017808387805
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-04-08T11:12:00.000Z",
"time_to_expiry":0.5700000000000002,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.09970728546825608,
"implied_volatility":0.6075154066079183,
"delta":0.6724607794098699,
"gamma":1.3566206950955555e-05,
"interest_rate":0.0812836750088743,
"current_spot":58026.017808387805
},
{
"strike":56000,
"forward_log_moneyness":-0.08168877996557766,
"implied_volatility":0.6070162128665992,
"delta":0.6581398044021844,
"gamma":1.3807316434875478e-05,
"interest_rate":0.0812836750088743,
"current_spot":58026.017808387805
},
{
"strike":57000,
"forward_log_moneyness":-0.06398920286617675,
"implied_volatility":0.6066490967106357,
"delta":0.6438304275103621,
"gamma":1.402458243783162e-05,
"interest_rate":0.0812836750088743,
"current_spot":58026.017808387805
},
{
"strike":58000,
"forward_log_moneyness":-0.04659746015430758,
"implied_volatility":0.6064078050353865,
"delta":0.6295619413367248,
"gamma":1.4217965399343333e-05,
"interest_rate":0.0812836750088743,
"current_spot":58026.017808387805
},
{
"strike":59000,
"forward_log_moneyness":-0.029503026795007593,
"implied_volatility":0.6062862456770397,
"delta":0.6153620833926032,
"gamma":1.4387602306621456e-05,
"interest_rate":0.0812836750088743,
"current_spot":58026.017808387805
},
{
"strike":60000,
"forward_log_moneyness":-0.012695908478626367,
"implied_volatility":0.6062784936160435,
"delta":0.6012568974190726,
"gamma":1.453379188155514e-05,
"interest_rate":0.0812836750088743,
"current_spot":58026.017808387805
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-04-15T18:24:00.000Z",
"time_to_expiry":0.5900000000000002,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.10117079131829043,
"implied_volatility":0.6085598541664725,
"delta":0.6737010286784331,
"gamma":1.3290898886242207e-05,
"interest_rate":0.08099018943198087,
"current_spot":58026.017808387805
},
{
"strike":56000,
"forward_log_moneyness":-0.08315228581561201,
"implied_volatility":0.6081169402209536,
"delta":0.6596721679033672,
"gamma":1.352356139766466e-05,
"interest_rate":0.08099018943198087,
"current_spot":58026.017808387805
},
{
"strike":57000,
"forward_log_moneyness":-0.0654527087162111,
"implied_volatility":0.6078001690905547,
"delta":0.6456593596399971,
"gamma":1.3733663272525235e-05,
"interest_rate":0.08099018943198087,
"current_spot":58026.017808387805
},
{
"strike":58000,
"forward_log_moneyness":-0.048060966004341926,
"implied_volatility":0.607603484603363,
"delta":0.63169010435165,
"gamma":1.3921195882109697e-05,
"interest_rate":0.08099018943198087,
"current_spot":58026.017808387805
},
{
"strike":59000,
"forward_log_moneyness":-0.030966532645041938,
"implied_volatility":0.6075209977169335,
"delta":0.6177904016458666,
"gamma":1.4086309976634677e-05,
"interest_rate":0.08099018943198087,
"current_spot":58026.017808387805
},
{
"strike":60000,
"forward_log_moneyness":-0.014159414328660712,
"implied_volatility":0.6075469911813373,
"delta":0.6039846323696619,
"gamma":1.4229301893314648e-05,
"interest_rate":0.08099018943198087,
"current_spot":58026.017808387805
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-04-23T01:36:00.000Z",
"time_to_expiry":0.6100000000000002,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.10262374192830184,
"implied_volatility":0.6095270688578581,
"delta":0.674941165612461,
"gamma":1.3030171173356484e-05,
"interest_rate":0.08069670385508745,
"current_spot":58026.017808387805
},
{
"strike":56000,
"forward_log_moneyness":-0.08460523642562343,
"implied_volatility":0.6091367182206041,
"delta":0.6611891149585936,
"gamma":1.3255020584371013e-05,
"interest_rate":0.08069670385508745,
"current_spot":58026.017808387805
},
{
"strike":57000,
"forward_log_moneyness":-0.06690565932622251,
"implied_volatility":0.6088669840596472,
"delta":0.6474570848694631,
"gamma":1.3458480290497322e-05,
"interest_rate":0.08069670385508745,
"current_spot":58026.017808387805
},
{
"strike":58000,
"forward_log_moneyness":-0.04951391661435334,
"implied_volatility":0.6087119950035813,
"delta":0.6337709438017305,
"gamma":1.3640567595801775e-05,
"interest_rate":0.08069670385508745,
"current_spot":58026.017808387805
},
{
"strike":59000,
"forward_log_moneyness":-0.03241948325505335,
"implied_volatility":0.60866605220626,
"delta":0.6201551118332029,
"gamma":1.3801444140931183e-05,
"interest_rate":0.08069670385508745,
"current_spot":58026.017808387805
},
{
"strike":60000,
"forward_log_moneyness":-0.015612364938672123,
"implied_volatility":0.6087236326110843,
"delta":0.6066324606157301,
"gamma":1.394140304804037e-05,
"interest_rate":0.08069670385508745,
"current_spot":58026.017808387805
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-04-30T08:48:00.000Z",
"time_to_expiry":0.6300000000000002,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.10406613729829031,
"implied_volatility":0.6104246470005334,
"delta":0.6761793304590342,
"gamma":1.278276927102335e-05,
"interest_rate":0.08040321827819402,
"current_spot":58026.017808387805
},
{
"strike":56000,
"forward_log_moneyness":-0.0860476317956119,
"implied_volatility":0.6100835137805913,
"delta":0.6626900938774947,
"gamma":1.3000368856909381e-05,
"interest_rate":0.08040321827819402,
"current_spot":58026.017808387805
},
{
"strike":57000,
"forward_log_moneyness":-0.06834805469621098,
"implied_volatility":0.6098578389217577,
"delta":0.6492244229425308,
"gamma":1.3197650951412376e-05,
"interest_rate":0.08040321827819402,
"current_spot":58026.017808387805
},
{
"strike":58000,
"forward_log_moneyness":-0.05095631198434181,
"implied_volatility":0.6097419246909361,
"delta":0.6358066951368552,
"gamma":1.337465465362179e-05,
"interest_rate":0.08040321827819402,
"current_spot":58026.017808387805
},
{
"strike":59000,
"forward_log_moneyness":-0.03386187862504182,
"implied_volatility":0.6097302506026987,
"delta":0.6224598901273479,
"gamma":1.3531550160629383e-05,
"interest_rate":0.08040321827819402,
"current_spot":58026.017808387805
},
{
"strike":60000,
"forward_log_moneyness":-0.017054760308660592,
"implied_volatility":0.6098174754098713,
"delta":0.6092055051306134,
"gamma":1.3668626771724865e-05,
"interest_rate":0.08040321827819402,
"current_spot":58026.017808387805
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-05-07T16:00:00.000Z",
"time_to_expiry":0.6500000000000002,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.10549797742825584,
"implied_volatility":0.6112592266585491,
"delta":0.6774139719528227,
"gamma":1.2547585422122807e-05,
"interest_rate":0.08010973270130059,
"current_spot":58026.017808387805
},
{
"strike":56000,
"forward_log_moneyness":-0.08747947192557742,
"implied_volatility":0.6109642875751776,
"delta":0.6641747094008907,
"gamma":1.2758437970726652e-05,
"interest_rate":0.08010973270130059,
"current_spot":58026.017808387805
},
{
"strike":57000,
"forward_log_moneyness":-0.06977989482617651,
"implied_volatility":0.6107799818645159,
"delta":0.6509621880833488,
"gamma":1.2949957784487542e-05,
"interest_rate":0.08010973270130059,
"current_spot":58026.017808387805
},
{
"strike":58000,
"forward_log_moneyness":-0.05238815211430734,
"implied_volatility":0.6107007751473428,
"delta":0.6377994192602598,
"gamma":1.3122202314521287e-05,
"interest_rate":0.08010973270130059,
"current_spot":58026.017808387805
},
{
"strike":59000,
"forward_log_moneyness":-0.03529371875500735,
"implied_volatility":0.6107213144400007,
"delta":0.6247080649466805,
"gamma":1.3275348410036664e-05,
"interest_rate":0.08010973270130059,
"current_spot":58026.017808387805
},
{
"strike":60000,
"forward_log_moneyness":-0.018486600438626127,
"implied_volatility":0.6108364289821319,
"delta":0.6117083666301748,
"gamma":1.3409681110738615e-05,
"interest_rate":0.08010973270130059,
"current_spot":58026.017808387805
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-05-14T23:12:00.000Z",
"time_to_expiry":0.6700000000000003,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.10691926231819843,
"implied_volatility":0.6120366342752007,
"delta":0.6786437949207251,
"gamma":1.232363725636699e-05,
"interest_rate":0.07981624712440716,
"current_spot":58026.017808387805
},
{
"strike":56000,
"forward_log_moneyness":-0.08890075681552001,
"implied_volatility":0.611785148206144,
"delta":0.6656426923288706,
"gamma":1.2528193437737864e-05,
"interest_rate":0.07981624712440716,
"current_spot":58026.017808387805
},
{
"strike":57000,
"forward_log_moneyness":-0.07120117971611911,
"implied_volatility":0.611639772874796,
"delta":0.6526711824472586,
"gamma":1.2714323846768155e-05,
"interest_rate":0.07981624712440716,
"current_spot":58026.017808387805
},
{
"strike":58000,
"forward_log_moneyness":-0.053809437004249935,
"implied_volatility":0.6115951277661521,
"delta":0.6397510211105286,
"gamma":1.2882101407824996e-05,
"interest_rate":0.07981624712440716,
"current_spot":58026.017808387805
},
{
"strike":59000,
"forward_log_moneyness":-0.03671500364494995,
"implied_volatility":0.6116460174164314,
"delta":0.6269026614629518,
"gamma":1.3031708062854318e-05,
"interest_rate":0.07981624712440716,
"current_spot":58026.017808387805
},
{
"strike":60000,
"forward_log_moneyness":-0.01990788532856872,
"implied_volatility":0.6117874311765757,
"delta":0.6141451942821818,
"gamma":1.3163424287165862e-05,
"interest_rate":0.07981624712440716,
"current_spot":58026.017808387805
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-05-22T06:24:00.000Z",
"time_to_expiry":0.6900000000000003,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.1083299919681181,
"implied_volatility":0.6127620051654049,
"delta":0.6798677177839658,
"gamma":1.2110050087614773e-05,
"interest_rate":0.07952276154751373,
"current_spot":58026.017808387805
},
{
"strike":56000,
"forward_log_moneyness":-0.09031148646543968,
"implied_volatility":0.6125514788520701,
"delta":0.6670938752680284,
"gamma":1.2308715429696086e-05,
"interest_rate":0.07952276154751373,
"current_spot":58026.017808387805
},
{
"strike":57000,
"forward_log_moneyness":-0.07261190936603877,
"implied_volatility":0.612442815898657,
"delta":0.6543521915408346,
"gamma":1.2489792501144443e-05,
"interest_rate":0.07952276154751373,
"current_spot":58026.017808387805
},
{
"strike":58000,
"forward_log_moneyness":-0.0552201666541696,
"implied_volatility":0.6124307808850334,
"delta":0.6416632657890228,
"gamma":1.2653367281858963e-05,
"interest_rate":0.07952276154751373,
"current_spot":58026.017808387805
},
{
"strike":59000,
"forward_log_moneyness":-0.03812573329486961,
"implied_volatility":0.6125103266745408,
"delta":0.6290464390610809,
"gamma":1.279962552570815e-05,
"interest_rate":0.07952276154751373,
"current_spot":58026.017808387805
},
{
"strike":60000,
"forward_log_moneyness":-0.021318614978488387,
"implied_volatility":0.6126765932012775,
"delta":0.6165197447114037,
"gamma":1.2928842940702886e-05,
"interest_rate":0.07952276154751373,
"current_spot":58026.017808387805
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-05-29T13:36:00.000Z",
"time_to_expiry":0.7100000000000003,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.10973016637801483,
"implied_volatility":0.613439883149692,
"delta":0.6810848378756239,
"gamma":1.1906042174674564e-05,
"interest_rate":0.0792292759706203,
"current_spot":58026.017808387805
},
{
"strike":56000,
"forward_log_moneyness":-0.09171166087533641,
"implied_volatility":0.6132680419669608,
"delta":0.6685281731587187,
"gamma":1.2099182913529726e-05,
"interest_rate":0.0792292759706203,
"current_spot":58026.017808387805
},
{
"strike":57000,
"forward_log_moneyness":-0.0740120837759355,
"implied_volatility":0.6131940680709097,
"delta":0.6560059811003772,
"gamma":1.227551064308742e-05,
"interest_rate":0.0792292759706203,
"current_spot":58026.017808387805
},
{
"strike":58000,
"forward_log_moneyness":-0.056620341064066326,
"implied_volatility":0.6132128630205235,
"delta":0.6435377926140438,
"gamma":1.2435122359988028e-05,
"interest_rate":0.0792292759706203,
"current_spot":58026.017808387805
},
{
"strike":59000,
"forward_log_moneyness":-0.03952590770476634,
"implied_volatility":0.6133195195249508,
"delta":0.6311419230644452,
"gamma":1.257820657537809e-05,
"interest_rate":0.0792292759706203,
"current_spot":58026.017808387805
},
{
"strike":60000,
"forward_log_moneyness":-0.022718789388385112,
"implied_volatility":0.6135093193333883,
"delta":0.6188354315615275,
"gamma":1.270503410586085e-05,
"interest_rate":0.0792292759706203,
"current_spot":58026.017808387805
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-06-05T20:48:00.000Z",
"time_to_expiry":0.7300000000000003,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.11111978554788861,
"implied_volatility":0.6140743034262237,
"delta":0.6822944029743997,
"gamma":1.1710912376478912e-05,
"interest_rate":0.07893579039372686,
"current_spot":58026.017808387805
},
{
"strike":56000,
"forward_log_moneyness":-0.09310128004521019,
"implied_volatility":0.6139390663443947,
"delta":0.6699455675624535,
"gamma":1.1898860391297508e-05,
"interest_rate":0.07893579039372686,
"current_spot":58026.017808387805
},
{
"strike":57000,
"forward_log_moneyness":-0.07540170294580928,
"implied_volatility":0.6138979305280258,
"delta":0.6576332950522212,
"gamma":1.2070714701677199e-05,
"interest_rate":0.07893579039372686,
"current_spot":58026.017808387805
},
{
"strike":58000,
"forward_log_moneyness":-0.05800996023394011,
"implied_volatility":0.6139459269932925,
"delta":0.6453761274158021,
"gamma":1.2226581595314319e-05,
"interest_rate":0.07893579039372686,
"current_spot":58026.017808387805
},
{
"strike":59000,
"forward_log_moneyness":-0.04091552687464012,
"implied_volatility":0.6140782804565034,
"delta":0.6331914317601564,
"gamma":1.2366651470527807e-05,
"interest_rate":0.07893579039372686,
"current_spot":58026.017808387805
},
{
"strike":60000,
"forward_log_moneyness":-0.024108408558258895,
"implied_volatility":0.6142904063973817,
"delta":0.6210953673802289,
"gamma":1.249119018930199e-05,
"interest_rate":0.07893579039372686,
"current_spot":58026.017808387805
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-06-13T04:00:00.000Z",
"time_to_expiry":0.7500000000000003,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.11249884947773944,
"implied_volatility":0.614668861882507,
"delta":0.683495787816168,
"gamma":1.1524029755017686e-05,
"interest_rate":0.07864230481683343,
"current_spot":58026.017808387805
},
{
"strike":56000,
"forward_log_moneyness":-0.09448034397506103,
"implied_volatility":0.6145683199194618,
"delta":0.6713460939263843,
"gamma":1.1707086753871273e-05,
"interest_rate":0.07864230481683343,
"current_spot":58026.017808387805
},
{
"strike":57000,
"forward_log_moneyness":-0.07678076687566013,
"implied_volatility":0.6145583243299177,
"delta":0.6592348542754413,
"gamma":1.1874718888264801e-05,
"interest_rate":0.07864230481683343,
"current_spot":58026.017808387805
},
{
"strike":58000,
"forward_log_moneyness":-0.05938902416379095,
"implied_volatility":0.6146340286056104,
"delta":0.6471796933321385,
"gamma":1.202704027127928e-05,
"interest_rate":0.07864230481683343,
"current_spot":58026.017808387805
},
{
"strike":59000,
"forward_log_moneyness":-0.04229459080449097,
"implied_volatility":0.6147907822130672,
"delta":0.6351970995458986,
"gamma":1.2164242469555207e-05,
"interest_rate":0.07864230481683343,
"current_spot":58026.017808387805
},
{
"strike":60000,
"forward_log_moneyness":-0.025487472488109737,
"implied_volatility":0.6150241268940602,
"delta":0.6233023992190476,
"gamma":1.2286586374221238e-05,
"interest_rate":0.07864230481683343,
"current_spot":58026.017808387805
}
]
},
{
"value_time":"2024-09-12T10:00:00.000Z",
"expiry":"2025-06-20T11:12:00.000Z",
"time_to_expiry":0.7700000000000004,
"implied_volatilities":[
{
"strike":55000,
"forward_log_moneyness":-0.11386735816756735,
"implied_volatility":0.6152267733678307,
"delta":0.6846884746168493,
"gamma":1.1344824772867716e-05,
"interest_rate":0.07834881923994,
"current_spot":58026.017808387805
},
{
"strike":56000,
"forward_log_moneyness":-0.09584885266488893,
"implied_volatility":0.6151591709630096,
"delta":0.6727298312190746,
"gamma":1.1523265861220935e-05,
"interest_rate":0.07834881923994,
"current_spot":58026.017808387805
},
{
"strike":57000,
"forward_log_moneyness":-0.07814927556548804,
"implied_volatility":0.6151787542649501,
"delta":0.6608113559585814,
"gamma":1.168690527822012e-05,
"interest_rate":0.07834881923994,
"current_spot":58026.017808387805
},
{
"strike":58000,
"forward_log_moneyness":-0.06075753285361886,
"implied_volatility":0.615280792751638,
"delta":0.6489498203211614,
"gamma":1.1835863713596393e-05,
"interest_rate":0.07834881923994,
"current_spot":58026.017808387805
},
{
"strike":59000,
"forward_log_moneyness":-0.043663099494318874,
"implied_volatility":0.6154607539104479,
"delta":0.6371608968558607,
"gamma":1.1970333307951008e-05,
"interest_rate":0.07834881923994,
"current_spot":58026.017808387805
},
{
"strike":60000,
"forward_log_moneyness":-0.026855981177937645,
"implied_volatility":0.615714298833374,
"delta":0.6254591390532908,
"gamma":1.2090570001420336e-05,
"interest_rate":0.07834881923994,
"current_spot":58026.017808387805
}
]
}
],
"result":"success",
"access":{
"access_range":{
"start_timestamp":1262304000000,
"end_timestamp":1924991999000
},
"data_range":{
"start_timestamp":1262304000000,
"end_timestamp":1924991999000
}
}
}