option_snapshot_greeks_third_order
FreeValueStandardPro
Get a snapshot of third-order Greeks for an option contract: speed, zomma, color, and ultima.
Code Example
rust
let g: Vec<GreeksTick> = tdx.option_snapshot_greeks_third_order(
"SPY", "20241220", "500000", "C"
).await?;python
g = tdx.option_snapshot_greeks_third_order("SPY", "20241220", "500000", "C")go
g, err := client.OptionSnapshotGreeksThirdOrder("SPY", "20241220", "500000", "C")cpp
auto g = client.option_snapshot_greeks_third_order("SPY", "20241220", "500000", "C");Parameters
Parameters are identical to option_snapshot_greeks_all.
symbolstringrequiredUnderlying symbol
expirationstringrequiredExpiration date in
YYYYMMDD formatstrikestringrequiredStrike price as scaled integer
rightstringrequired"C" for call, "P" for putannual_dividendfloatoptionalOverride annual dividend
rate_typestringoptionalInterest rate type
rate_valuefloatoptionalOverride interest rate value
stock_pricefloatoptionalOverride underlying price
versionstringoptionalGreeks calculation version
max_dteintoptionalMaximum days to expiration
strike_rangeintoptionalStrike range filter
min_timestringoptionalMinimum time of day as milliseconds from midnight
use_market_valuebooloptionalUse market value instead of last trade price
Response
implied_volatilityfloatImplied volatility
speedfloatRate of change of gamma w.r.t. underlying price
zommafloatRate of change of gamma w.r.t. volatility
colorfloatRate of change of gamma w.r.t. time
ultimafloatRate of change of vomma w.r.t. volatility
underlying_pricefloatUnderlying price used
datestringDate
ms_of_dayintMilliseconds from midnight
Notes
- Third-order Greeks are primarily used in advanced hedging and risk management scenarios involving large portfolios or exotic strategies.