STRASMORE/EXPLORE 2,170 QUERIES

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

as of table 10×6read in context →
Top 6 by dollars traded, top 4 by shares traded: July 9 regular hours — 10 rows by 6 columns, computed from US exchange, SIP and OPRA data.
leaderboardtickerdollar_volume_bnshares_mimplied_avg_pricepct_of_board_leader
by dollars tradedMU33.5633.11013.9100
by dollars tradedSPY24.3732.5749.8572.6
by dollars tradedNVDA21.28105.3202.0963.4
by dollars tradedSNDK20.59111871.8261.4
by dollars tradedQQQ20.0427.8720.8659.7
by dollars tradedMETA12.6920.8610.137.8
by shares tradedSOXS2.18558.13.91100
by shares tradedBITO2.79326.28.5558.4
by shares tradedTZA0.651643.9629.4
by shares tradedSNDQ0.34137.42.4724.6
Rows × columns
10 × 6
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 9 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, META, MU…)
dollar_volume_bn number 0.34 to 33.56 count
shares_m number 11 to 558.1 count
implied_avg_price number 2.47 to 1,871.82 US dollars
pct_of_board_leader number 24.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 leaderboard, ticker, dollar_volume_bn, shares_m,
    round(1000 * dollar_volume_bn / shares_m, 2) AS implied_avg_price,
    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(volume)) / 1e6, 1) AS shares_m
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE window_start >= '2026-07-09 13:30:00' AND window_start < '2026-07-09 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-09 13:30:00' AND window_start < '2026-07-09 20:00:00'
      AND ticker NOT IN ('SPCX')
    GROUP BY ticker
    ORDER BY shares_m DESC
    LIMIT 4
)
ORDER BY leaderboard, pct_of_board_leader 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 9, 2026, The Day in Numbers
Fourteen chip names: gap at the open vs the rest of the day, July 9 table 14×8 Named catalysts on file: news articles and SEC filings per name, Wednesday's close through Thursday's table 9×5 Eight declared sector baskets, three names each: July 9 close-over-close, equal-weighted table 8×6 Eight mega-caps and defensives: gap at the open vs the rest of the day, July 9 table 8×8 Premarket path, 4:00-9:29 am ET: last premarket print vs Wednesday's close, and the open that followed table 6×8 SPY / QQQ / DIA / IWM: July 9 vs the July 8 close, regular hours table 4×10 See all 2,170 queries →