STRASMORE/EXPLORE 2,173 QUERIES

Sessions traded in June 2026, share of exchange-listed symbols

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 OTC Markets Tiers and SEC Rule 15c2-11.

as of ranking 5×2read in context →
Sessions traded in June 2026, share of exchange-listed symbols — 5 rows by 2 columns, computed from US exchange, SIP and OPRA data.
sessions_bucketlisted_share_pct
01 to 03 sessions1.2
04 to 07 sessions2.4
08 to 12 sessions3
13 to 17 sessions2.8
18 or more sessions90.6
Rows × columns
5 × 2
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 Sessions traded in June 2026, share of exchange-listed symbols, derived from the stored result.
ColumnTypeRangeNotes
sessions_bucket text 5 distinct values
listed_share_pct number 1.2 to 90.6 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,
            count() AS sessions_traded
        FROM global_markets.stocks_daily_aggs
        WHERE date >= '2026-06-01'
          AND date <  '2026-07-01'
          AND ifNull(otc, 0) = 0
          AND ticker NOT IN ('SPCX')
        GROUP BY ticker
    ),
    totals AS
    (
        SELECT count() AS total_listed
        FROM per_symbol
    ),
    bucketed AS
    (
        SELECT
            multiIf(sessions_traded <=  3, '01 to 03 sessions',
                    sessions_traded <=  7, '04 to 07 sessions',
                    sessions_traded <= 12, '08 to 12 sessions',
                    sessions_traded <= 17, '13 to 17 sessions',
                                           '18 or more sessions') AS sessions_bucket,
            count()                                               AS listed_symbols
        FROM per_symbol
        GROUP BY sessions_bucket
    )
SELECT
    b.sessions_bucket                                 AS sessions_bucket,
    round(100 * b.listed_symbols / t.total_listed, 1) AS listed_share_pct
FROM bucketed AS b
CROSS JOIN totals AS t
ORDER BY b.sessions_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 analysisOTC Markets Tiers and SEC Rule 15c2-11
Distinct exchange-listed symbols printing a trade each month, 2021 and 2022 series 24×2 Exchange-listed symbols with a recent SEC periodic report, June 2026 scalar 1×3 Annualized volatility vs total return, 25 large caps, calmest to wildest (~2 years) ranking 25×3 SPY options median spread by expiration date, near-the-money strikes only ranking 25×4 When market headlines publish, by New York clock hour ranking 24×2 Stock headlines by ET hour of publication (last 30 days, all days) ranking 24×3 See all 2,173 queries →