Expected Move From Implied Volatility
NVDA after its late-May 2023 report: implied volatility and where the stock wentseries ·
2026-08-22 · 12×6
Apple: implied volatility and the expected move at six horizons, one sessiontable ·
2026-08-22 · 6×7
Implied vs realized: median 30-day expected move and what six stocks did nexttable ·
2026-08-22 · 6×5
Implied Volatility vs Vega: The Difference
Where vega peaks: AAPL vega and IV across strikes, 20 to 45 days out (July 2026)ranking ·
2026-08-13 · 12×4
Same underlying, same IV, rising vega: AAPL by days to expiry (July 2026)ranking ·
2026-08-13 · 14×4
Contract days behind the weekly IV series, by monthseries ·
2026-08-13 · 12×5
One input, three levels: weekly average IV for AAPL, NVDA and KO (20 to 45 days out)series ·
2026-08-13 · 53×5
NVDA after its late-May 2023 report: implied volatility and where the stock went
NVDA after its late-May 2023 report: implied volatility and where the stock went
| date | session_label | iv_pct | expected_move_pct | iv_pct_of_report_day | move_from_report_day_pct |
|---|---|---|---|---|---|
| 2023-05-24 | May 24 | 115.1 | 30.54 | 100 | 0 |
| 2023-05-25 | May 25 | 49.4 | 14.48 | 42.9 | -0.7 |
| 2023-05-26 | May 26 | 46.2 | 13.41 | 40.1 | 2.53 |
| 2023-05-30 | May 30 | 48.8 | 14.23 | 42.4 | 4.57 |
| 2023-05-31 | May 31 | 46.6 | 13.35 | 40.4 | -0.16 |
| 2023-06-01 | Jun 1 | 46.4 | 13.85 | 40.3 | 4.99 |
| 2023-06-02 | Jun 2 | 42.6 | 12.57 | 37 | 3.06 |
| 2023-06-05 | Jun 5 | 41.4 | 12.44 | 36 | 2.47 |
| 2023-06-06 | Jun 6 | 39.2 | 12.24 | 34 | 1.92 |
| 2023-06-07 | Jun 7 | 38.8 | 11.95 | 33.7 | -0.74 |
| 2023-06-08 | Jun 8 | 39.4 | 11.94 | 34.2 | 1.54 |
| 2023-06-09 | Jun 9 | 39.2 | 11.52 | 34.1 | 1.71 |
the exact SQL behind every number
WITH
(SELECT avg(toFloat64(implied_volatility))
FROM global_markets.options_greeks
WHERE underlying_symbol = 'NVDA'
AND date = toDate('2023-05-24')
AND iv_converged = 1
AND volume > 0
AND days_to_expiry BETWEEN 20 AND 45
AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.05) AS iv_report_day,
(SELECT avg(toFloat64(underlying_close))
FROM global_markets.options_greeks
WHERE underlying_symbol = 'NVDA'
AND date = toDate('2023-05-24')
AND iv_converged = 1
AND volume > 0
AND days_to_expiry BETWEEN 20 AND 45
AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.05) AS px_report_day
SELECT date,
formatDateTime(date, '%b %e') AS session_label,
round(100 * avg(toFloat64(implied_volatility)), 1) AS iv_pct,
round(100 * avg(toFloat64(implied_volatility)) * sqrt(avg(days_to_expiry) / 365), 2) AS expected_move_pct,
round(100 * avg(toFloat64(implied_volatility)) / iv_report_day, 1) AS iv_pct_of_report_day,
round(100 * (avg(toFloat64(underlying_close)) / px_report_day - 1), 2) AS move_from_report_day_pct
FROM global_markets.options_greeks
WHERE underlying_symbol = 'NVDA'
AND date BETWEEN toDate('2023-05-24') AND toDate('2023-06-09')
AND iv_converged = 1
AND volume > 0
AND days_to_expiry BETWEEN 20 AND 45
AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.05
GROUP BY date
HAVING count() >= 3
ORDER BY date
More from this analysisExpected Move From Implied Volatility
Apple: implied volatility and the expected move at six horizons, one session
table 6×7
→
Implied vs realized: median 30-day expected move and what six stocks did next
table 6×5
→
One input, three levels: weekly average IV for AAPL, NVDA and KO (20 to 45 days out)
series 53×5
→
NVDA front band vs 91-180 day band: median near-the-money IV per session, Feb 10 to Mar 14, 2025
series 24×4
→
See all 2,170 queries →