Median implied volatility on near-the-money AAPL calls, by month
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-05, from How to Calculate Covered Call Returns.
| month | median_iv_pct |
|---|---|
| 2024-08 | 23.3 |
| 2024-09 | 24.8 |
| 2024-10 | 26.4 |
| 2024-11 | 19.8 |
| 2024-12 | 18.5 |
| 2025-01 | 26.3 |
| 2025-02 | 22.8 |
| 2025-03 | 29.3 |
| 2025-04 | 41.6 |
| 2025-05 | 30.6 |
| 2025-06 | 27.5 |
| 2025-07 | 28.7 |
| 2025-08 | 24.2 |
| 2025-09 | 23.3 |
| 2025-10 | 27.2 |
| 2025-11 | 23.2 |
| 2025-12 | 20.8 |
| 2026-01 | 26.9 |
| 2026-02 | 26.2 |
| 2026-03 | 27.7 |
| 2026-04 | 27.7 |
| 2026-05 | 23.5 |
| 2026-06 | 25.3 |
| 2026-07 | 28.4 |
- Rows × columns
- 24 × 2
- 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 |
|---|---|---|---|
month |
text | 24 distinct values (2024-08, 2024-09, 2024-10…) | |
median_iv_pct |
number | 18.5 to 41.6 | 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.
Run it yourself
This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.
SELECT
formatDateTime(toStartOfMonth(date), '%Y-%m') AS month,
round(100 * quantileDeterministic(0.5)(toFloat64(implied_volatility), cityHash64(ticker)), 1) AS median_iv_pct
FROM global_markets.options_greeks
WHERE underlying_symbol = 'AAPL'
AND date >= '2024-08-01'
AND date < '2026-08-01'
AND iv_converged = 1
AND volume > 0
AND delta > 0
AND days_to_expiry BETWEEN 20 AND 45
AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.05
GROUP BY toStartOfMonth(date)
ORDER BY toStartOfMonth(date)