STRASMORE/EXPLORE 2,170 QUERIES

Where a 30% reading sits in each ticker's own two-year distribution

Answered against 22 years of US equities and 12 years of US options data and published with the query that produced it. This result is stored as of 2026-08-02, from Is 30% IV High? It Depends on the Ticker.

as of table 8×6read in context →
Where a 30% reading sits in each ticker's own two-year distribution — 8 rows by 6 columns, computed from US exchange, SIP and OPRA data.
symbolsample_sizep10_iv_pctmedian_iv_pctp90_iv_pctpct_of_days_below_30
SPY5001315.320.399
KO50015.418.321.899.6
MSFT50019.225.136.677.2
AAPL50021.126.330.887
NVDA50035.744.4590
TSLA50044.653.369.50
COIN50055.469.781.40
MSTR50053.875.7104.60
Rows × columns
8 × 6
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for Where a 30% reading sits in each ticker's own two-year distribution, derived from the stored result.
ColumnTypeRangeNotes
symbol text 8 distinct values (AAPL, COIN, KO…)
sample_size number every row is 500
p10_iv_pct number 13 to 55.4 percent
median_iv_pct number 15.3 to 75.7 percent
p90_iv_pct number 20.3 to 104.6 percent
pct_of_days_below_30 number 0 to 99.6 percent

Computed from Strasmore's warehouse of US exchange, SIP and OPRA market data. Equity prices are delayed; options greeks and implied volatility are end-of-day. This result is stored, not recomputed on load — it is exactly the numbers that were returned on , and the query below is what returned them.

the exact SQL behind every number
WITH atm AS (
    SELECT underlying_symbol AS symbol,
           date,
           avg(implied_volatility) * 100 AS iv_pct
    FROM global_markets.options_greeks
    WHERE underlying_symbol IN ('SPY', 'KO', 'AAPL', 'MSFT', 'NVDA', 'TSLA', 'COIN', 'MSTR')
      AND date >= toDate('2024-08-01')
      AND date <= toDate('2026-07-31')
      AND iv_converged = 1
      AND volume > 0
      AND underlying_close > 0
      AND days_to_expiry BETWEEN 20 AND 45
      AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.05
    GROUP BY symbol, date
)
SELECT symbol,
       count() AS sample_size,
       round(quantileDeterministic(0.1)(iv_pct, cityHash64(toString(date))), 1) AS p10_iv_pct,
       round(quantileDeterministic(0.5)(iv_pct, cityHash64(toString(date))), 1) AS median_iv_pct,
       round(quantileDeterministic(0.9)(iv_pct, cityHash64(toString(date))), 1) AS p90_iv_pct,
       round(100 * countIf(iv_pct < 30) / count(), 1) AS pct_of_days_below_30
FROM atm
GROUP BY symbol
HAVING count() >= 100
ORDER BY median_iv_pct

Run your own version of this

The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.

More from this analysisIs 30% IV High? It Depends on the Ticker
IV rank against IV percentile: the latest reading inside each ticker's 52-week range table 8×6 Implied volatility band against the move the underlying made the next session table 5×5 Monthly median 30-day implied volatility: index ETF, staple, and chipmaker series 24×5 Where IV percentile sits furthest above IV rank, latest session table 12×6 The same reading against each name's own 52-week implied volatility range (July 28, 2026) table 11×5 How the screened universe distributes across IV rank, latest session table 9×7 See all 2,170 queries →