Unified options greeks data.
Represents the greeks (risk sensitivities) for an options contract.
Fields
symbol- Unified symboltimestamp- Data timestamp in millisecondsdatetime- ISO 8601 datetime stringdelta- Price sensitivity to underlyinggamma- Delta sensitivity to underlyingtheta- Time decay per dayvega- Sensitivity to volatilityrho- Sensitivity to interest ratebid_size- Bid sizeask_size- Ask sizebid_implied_volatility- Implied volatility from bidask_implied_volatility- Implied volatility from askmark_implied_volatility- Implied volatility from mark pricebid_price- Bid priceask_price- Ask pricemark_price- Mark pricelast_price- Last traded priceunderlying_price- Underlying asset priceinfo- Raw exchange response
Summary
Types
@type t() :: %CCXT.Greeks{ ask_implied_volatility: number() | nil, ask_price: number() | nil, ask_size: number() | nil, bid_implied_volatility: number() | nil, bid_price: number() | nil, bid_size: number() | nil, datetime: String.t() | nil, delta: number() | nil, gamma: number() | nil, info: map() | nil, last_price: number() | nil, mark_implied_volatility: number() | nil, mark_price: number() | nil, rho: number() | nil, symbol: String.t() | nil, theta: number() | nil, timestamp: integer() | nil, underlying_price: number() | nil, vega: number() | nil }
Functions
@spec schema() :: map()
JSON Schema for the Greeks unified type.