The week's heaviest tickers by regular-hours dollar volume: where the newcomer now sits
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 SPCX: The Week It Went Underwater.
| ticker | regular_hours_dollar_bn | pct_of_leader | is_spcx |
|---|---|---|---|
| MU | 164 | 100 | 0 |
| SPY | 137.3 | 83.7 | 0 |
| NVDA | 107.1 | 65.3 | 0 |
| QQQ | 103.4 | 63.1 | 0 |
| SNDK | 88 | 53.7 | 0 |
| TSLA | 69.3 | 42.2 | 0 |
| META | 58.3 | 35.5 | 0 |
| AMD | 58 | 35.4 | 0 |
| AAPL | 50.5 | 30.8 | 0 |
| INTC | 47.9 | 29.2 | 0 |
| SPCX | 41.7 | 25.4 | 1 |
| MSFT | 41.1 | 25.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 | 41.1 to 164 | |
pct_of_leader |
number | 25.1 to 100 | percent |
is_spcx |
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 = 'SPCX') AS is_spcx
FROM global_markets.delayed_stocks_minute_aggs
WHERE window_start >= toDateTime('2026-07-06 00:00:00') AND window_start < toDateTime('2026-07-11 00:00:00')
AND (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199
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 analysisSPCX: The Week It Went Underwater
Every week of the new entity's life: open-to-close return and RTH dollars (entity-bounded)
ranking 5×4
→
FINRA daily short volume during the week: short shares and their off-exchange share
ranking 4×4
→
The symbol's trading history by month: the gap and the new entity's arrival
series 12×5
→
The week's contracts by strike bucket ($20 buckets; tails capped at $80 and $240)
table 9×6
→
Large recent debuts, first month on one ruler: first trade to the day-28 close (ET regular hours)
table 7×8
→
Median quoted spread by session, regular hours (bps of midpoint)
series 5×3
→
See all 2,170 queries →