Volume leaders two ways: top 6 by dollars traded, top 4 by shares traded (one reused-symbol listing excluded pending entity verification)
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: June 30, 2026, The Day in Numbers.
| ticker | leaderboard | dollar_volume_bn | dollar_value_m | shares_m | pct_of_board_leader |
|---|---|---|---|---|---|
| MU | by dollars traded | 37.41 | None | 32.5 | 100 |
| SPY | by dollars traded | 31.84 | None | 42.7 | 85.1 |
| QQQ | by dollars traded | 26.2 | None | 35.7 | 70 |
| SNDK | by dollars traded | 21.19 | None | 9.6 | 56.6 |
| NVDA | by dollars traded | 20.69 | None | 104.3 | 55.3 |
| AMD | by dollars traded | 15.92 | None | 27.9 | 42.6 |
| SOXS | by shares traded | 1.72 | None | 515.5 | 100 |
| YHC | by shares traded | 0.04 | 42 | 340 | 66 |
| BIYA | by shares traded | 0.13 | 133 | 273 | 53 |
| TZA | by shares traded | 0.87 | 866 | 226.6 | 44 |
- Rows × columns
- 10 × 6
- Computed
- Completeness
- Some fields are partly empty — see the columns below
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
ticker |
text | 10 distinct values (AMD, BIYA, MU…) | |
leaderboard |
text | 2 distinct values (by dollars traded, by shares traded) | |
dollar_volume_bn |
number | 0.04 to 37.41 | count |
dollar_value_m |
number | 42 to 866 | 3 of 10 rows populated |
shares_m |
number | 9.6 to 515.5 | count |
pct_of_board_leader |
number | 42.6 to 100 | 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 ticker, leaderboard, dollar_volume_bn, if(dollar_volume_bn < 1, dollar_volume_m, NULL) AS dollar_value_m, shares_m,
round(100 * if(leaderboard = 'by dollars traded', dollar_volume_bn, shares_m)
/ max(if(leaderboard = 'by dollars traded', dollar_volume_bn, shares_m)) OVER (PARTITION BY leaderboard), 1) AS pct_of_board_leader
FROM (
SELECT
'by dollars traded' AS leaderboard,
ticker,
round(sum(toFloat64(close) * toFloat64(volume)) / 1e9, 2) AS dollar_volume_bn,
round(sum(toFloat64(close) * toFloat64(volume)) / 1e6, 0) AS dollar_volume_m,
round(sum(toFloat64(volume)) / 1e6, 1) AS shares_m
FROM global_markets.delayed_stocks_minute_aggs
WHERE window_start >= '2026-06-30 13:30:00' AND window_start < '2026-06-30 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(close) * toFloat64(volume)) / 1e6, 0) AS dollar_volume_m,
round(sum(toFloat64(volume)) / 1e6, 1) AS shares_m
FROM global_markets.delayed_stocks_minute_aggs
WHERE window_start >= '2026-06-30 13:30:00' AND window_start < '2026-06-30 20:00:00'
AND ticker NOT IN ('SPCX')
GROUP BY ticker
ORDER BY shares_m DESC
LIMIT 4
)
ORDER BY leaderboard ASC, if(leaderboard = 'by dollars traded', dollar_volume_bn, shares_m) 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: June 30, 2026, The Day in Numbers
The ten S&P sector funds on June 30: change vs Monday's close, and how far each sat behind the leader
table 10×7
→
Top 5 gainers and top 5 decliners among names with $10M+ traded on June 30 (one reused-symbol listing excluded)
table 10×8
→
The semiconductor and storage names: change vs Monday's close, range, and dollar volume
table 6×10
→
SPY / QQQ / DIA / IWM: June 30 vs the June 29 close, regular hours
table 4×8
→
Crypto-adjacent financials: change vs Monday's close, range, and dollar volume
table 4×10
→
Shares traded per 30-minute bucket, regular hours (billions)
series 13×3
→
See all 2,170 queries →