IV vs HV Premium Screener
get_iv_hv_premiumVolatility risk premium screener: answers "are this name's options rich or cheap right now?" For every liquid US optionable equity, per trading day: ~30-day at-the-money implied volatility (iv) vs ~30-day realized volatility (hv), their spread (iv-hv) and ratio (iv/hv), plus daily cross-sectional percentile ranks and z-scores for each measure, option notional volume, and the ATM strike/expiry/spot used. Rows update intraday (is_final=0) and settle after the close (is_final=1).
Use it to find overpriced premium to sell (high iv_hv_ratio / min_ratio_rank near 1),
underpriced options to buy, or to track one ticker's premium history via ticker.
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. | |
| 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_ratio_rank | No | Only rows whose iv/hv ratio sits at or above this cross-sectional percentile for the day, in [0, 1]. 0.95 = the day's richest 5%. | |
| max_iv_hv_ratio | No | Only rows with iv_hv_ratio <= this value (e.g. 0.9 to screen for cheap options). | |
| min_iv_hv_ratio | No | Only rows with iv_hv_ratio >= this value (e.g. 1.5 for names whose options price 50%+ over realized vol). |