Twelve months of daily moves: annualized volatility and worst session, eight names
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 Learn Quant Trading From an Open Source Book.
| ticker | annualized_vol_pct | worst_day_pct |
|---|---|---|
| COIN | 68 | 13.34 |
| TSLA | 46.6 | 14.63 |
| NVDA | 36.5 | 6.22 |
| MSFT | 31.5 | 10.02 |
| AAPL | 25.8 | 7.44 |
| KO | 18.8 | 3.96 |
| JNJ | 18.4 | 3.65 |
| SPY | 12.7 | 2.69 |
- Rows × columns
- 8 × 3
- 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 |
|---|---|---|---|
ticker |
text | 8 distinct values (AAPL, COIN, JNJ…) | |
annualized_vol_pct |
number | 12.7 to 68 | percent |
worst_day_pct |
number | 2.69 to 14.63 | 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 daily AS (
SELECT ticker,
toDate(toTimeZone(window_start, 'America/New_York')) AS session,
argMax(close, window_start) AS session_close
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('SPY', 'KO', 'JNJ', 'MSFT', 'AAPL', 'NVDA', 'TSLA', 'COIN')
AND toDate(toTimeZone(window_start, 'America/New_York')) >= toDate('2025-08-01')
AND toDate(toTimeZone(window_start, 'America/New_York')) <= toDate('2026-07-31')
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959
GROUP BY ticker, session
),
rets AS (
SELECT ticker,
toFloat64(session_close) AS close_px,
toFloat64(lagInFrame(session_close) OVER (PARTITION BY ticker ORDER BY session)) AS prev_close
FROM daily
)
SELECT ticker,
round(stddevSamp(close_px / prev_close - 1) * sqrt(252) * 100, 1) AS annualized_vol_pct,
round(abs(min(close_px / prev_close - 1)) * 100, 2) AS worst_day_pct
FROM rets
WHERE prev_close > 0
GROUP BY ticker
ORDER BY annualized_vol_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 analysisLearn Quant Trading From an Open Source Book
US tickers trading in a June week, and how many still traded in June 2026
ranking 11×4
→
Average distance from one session's close to the next session's open, monthly
series 24×4
→
Average quoted spread by ET half hour: AAPL and KO, Friday July 17, 2026
series 16×3
→
When market headlines publish, by New York clock hour
ranking 24×2
→
Growth of one dollar: holding all year vs holding only November through April
ranking 21×3
→
S&P 500 tracker: May to October vs November to April, season by season
ranking 21×3
→
See all 2,170 queries →