Annualized historical volatility over three lookback windows
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-22, from Historical Volatility vs Implied Volatility.
| symbol | hv_20d_pct | hv_60d_pct | hv_252d_pct |
|---|---|---|---|
| TSLA | 33.4 | 57.2 | 46.8 |
| NVDA | 38 | 40.1 | 36.6 |
| MSFT | 57 | 45.9 | 31.8 |
| AAPL | 33.4 | 33 | 25.1 |
| KO | 22 | 24.8 | 18.7 |
| SPY | 13.2 | 13.9 | 12.9 |
- Rows × columns
- 6 × 4
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
symbol |
text | 6 distinct values (AAPL, KO, MSFT…) | |
hv_20d_pct |
number | 13.2 to 57 | percent |
hv_60d_pct |
number | 13.9 to 57.2 | percent |
hv_252d_pct |
number | 12.9 to 46.8 | 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
paths AS
(
SELECT
ticker,
arraySort(x -> tupleElement(x, 1), groupArray((date, toFloat64(close)))) AS path
FROM global_markets.stocks_daily_aggs
WHERE ticker IN ('AAPL', 'KO', 'MSFT', 'NVDA', 'SPY', 'TSLA')
AND date >= today() - 500
AND date < today()
GROUP BY ticker
HAVING count() >= 300
),
log_returns AS
(
SELECT
ticker,
arrayMap(i -> log(tupleElement(path[i + 1], 2) / tupleElement(path[i], 2)),
range(1, length(path))) AS r
FROM paths
)
SELECT
ticker AS symbol,
round(100 * sqrt(252) * arrayReduce('stddevSamp', arraySlice(r, -20)), 1) AS hv_20d_pct,
round(100 * sqrt(252) * arrayReduce('stddevSamp', arraySlice(r, -60)), 1) AS hv_60d_pct,
round(100 * sqrt(252) * arrayReduce('stddevSamp', arraySlice(r, -252)), 1) AS hv_252d_pct
FROM log_returns
ORDER BY hv_252d_pct DESC
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 analysisHistorical Volatility vs Implied Volatility
AAPL realized volatility: 20-session against 60-session lookback
series 72×3
→
SPY: monthly implied volatility against the next month's realized volatility
series 18×4
→
Average implied volatility against next-month realized volatility, by name
table 6×5
→
Implied volatility beside the movement each stock actually delivered over the prior 30 sessions
ranking 11×4
→
At-the-money implied volatility, eleven familiar tickers (July 28, 2026)
ranking 11×2
→
Share of sessions with an inverted curve: front band above the 91-180 day band, twelve months to July 31, 2026
ranking 10×4
→
See all 2,170 queries →