STRASMORE/EXPLORE 2,170 QUERIES 22Y EQUITIES · 12Y OPTIONS

2,170 answered market questions

every one with its exact SQL, its result and the date it was computed · free, no signup

IV Rank vs IV Percentile: Formulas Explained
IV rank vs IV percentile, eight liquid names, 52 week lookbacktable · 2026-08-22 · 8×5 The same session scored at five different lookback windowsranking · 2026-08-22 · 5×4Preview: 5 ranked values, smallest first. Current, 52 week low and 52 week high ATM IV for each nametable · 2026-08-22 · 8×6 AAPL at the money implied volatility, weekly, trailing 52 weeksseries · 2026-08-22 · 53×5Preview: a 16-point series, ending higher. One stock, one session, three definitions of the IV inputtable · 2026-08-22 · 3×6
IV rank vs IV percentile, eight liquid names, 52 week lookback

IV rank vs IV percentile, eight liquid names, 52 week lookback

most recentas of table 8×5read in context →
IV rank vs IV percentile, eight liquid names, 52 week lookback — 8 rows by 5 columns, computed from US exchange, SIP and OPRA data.
symboliv_rankiv_percentilegapas_of_label
AAPL21.945.523.6Aug 19, 2026
AMZN11.12311.9Aug 19, 2026
NVDA31.341.510.2Aug 19, 2026
MSFT21.1308.9Aug 19, 2026
QQQ25.232.47.2Aug 19, 2026
TSLA13.77.16.6Aug 19, 2026
SPY59.54.5Aug 19, 2026
KO38.737.21.5Aug 19, 2026
the exact SQL behind every number
WITH daily AS
(
    SELECT
        underlying_symbol                        AS symbol,
        date,
        avg(toFloat64(implied_volatility)) * 100 AS atm_iv
    FROM global_markets.options_greeks
    WHERE underlying_symbol IN ('AAPL', 'MSFT', 'NVDA', 'AMZN', 'TSLA', 'SPY', 'QQQ', 'KO')
      AND date >= today() - 371
      AND iv_converged = 1
      AND volume > 0
      AND days_to_expiry BETWEEN 20 AND 45
      AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.05
    GROUP BY symbol, date
),
latest AS
(
    SELECT
        symbol,
        argMax(atm_iv, date) AS iv_now,
        max(date)            AS as_of
    FROM daily
    GROUP BY symbol
)
SELECT
    d.symbol AS symbol,
    round(100 * (l.iv_now - min(d.atm_iv)) / nullIf(max(d.atm_iv) - min(d.atm_iv), 0), 1) AS iv_rank,
    round(100 * countIf(d.atm_iv < l.iv_now) / count(), 1)                                AS iv_percentile,
    round(abs(iv_rank - iv_percentile), 1)                                                AS gap,
    formatDateTime(any(l.as_of), '%b %e, %Y')                                             AS as_of_label
FROM daily AS d
INNER JOIN latest AS l ON l.symbol = d.symbol
GROUP BY d.symbol, l.iv_now
ORDER BY gap DESC
$