Annualized volatility and worst single session, trailing two years
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 ETF Relative Strength and Alpha Attribution.
| etf | annual_vol_pct | worst_day_pct |
|---|---|---|
| XLK | 27.6 | -6.82 |
| GLD | 23.5 | -10.27 |
| XLE | 23.4 | -9.2 |
| QQQ | 22.3 | -6.21 |
| IWM | 21.7 | -6.42 |
| XLF | 17.6 | -7.32 |
| SPY | 16.8 | -5.85 |
| EFA | 16.7 | -6.6 |
| XLV | 16.2 | -5.48 |
| XLU | 15.9 | -5.56 |
- Rows × columns
- 10 × 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 |
|---|---|---|---|
etf |
text | 10 distinct values (EFA, GLD, IWM…) | |
annual_vol_pct |
number | 15.9 to 27.6 | percent |
worst_day_pct |
number | -10.27 to -5.48 | 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,
date,
toFloat64(close) AS px,
lagInFrame(toFloat64(close)) OVER (PARTITION BY ticker ORDER BY date ROWS BETWEEN 1 PRECEDING AND CURRENT ROW) AS prev_px
FROM global_markets.stocks_daily_aggs
WHERE ticker IN ('SPY', 'QQQ', 'IWM', 'XLK', 'XLE', 'XLF', 'XLV', 'XLU', 'GLD', 'EFA')
AND date >= today() - 760
)
SELECT
ticker AS etf,
round(stddevSamp(px / prev_px - 1) * sqrt(252) * 100, 1) AS annual_vol_pct,
round(min(px / prev_px - 1) * 100, 2) AS worst_day_pct
FROM daily
WHERE prev_px > 0
GROUP BY ticker
ORDER BY annual_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 analysisETF Relative Strength and Alpha Attribution
20-session return versus SPY across a nine-fund ETF universe
ranking 9×3
→
Share of each fund's daily variation explained by SPY, trailing two years
ranking 9×2
→
Strongest and weakest sleeve versus SPY, by calendar month
series 13×4
→
When market headlines publish, by New York clock hour
ranking 24×2
→
When headlines actually land: article counts by ET clock hour, July 2026
ranking 24×4
→
A 15% cap and 9% buffer, seen from three entry points
ranking 21×4
→
See all 2,170 queries →