STRASMORE/EXPLORE 2,648 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.

Run it yourself

This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.

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
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.

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 → Listed stocks closing under $1, session by session, trailing five months series 103×3 → Reverse splits executed per month, trailing twelve full months series 12×3 → Listed stocks closing under $1 on the latest session, by price band ranking 5×4 → How long the sub-$1 names have already been there: consecutive sessions closing under $1 ranking 4×3 → See all 2,648 queries →