Vol-of-Vol Ranking
get_vol_of_volVol-of-Vol Index: answers "how unstable is this name's volatility itself?" For each US optionable equity, per trading day: the coefficient of variation of its ~30-day implied vol (iv_vov) and 20-day realized vol (hv_vov) over the trailing month (std/mean of the last 21 observations), the underlying trailing mean and std, and a daily cross-sectional ranking of the most vol-unstable names. Rows update intraday and settle after the close (is_final=1).
High vol-of-vol names are where vega risk is most treacherous (and where vol dislocations appear); low vol-of-vol names have sticky, well-behaved vol surfaces.
Requires an Alphanume Pro API key. A 403 PRO_SUBSCRIPTION_REQUIRED or DATE_RANGE_RESTRICTED error means the key's plan does not cover the request -- it does not mean the data is missing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Exact date, YYYY-MM-DD. Cannot be combined with the date range parameters. | |
| ticker | No | Ticker symbol filter, e.g. 'AAPL'. Case-insensitive. | |
| date_gt | No | Start of date range, exclusive (YYYY-MM-DD). | |
| date_lt | No | End of date range, exclusive (YYYY-MM-DD). | |
| date_gte | No | Start of date range, inclusive (YYYY-MM-DD). | |
| date_lte | No | End of date range, inclusive (YYYY-MM-DD). | |
| max_rows | No | Maximum data rows to return to the client (applied after the API responds). Default 500. Use 0 for no cap. Prefer narrowing with date/ticker filters over raising this. | |
| max_hv_vov | No | Only rows with hv_vov <= this value. | |
| max_iv_vov | No | Only rows with iv_vov <= this value. | |
| min_hv_vov | No | Only rows with hv_vov >= this value (>= 0). | |
| min_iv_vov | No | Only rows with iv_vov >= this value (>= 0). | |
| only_final | No | If true, return only settled end-of-day rows (is_final=1). By default the latest value is returned, which intraday may be provisional. | |
| min_hv_vov_rank | No | Only rows whose realized vol-of-vol sits at or above this cross-sectional percentile for the day, in [0, 1]. | |
| min_iv_vov_rank | No | Only rows whose implied vol-of-vol sits at or above this cross-sectional percentile for the day, in [0, 1]. |