STRASMORE/EXPLORE 2,170 QUERIES

The tape by average dollar volume, June 2026

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-11, from The January Effect: Does It Still Work?.

as of ranking 5×3read in context →
The tape by average dollar volume, June 2026 — 5 rows by 3 columns, computed from US exchange, SIP and OPRA data.
liquidity_bucketsecurities_countshare_of_tape_pct
1. under $100k180815.1
2. $100k to $1M320426.7
3. $1M to $10M313326.1
4. $10M to $100M243520.3
5. over $100M142911.9
Rows × columns
5 × 3
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 The tape by average dollar volume, June 2026, derived from the stored result.
ColumnTypeRangeNotes
liquidity_bucket text 5 distinct values
securities_count number 1,429 to 3,204 count
share_of_tape_pct number 11.9 to 26.7 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
WITH per_symbol AS
(
    SELECT
        ticker,
        avg(toFloat64(close) * toFloat64(volume)) AS adv_dollars
    FROM global_markets.stocks_daily_aggs
    WHERE date >= '2026-06-01'
      AND date <  '2026-07-01'
    GROUP BY ticker
    HAVING count() >= 15
)
SELECT
    multiIf(
        adv_dollars <    100000, '1. under $100k',
        adv_dollars <   1000000, '2. $100k to $1M',
        adv_dollars <  10000000, '3. $1M to $10M',
        adv_dollars < 100000000, '4. $10M to $100M',
                                 '5. over $100M')  AS liquidity_bucket,
    count()                                        AS securities_count,
    round(100 * count() / (
        SELECT count()
        FROM
        (
            SELECT ticker
            FROM global_markets.stocks_daily_aggs
            WHERE date >= '2026-06-01'
              AND date <  '2026-07-01'
            GROUP BY ticker
            HAVING count() >= 15
        )
    ), 1)                                          AS share_of_tape_pct
FROM per_symbol
GROUP BY liquidity_bucket
ORDER BY liquidity_bucket

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 analysisThe January Effect: Does It Still Work?
Every January on the daily tape, in trading sessions ranking 23×2 Distinct symbols printing at least one session, by year ranking 20×2 SPY share volume around the turn of the year, averaged since 2011 ranking 19×3 Growth of one dollar: holding all year vs holding only November through April ranking 21×3 S&P 500 tracker: May to October vs November to April, season by season ranking 21×3 SPY distributions by ex-dividend month: inside the May to October window vs outside it ranking 19×3 See all 2,170 queries →