Top 6 by dollars traded, top 4 by shares traded: July 10 regular hours
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 Market Recap: July 10, 2026, The Day in Numbers.
| leaderboard | ticker | dollar_volume_bn | shares_m | implied_avg_price |
|---|---|---|---|---|
| by dollars traded | NVDA | 26.56 | 127.4 | 208.48 |
| by dollars traded | SPY | 26.29 | 34.9 | 753.3 |
| by dollars traded | MU | 25.9 | 26.5 | 977.36 |
| by dollars traded | META | 22.82 | 34.1 | 669.21 |
| by dollars traded | SKHYV | 18.03 | 105 | 171.71 |
| by dollars traded | QQQ | 17.15 | 23.7 | 723.63 |
| by shares traded | BITO | 2.35 | 270.3 | 8.69 |
| by shares traded | SOXS | 1.84 | 445 | 4.13 |
| by shares traded | TZA | 0.84 | 209.6 | 4.01 |
| by shares traded | DFNS | 0.02 | 188.9 | 0.11 |
- Rows × columns
- 10 × 5
- 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 |
|---|---|---|---|
leaderboard |
text | 2 distinct values (by dollars traded, by shares traded) | |
ticker |
text | 10 distinct values (BITO, DFNS, META…) | |
dollar_volume_bn |
number | 0.02 to 26.56 | count |
shares_m |
number | 23.7 to 445 | count |
implied_avg_price |
number | 0.11 to 977.36 | US dollars |
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 leaderboard, ticker, dollar_volume_bn, shares_m,
round(1000 * dollar_volume_bn / shares_m, 2) AS implied_avg_price
FROM (
SELECT
'by dollars traded' AS leaderboard,
ticker,
round(sum(toFloat64(close) * toFloat64(volume)) / 1e9, 2) AS dollar_volume_bn,
round(sum(toFloat64(volume)) / 1e6, 1) AS shares_m
FROM global_markets.delayed_stocks_minute_aggs
WHERE window_start >= '2026-07-10 13:30:00' AND window_start < '2026-07-10 20:00:00'
AND ticker NOT IN ('SPCX')
GROUP BY ticker
ORDER BY dollar_volume_bn DESC
LIMIT 6
UNION ALL
SELECT
'by shares traded' AS leaderboard,
ticker,
round(sum(toFloat64(close) * toFloat64(volume)) / 1e9, 2) AS dollar_volume_bn,
round(sum(toFloat64(volume)) / 1e6, 1) AS shares_m
FROM global_markets.delayed_stocks_minute_aggs
WHERE window_start >= '2026-07-10 13:30:00' AND window_start < '2026-07-10 20:00:00'
AND ticker NOT IN ('SPCX')
GROUP BY ticker
ORDER BY shares_m DESC
LIMIT 4
)
ORDER BY leaderboard, dollar_volume_bn DESC
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 analysisMarket Recap: July 10, 2026, The Day in Numbers
The eleven SPDR sector ETFs: July 10 close vs July 9 close, regular hours
table 11×5
→
Ten names that defined the session: gap, intraday, close, dollars, July 10
table 10×8
→
NVDA and META in the news feed on July 10: every company-named headline
table 5×3
→
SPY / QQQ / DIA / IWM: July 10 vs the July 9 close, regular hours
table 4×10
→
SPY / QQQ / NVDA / META / MU / SNDK / AVGO: RTH median quoted spread in basis points
ranking 7×2
→
2026's five largest US listings by dollars raised
ranking 5×3
→
See all 2,170 queries →