STRASMORE/EXPLORE 2,173 QUERIES

Exchange-listed symbols with a recent SEC periodic report, 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 OTC Markets Tiers and SEC Rule 15c2-11.

as of scalar 1×3read in context →
symbols traded
13,024
symbols with filing
5,434
pct with recent filing
41.7
Rows × columns
1 × 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 Exchange-listed symbols with a recent SEC periodic report, June 2026, derived from the stored result.
ColumnTypeRangeNotes
symbols_traded number every row is 13,024
symbols_with_filing number every row is 5,434
pct_with_recent_filing number every row is 41.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
    traded AS
    (
        SELECT DISTINCT ticker
        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')
    ),
    filers AS
    (
        SELECT DISTINCT ticker
        FROM global_markets.stocks_sec_edgar_index
        WHERE filing_date >= '2025-06-01'
          AND filing_date <  '2026-07-01'
          AND form_type IN ('10-K', '10-Q', '20-F', '40-F')
          AND ticker != ''
    )
SELECT
    count()                                                       AS symbols_traded,
    countIf(ifNull(f.ticker, '') != '')                           AS symbols_with_filing,
    round(100 * countIf(ifNull(f.ticker, '') != '') / count(), 1) AS pct_with_recent_filing
FROM traded AS t
LEFT JOIN filers AS f ON f.ticker = t.ticker

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 Sessions traded in June 2026, share of exchange-listed symbols ranking 5×2 Forward-declared ex-dividend records on file: the receipt behind this calendar scalar 1×5 The receipts: universe size, filter bite, median crowding, and list churn at the latest print scalar 1×5 Regular trading sessions over the trailing year scalar 1×3 The closure calendar ahead, at a glance scalar 1×6 See all 2,173 queries →