STRASMORE/EXPLORE 2,170 QUERIES

Top 6 by dollars traded, top 4 by shares traded: July 30 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 30, 2026, The Day in Numbers.

as of table 10×5read in context →
Top 6 by dollars traded, top 4 by shares traded: July 30 regular hours — 10 rows by 5 columns, computed from US exchange, SIP and OPRA data.
leaderboardtickerdollar_volume_bnshares_mimplied_avg_price
by dollars tradedMU43.2951848.82
by dollars tradedMSFT42.5694.7449.42
by dollars tradedSPY38.6952.4738.36
by dollars tradedQQQ38.2356.1681.46
by dollars tradedSNDK24.7420.11230.85
by dollars tradedNVDA19.63101.1194.16
by shares tradedCYCU0.475440.86
by shares tradedGCTK0.17284.10.6
by shares tradedSXTC0.02214.90.09
by shares tradedSNXX1.45150.69.63
Rows × columns
10 × 5
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for Top 6 by dollars traded, top 4 by shares traded: July 30 regular hours, derived from the stored result.
ColumnTypeRangeNotes
leaderboard text 2 distinct values (by dollars traded, by shares traded)
ticker text 10 distinct values (CYCU, GCTK, MSFT…)
dollar_volume_bn number 0.02 to 43.29 count
shares_m number 20.1 to 544 count
implied_avg_price number 0.09 to 1,230.85 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-30 13:30:00' AND window_start < '2026-07-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(volume)) / 1e6, 1) AS shares_m
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE window_start >= '2026-07-30 13:30:00' AND window_start < '2026-07-30 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

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 30, 2026, The Day in Numbers
Eight mega-caps: change vs July 29 and regular-hours dollars, July 30 table 8×5 Seven names: RTH median quoted spread in basis points, with quote-quality counts, July 30 table 7×5 SPY / QQQ / DIA / IWM: July 30 vs the July 29 close, regular hours table 4×10 Biggest gainers and decliners: July 30 close vs July 29 close, $5M+ traded, splits excluded ranking 16×4 Sector ETFs, July 30 close vs July 29 close, ranked ranking 11×3 Treasury curve prints on file, July 27 through July 30 series 4×5 See all 2,170 queries →