The whole US tape ranked by June 2026 regular-hours dollar volume
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.
| ticker | regular_hours_dollar_bn | pct_of_leader | is_nvda |
|---|---|---|---|
| MU | 995.7 | 100 | 0 |
| SPY | 771.5 | 77.5 | 0 |
| QQQ | 672.8 | 67.6 | 0 |
| NVDA | 523 | 52.5 | 1 |
| SNDK | 381.6 | 38.3 | 0 |
| TSLA | 342.7 | 34.4 | 0 |
| MRVL | 302.7 | 30.4 | 0 |
| INTC | 272.4 | 27.4 | 0 |
| AAPL | 270 | 27.1 | 0 |
| MSFT | 268.6 | 27 | 0 |
| AMD | 264.9 | 26.6 | 0 |
| SOXL | 239.9 | 24.1 | 0 |
- Rows × columns
- 12 × 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 | 12 distinct values (AAPL, AMD, INTC…) | |
regular_hours_dollar_bn |
number | 239.9 to 995.7 | |
pct_of_leader |
number | 24.1 to 100 | percent |
is_nvda |
number | 0 to 1 |
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,
round(sum(toFloat64(volume) * toFloat64(close)) / 1e9, 1) AS regular_hours_dollar_bn,
round(100 * sum(toFloat64(volume) * toFloat64(close)) / max(sum(toFloat64(volume) * toFloat64(close))) OVER (), 1) AS pct_of_leader,
toUInt8(ticker = 'NVDA') AS is_nvda
FROM global_markets.delayed_stocks_minute_aggs
WHERE window_start >= toDateTime('2026-06-01 00:00:00') AND window_start < toDateTime('2026-07-01 00:00:00')
AND (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199
AND ticker NOT IN ('SPCX')
GROUP BY ticker
ORDER BY regular_hours_dollar_bn DESC
LIMIT 12
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 trailing six months, recomputed live: turnover, shares, and month return
ranking 6×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 →