STRASMORE/EXPLORE 2,170 QUERIES

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.

as of ranking 6×4read in context →
Annualized historical volatility over three lookback windows — 6 rows by 4 columns, computed from US exchange, SIP and OPRA data.
symbolhv_20d_pcthv_60d_pcthv_252d_pct
TSLA33.457.246.8
NVDA3840.136.6
MSFT5745.931.8
AAPL33.43325.1
KO2224.818.7
SPY13.213.912.9
Rows × columns
6 × 4
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 Annualized historical volatility over three lookback windows, derived from the stored result.
ColumnTypeRangeNotes
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 →