STRASMORE/EXPLORE 2,170 QUERIES

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.

as of table 10×5read in context →
Top 6 by dollars traded, top 4 by shares traded: July 10 regular hours — 10 rows by 5 columns, computed from US exchange, SIP and OPRA data.
leaderboardtickerdollar_volume_bnshares_mimplied_avg_price
by dollars tradedNVDA26.56127.4208.48
by dollars tradedSPY26.2934.9753.3
by dollars tradedMU25.926.5977.36
by dollars tradedMETA22.8234.1669.21
by dollars tradedSKHYV18.03105171.71
by dollars tradedQQQ17.1523.7723.63
by shares tradedBITO2.35270.38.69
by shares tradedSOXS1.844454.13
by shares tradedTZA0.84209.64.01
by shares tradedDFNS0.02188.90.11
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 10 regular hours, derived from the stored result.
ColumnTypeRangeNotes
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 →