May 25, 2023, close to close: the semiconductor complex around NVDA's gap
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.
| ticker | may24_close | may25_close | day_change_pct |
|---|---|---|---|
| NVDA | 305.41 | 379.79 | 24.4 |
| TSM | 90.14 | 100.94 | 12 |
| AMD | 108.25 | 120.32 | 11.2 |
| AVGO | 679.33 | 728.8 | 7.3 |
| MU | 66.54 | 69.6 | 4.6 |
| MSFT | 313.85 | 325.96 | 3.9 |
| QQQ | 331.65 | 339.74 | 2.4 |
| SPY | 411.09 | 414.63 | 0.9 |
| INTC | 28.98 | 27.41 | -5.4 |
- Rows × columns
- 9 × 4
- 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 |
|---|---|---|---|
ticker |
text | 9 distinct values (AMD, AVGO, INTC…) | |
may24_close |
number | 28.98 to 679.33 | US dollars |
may25_close |
number | 27.41 to 728.8 | US dollars |
day_change_pct |
number | -5.4 to 24.4 | 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
SELECT
ticker,
may24_close,
may25_close,
round((may25_close / may24_close - 1) * 100, 1) AS day_change_pct
FROM (
SELECT
ticker,
round(argMaxIf(toFloat64(close), window_start,
toDate(toTimeZone(window_start, 'America/New_York')) = toDate('2023-05-24') AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959), 2) AS may24_close,
round(argMaxIf(toFloat64(close), window_start,
toDate(toTimeZone(window_start, 'America/New_York')) = toDate('2023-05-25') AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959), 2) AS may25_close
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('NVDA', 'AMD', 'TSM', 'AVGO', 'MU', 'INTC', 'MSFT', 'SPY', 'QQQ')
AND window_start >= toDateTime('2023-05-24 00:00:00') AND window_start < toDateTime('2023-05-26 00:00:00')
GROUP BY ticker
)
ORDER BY day_change_pct DESC
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 daily closes from the pre-gap session through mid-June 2023
series 17×4
→
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
→
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 →