STRASMORE/EXPLORE 2,170 QUERIES

NVDA around its 10-for-1 split: regular-session open and close, last pre-split day vs first post-split day

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 What Is a Stock Split? Ratios and Mechanics.

as of series 2×3read in context →
NVDA around its 10-for-1 split: regular-session open and close, last pre-split day vs first post-split day — 2 rows by 3 columns, computed from US exchange, SIP and OPRA data.
sessionregular_openregular_close
2024-06-071197.71208.65
2024-06-10120.37121.65
Rows × columns
2 × 3
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 around its 10-for-1 split: regular-session open and close, last pre-split day vs first post-split day, derived from the stored result.
ColumnTypeRangeNotes
session date 2024-06-07 to 2024-06-10
regular_open number 120.37 to 1,197.7 US dollars
regular_close number 121.65 to 1,208.65 US dollars

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 toString(day) AS session,
       round(argMinIf(toFloat64(open), window_start, rth), 2) AS regular_open,
       round(argMaxIf(toFloat64(close), window_start, rth), 2) AS regular_close
FROM (
    SELECT toDate(toTimeZone(window_start, 'America/New_York')) AS day,
           window_start, open, close,
           toTimeZone(window_start, 'America/New_York') >= toDateTime(concat(toString(toDate(toTimeZone(window_start, 'America/New_York'))), ' 09:30:00'), 'America/New_York')
           AND toTimeZone(window_start, 'America/New_York') < toDateTime(concat(toString(toDate(toTimeZone(window_start, 'America/New_York'))), ' 16:00:00'), 'America/New_York') AS rth
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'NVDA'
      AND window_start >= '2024-06-07 04:00:00'
      AND window_start < '2024-06-11 04:00:00'
)
GROUP BY day
ORDER BY day

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 analysisWhat Is a Stock Split? Ratios and Mechanics
Notable US stock splits since 2020: ratio, how the action was recorded, and the next 21 sessions vs SPY table 15×6 Forward vs reverse splits per year, all US-listed securities, 2016 through June 2026 ranking 11×3 Most common forward split ratios, July 2025 through June 2026: whole-number ratios, all US-listed securities ranking 6×2 NVDA trading volume, 20 sessions before vs 20 sessions from its 10-for-1 split (June 10, 2024) ranking 2×4 After the split: median forward returns for 2025's whole-number forward splits vs SPY over the same sessions scalar 1×5 A decade of splits, 2016-2025: forward vs reverse totals and the annual score scalar 1×4 See all 2,170 queries →