NVDA daily closes from the pre-gap session through mid-June 2023
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-07-26, from NVDA's May 2023 Earnings: The AI Gap.
| session | close_usd | change_pct | cum_vs_pregap_pct |
|---|---|---|---|
| 2023-05-24 | 305.41 | -0.5 | 0 |
| 2023-05-25 | 379.79 | 24.4 | 24.4 |
| 2023-05-26 | 389.24 | 2.5 | 27.4 |
| 2023-05-30 | 401.13 | 3.1 | 31.3 |
| 2023-05-31 | 378.38 | -5.7 | 23.9 |
| 2023-06-01 | 397.74 | 5.1 | 30.2 |
| 2023-06-02 | 393.24 | -1.1 | 28.8 |
| 2023-06-05 | 391.74 | -0.4 | 28.3 |
| 2023-06-06 | 386.54 | -1.3 | 26.6 |
| 2023-06-07 | 374.83 | -3 | 22.7 |
| 2023-06-08 | 385.1 | 2.7 | 26.1 |
| 2023-06-09 | 387.64 | 0.7 | 26.9 |
| 2023-06-12 | 394.97 | 1.9 | 29.3 |
| 2023-06-13 | 410.23 | 3.9 | 34.3 |
| 2023-06-14 | 429.98 | 4.8 | 40.8 |
| 2023-06-15 | 426.46 | -0.8 | 39.6 |
| 2023-06-16 | 427.02 | 0.1 | 39.8 |
- Rows × columns
- 17 × 4
- Period covered
- to
- 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 |
|---|---|---|---|
session |
date | 2023-05-24 to 2023-06-16 | |
close_usd |
number | 305.41 to 429.98 | US dollars |
change_pct |
number | -5.7 to 24.4 | percent |
cum_vs_pregap_pct |
number | 0 to 40.8 | 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
toDate(toTimeZone(window_start, 'America/New_York')) AS et_date,
argMaxIf(toFloat64(close), window_start, (toHour(toTimeZone(window_start, 'America/New_York')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959) AS rth_close
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'NVDA'
AND window_start >= toDateTime('2023-05-23 00:00:00') AND window_start < toDateTime('2023-06-17 00:00:00')
GROUP BY et_date
),
(SELECT any(rth_close) FROM daily WHERE et_date = toDate('2023-05-24')) AS pre_gap_close
SELECT
toString(et_date) AS session,
round(rth_close, 2) AS close_usd,
round(if(prev_close = 0, NULL, (rth_close / prev_close - 1) * 100), 1) AS change_pct,
round((rth_close / pre_gap_close - 1) * 100, 1) AS cum_vs_pregap_pct
FROM (
SELECT et_date, rth_close,
lagInFrame(rth_close) OVER (ORDER BY et_date ASC ROWS BETWEEN 1 PRECEDING AND CURRENT ROW) AS prev_close
FROM daily
)
WHERE et_date >= toDate('2023-05-24')
ORDER BY et_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 analysisNVDA's May 2023 Earnings: The AI Gap
NVDA's ten largest overnight gaps up, 2003-present
series 10×4
→
NVDA options: contracts, trades, call share, and premium by session
series 7×5
→
May 25, 2023, close to close: the semiconductor complex around NVDA's gap
ranking 9×4
→
The trillion-dollar crossing, receipted: first touch and first close above $404.86
scalar 1×9
→
NVDA: May 24, 2023 official close vs May 25 open, the overnight repricing
scalar 1×5
→
NVDA on May 25, 2023: trading the day after the guidance
scalar 1×12
→
See all 2,170 queries →