NVDA trading volume, 20 sessions before vs 20 sessions from its 10-for-1 split (June 10, 2024)
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.
| phase | sessions | avg_daily_shares_millions | avg_daily_dollars_billions |
|---|---|---|---|
| Last 20 sessions before the split | 20 | 44.1 | 46.9 |
| First 20 sessions from the split | 20 | 292.4 | 37.1 |
- Rows × columns
- 2 × 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 |
|---|---|---|---|
phase |
text | 2 distinct values | |
sessions |
number | every row is 20 | |
avg_daily_shares_millions |
number | 44.1 to 292.4 | count |
avg_daily_dollars_billions |
number | 37.1 to 46.9 |
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 d,
sum(toFloat64(volume)) AS shares,
sum(toFloat64(close) * toFloat64(volume)) AS dollars
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'NVDA'
AND window_start >= '2024-05-08 00:00:00' AND window_start < '2024-07-12 00:00:00'
GROUP BY d
),
ranked AS (
SELECT d, shares, dollars,
d >= toDate('2024-06-10') AS post,
row_number() OVER (PARTITION BY d >= toDate('2024-06-10')
ORDER BY if(d < toDate('2024-06-10'), -toUInt32(d), toUInt32(d))) AS rn
FROM daily
)
SELECT if(post = 0, 'Last 20 sessions before the split', 'First 20 sessions from the split') AS phase,
count() AS sessions,
round(avg(shares) / 1e6, 1) AS avg_daily_shares_millions,
round(avg(dollars) / 1e9, 1) AS avg_daily_dollars_billions
FROM ranked
WHERE rn <= 20
GROUP BY phase, post
ORDER BY post
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
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
→
Notable US stock splits since 2020: ratio, how the action was recorded, and the next 21 sessions vs SPY
table 15×6
→
NVDA around its 10-for-1 split: regular-session open and close, last pre-split day vs first post-split day
series 2×3
→
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 →