The trailing six months, recomputed live: turnover, shares, and month return
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: NVIDIA's Full June 2026, Tick by Tick.
| period_start | rth_dollar_bn | shares_bn | month_return_pct |
|---|---|---|---|
| 2026-01-01 | 441.1 | 2.91 | 0.9 |
| 2026-02-01 | 490.7 | 3.35 | -4.8 |
| 2026-03-01 | 572.5 | 3.56 | -0.5 |
| 2026-04-01 | 511.2 | 2.78 | 13.4 |
| 2026-05-01 | 557.5 | 2.87 | 4.9 |
| 2026-06-01 | 523 | 2.75 | -7.4 |
- Rows × columns
- 6 × 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 |
|---|---|---|---|
period_start |
date | 2026-01-01 to 2026-06-01 | |
rth_dollar_bn |
number | 441.1 to 572.5 | |
shares_bn |
number | 2.75 to 3.56 | count |
month_return_pct |
number | -7.4 to 13.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
toString(toStartOfMonth(toDate(toTimeZone(window_start, 'America/New_York')))) AS period_start,
round(sumIf(toFloat64(close) * toFloat64(volume), (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199) / 1e9, 1) AS rth_dollar_bn,
round(toFloat64(sum(volume)) / 1e9, 2) AS shares_bn,
round((argMaxIf(toFloat64(close), window_start, (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199)
/ argMinIf(toFloat64(open), window_start, (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199) - 1) * 100, 1) AS month_return_pct
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'NVDA'
AND window_start >= toDateTime('2026-01-01 00:00:00') AND window_start < toDateTime('2026-07-01 00:00:00')
GROUP BY period_start
ORDER BY period_start
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: NVIDIA's Full June 2026, Tick by Tick
The whole US tape ranked by June 2026 regular-hours dollar volume
ranking 12×4
→
The spread by session: regular-hours median and time-weighted average (bps)
series 21×5
→
The 21 sessions: regular-hours close, close-over-close change, full-day volume
series 21×5
→
Options session by session: contracts, the call/put split, and the put/call ratio
series 21×7
→
FINRA off-exchange short volume by session: marked-short share and reported volume
series 20×4
→
Where the contracts landed: call and put volume by strike bucket
table 19×5
→
See all 2,170 queries →