Dollar volume and daily range across a large forward split (NVDA, 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-09-20, from How split-adjusted price history works.
| session_date | session_label | turnover_billions | range_pct |
|---|---|---|---|
| 2024-05-28 | May 28 | 74.3 | 4.44 |
| 2024-05-29 | May 29 | 63.97 | 4 |
| 2024-05-30 | May 30 | 53.4 | 5.57 |
| 2024-05-31 | May 31 | 66.95 | 5.27 |
| 2024-06-03 | Jun 3 | 50.41 | 2.61 |
| 2024-06-04 | Jun 4 | 46.85 | 2.19 |
| 2024-06-05 | Jun 5 | 64.7 | 4.07 |
| 2024-06-06 | Jun 6 | 80.28 | 6.01 |
| 2024-06-07 | Jun 7 | 49.84 | 3.04 |
| 2024-06-10 | Jun 10 | 38.26 | 64.82 |
| 2024-06-11 | Jun 11 | 26.91 | 3.42 |
| 2024-06-12 | Jun 12 | 37.51 | 3.44 |
| 2024-06-13 | Jun 13 | 33.78 | 2.04 |
| 2024-06-14 | Jun 14 | 40.79 | 3.43 |
| 2024-06-17 | Jun 17 | 37.79 | 3.17 |
| 2024-06-18 | Jun 18 | 39.91 | 4.16 |
| 2024-06-20 | Jun 20 | 67.67 | 8.59 |
| 2024-06-21 | Jun 21 | 82.96 | 5 |
| 2024-06-24 | Jun 24 | 56.11 | 5.44 |
- Rows × columns
- 19 × 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 |
date | 2024-05-28 to 2024-06-24 | |
session_label |
text | 19 distinct values (Jun 10, Jun 11, Jun 12…) | |
turnover_billions |
number | 26.91 to 82.96 | |
range_pct |
number | 2.04 to 64.82 | 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.
Run it yourself
This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.
SELECT
toString(date) AS session_date,
formatDateTime(date, '%b %e') AS session_label,
round(toFloat64(any(close)) * toFloat64(any(volume)) / 1e9, 2) AS turnover_billions,
round(100 * (toFloat64(any(high)) - toFloat64(any(low)))
/ toFloat64(any(close)), 2) AS range_pct
FROM global_markets.stocks_daily_aggs
WHERE ticker = 'NVDA'
AND date >= '2024-05-28'
AND date <= '2024-06-24'
GROUP BY date
ORDER BY date
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.