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: July 1, 2026, The Day in Numbers.
| ticker | leaderboard | dollar_volume_bn | dollar_value_m | shares_m | pct_of_board_leader |
|---|---|---|---|---|---|
| MU | by dollars traded | 42.94 | None | 40.6 | 100 |
| SPY | by dollars traded | 27.76 | None | 37.2 | 64.6 |
| QQQ | by dollars traded | 25.24 | None | 34.7 | 58.8 |
| META | by dollars traded | 22.72 | None | 36.9 | 52.9 |
| NVDA | by dollars traded | 21.73 | None | 110.4 | 50.6 |
| SNDK | by dollars traded | 18.38 | None | 8.9 | 42.8 |
| SOXS | by shares traded | 2.05 | None | 553.1 | 100 |
| TZA | by shares traded | 0.87 | 867 | 230.4 | 41.7 |
| BITO | by shares traded | 1.84 | None | 227.1 | 41.1 |
| LHAI | by shares traded | 0.32 | 319 | 189.8 | 34.3 |
- 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 (BITO, LHAI, META…) | |
leaderboard |
text | 2 distinct values (by dollars traded, by shares traded) | |
dollar_volume_bn |
number | 0.32 to 42.94 | count |
dollar_value_m |
number | 319 to 867 | 2 of 10 rows populated |
shares_m |
number | 8.9 to 553.1 | count |
pct_of_board_leader |
number | 34.3 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.
Run it yourself
This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.
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-07-01 13:30:00' AND window_start < '2026-07-01 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-07-01 13:30:00' AND window_start < '2026-07-01 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