Volatility thirds: median return, and the range from worst to best name in each
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 The Low-Volatility Anomaly.
| vol_group | median_vol_pct | median_return_pct | worst_return_pct | best_return_pct | range_pct |
|---|---|---|---|---|---|
| 1. Calmest third | 19.1 | 24.1 | -13 | 86.1 | 99 |
| 2. Middle third | 25.1 | 23 | -3.4 | 81.7 | 85 |
| 3. Wildest third | 44.3 | 54.4 | -21.5 | 195.6 | 217 |
- Rows × columns
- 3 × 6
- 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 |
|---|---|---|---|
vol_group |
text | 3 distinct values | |
median_vol_pct |
number | 19.1 to 44.3 | percent |
median_return_pct |
number | 23 to 54.4 | percent |
worst_return_pct |
number | -21.5 to -3.4 | percent |
best_return_pct |
number | 81.7 to 195.6 | percent |
range_pct |
number | 85 to 217 | 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 d AS (
SELECT ticker,
toDate(toTimeZone(window_start, 'America/New_York')) AS dt,
argMax(toFloat64(close), toTimeZone(window_start, 'America/New_York')) AS c
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('SPY','KO','JNJ','PG','PEP','WMT','MCD','MO','VZ','XOM','JPM','HD','COST','UNH','MRK','LLY','HON','LMT','CAT','TXN','ORCL','NVDA','TSLA','AMD','NFLX')
AND window_start >= now() - INTERVAL 800 DAY
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959
GROUP BY ticker, dt
),
r AS (
SELECT ticker, dt,
c / lagInFrame(c) OVER (PARTITION BY ticker ORDER BY dt) - 1 AS ret
FROM d
),
pername AS (
SELECT ticker,
stddevSamp(ret) * sqrt(252) * 100 AS vol,
(exp(sum(log(1 + ret))) - 1) * 100 AS tr
FROM r
WHERE ret IS NOT NULL AND ret > -0.5 AND ret < 0.5
GROUP BY ticker
),
ranked AS (
SELECT ticker, vol, tr, ntile(3) OVER (ORDER BY vol) AS bucket FROM pername
)
SELECT multiIf(bucket = 1, '1. Calmest third', bucket = 2, '2. Middle third', '3. Wildest third') AS vol_group,
round(median(vol), 1) AS median_vol_pct,
round(median(tr), 1) AS median_return_pct,
round(min(tr), 1) AS worst_return_pct,
round(max(tr), 1) AS best_return_pct,
round(max(tr) - min(tr), 0) AS range_pct
FROM ranked
GROUP BY bucket
ORDER BY bucket
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 analysisThe Low-Volatility Anomaly
Growth of $100: a calm name (KO), the market (SPY), a wild name (NVDA), weekly
series 115×4
→
Annualized volatility vs total return, 25 large caps, calmest to wildest (~2 years)
ranking 25×3
→
The calmest large caps: annualized realized volatility over the past year, lowest first
ranking 15×2
→
Maximum drawdown of the calmest names: the worst peak-to-trough fall over the past year
ranking 8×2
→
Where IV percentile sits furthest above IV rank, latest session
table 12×6
→
How the screened universe distributes across IV rank, latest session
table 9×7
→
See all 2,170 queries →