Top 6 by dollars traded, top 4 by shares traded: July 29 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-08-01, from Market Recap: July 29, 2026, The Day in Numbers.
| leaderboard | ticker | dollar_volume_bn | shares_m | implied_avg_price |
|---|---|---|---|---|
| by dollars traded | MU | 44.99 | 57.8 | 778.37 |
| by dollars traded | SPY | 42.29 | 57.6 | 734.2 |
| by dollars traded | QQQ | 32.45 | 48.5 | 669.07 |
| by dollars traded | NVDA | 22.26 | 115.6 | 192.56 |
| by dollars traded | SNDK | 22.02 | 21 | 1048.57 |
| by dollars traded | AAPL | 13.99 | 41 | 341.22 |
| by shares traded | SNXX | 1.27 | 173.4 | 7.32 |
| by shares traded | SOFI | 2.64 | 172.9 | 15.27 |
| by shares traded | GSUN | 0.05 | 168.4 | 0.3 |
| by shares traded | BITO | 1.19 | 136.7 | 8.71 |
- 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 (AAPL, BITO, GSUN…) | |
dollar_volume_bn |
number | 0.05 to 44.99 | count |
shares_m |
number | 21 to 173.4 | count |
implied_avg_price |
number | 0.3 to 1,048.57 | 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.
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 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-29 13:30:00' AND window_start < '2026-07-29 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-29 13:30:00' AND window_start < '2026-07-29 20:00:00'
AND ticker NOT IN ('SPCX')
GROUP BY ticker
ORDER BY shares_m DESC
LIMIT 4
)
ORDER BY leaderboard, if(leaderboard = 'by shares traded', shares_m, dollar_volume_bn) DESC