STRASMORE/EXPLORE 2,433 QUERIES

Listed stocks closing under $1 on the latest session, by price band

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-09-20, from How Long Can a Stock Trade Under $1? The Rules.

as of ranking 5×4read in context →
Listed stocks closing under $1 on the latest session, by price band — 5 rows by 4 columns, computed from US exchange, SIP and OPRA data.
bucket_labelnamesshare_pctas_of
Under $0.1030.8Sep 18, 2026
$0.10 to $0.255013.2Sep 18, 2026
$0.25 to $0.508723Sep 18, 2026
$0.50 to $0.7512031.7Sep 18, 2026
$0.75 to $1.0011931.4Sep 18, 2026
Rows × columns
5 × 4
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 Listed stocks closing under $1 on the latest session, by price band, derived from the stored result.
ColumnTypeRangeNotes
bucket_label text 5 distinct values
names number 3 to 120
share_pct number 0.8 to 31.7 percent
as_of text 1 distinct value (Sep 18, 2026)

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.

SELECT
    bucket_label,
    countIf(px >= lo AND px < hi)                             AS names,
    round(100 * countIf(px >= lo AND px < hi) / count(), 1)   AS share_pct,
    any(session_label)                                        AS as_of
FROM
(
    SELECT
        ticker,
        argMax(toFloat64(close), _ingest_time)       AS px,
        any(formatDateTime(date, '%b %e, %Y'))       AS session_label
    FROM global_markets.stocks_daily_aggs
    WHERE date = (SELECT max(date) FROM global_markets.stocks_daily_aggs
                  WHERE ticker = 'SPY' AND date >= today() - 14)
      AND ifNull(otc, 0) = 0
      AND length(ticker) <= 4
      AND ticker NOT IN ('SPCX')
      AND volume > 0
      AND close > 0
    GROUP BY ticker
    HAVING px < 1
) AS latest
ARRAY JOIN
    [0.00, 0.10, 0.25, 0.50, 0.75]                                                             AS lo,
    [0.10, 0.25, 0.50, 0.75, 1.00]                                                             AS hi,
    ['Under $0.10', '$0.10 to $0.25', '$0.25 to $0.50', '$0.50 to $0.75', '$0.75 to $1.00']   AS bucket_label
GROUP BY lo, hi, bucket_label
ORDER BY lo
⌘/Ctrl + Enter
More from this analysisHow Long Can a Stock Trade Under $1? The Rules
How long the sub-$1 names have already been there: consecutive sessions closing under $1 ranking 4×3 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 Reverse splits executed Mar 2025 to Feb 2026, by consolidation ratio ranking 5×3 Median move after the split, same cohort, at 20, 60 and 120 sessions ranking 3×4 Reverse vs forward splits by execution month, trailing two years series 24×5 See all 2,433 queries →