STRASMORE/EXPLORE 2,170 QUERIES

NVDA after its late-May 2023 report: implied volatility and where the stock went

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 Expected Move From Implied Volatility.

as of series 12×6read in context →
NVDA after its late-May 2023 report: implied volatility and where the stock went — 12 rows by 6 columns, computed from US exchange, SIP and OPRA data.
datesession_labeliv_pctexpected_move_pctiv_pct_of_report_daymove_from_report_day_pct
2023-05-24May 24115.130.541000
2023-05-25May 2549.414.4842.9-0.7
2023-05-26May 2646.213.4140.12.53
2023-05-30May 3048.814.2342.44.57
2023-05-31May 3146.613.3540.4-0.16
2023-06-01Jun 146.413.8540.34.99
2023-06-02Jun 242.612.57373.06
2023-06-05Jun 541.412.44362.47
2023-06-06Jun 639.212.24341.92
2023-06-07Jun 738.811.9533.7-0.74
2023-06-08Jun 839.411.9434.21.54
2023-06-09Jun 939.211.5234.11.71
Rows × columns
12 × 6
Period covered
to
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for NVDA after its late-May 2023 report: implied volatility and where the stock went, derived from the stored result.
ColumnTypeRangeNotes
date date 2023-05-24 to 2023-06-09
session_label text 12 distinct values (Jun 1, Jun 2, Jun 5…)
iv_pct number 38.8 to 115.1 percent
expected_move_pct number 11.52 to 30.54 percent
iv_pct_of_report_day number 33.7 to 100 percent
move_from_report_day_pct number -0.74 to 4.99 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
    (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

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 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 The Tesla $400 May call through its Q1 earnings (Apr 8 - May 6 2026) series 21×5 Near-the-money Tesla May-expiry implied volatility around the print series 21×3 See all 2,170 queries →