STRASMORE/EXPLORE 2,173 QUERIES 22Y EQUITIES · 12Y OPTIONS

2,173 answered market questions

every one with its exact SQL, its result and the date it was computed · free, no signup

Non-Marginable Securities: Reg T vs House
Symbols closing the month below $5 and below $1, past two yearsseries · 2026-08-22 · 24×3Preview: a 16-point series, ending lower. Symbol count and average daily range, by price bucketranking · 2026-08-22 · 6×3Preview: 6 ranked values, smallest first. Average daily range of recent listings, by age since listingranking · 2026-08-22 · 5×3Preview: 5 ranked values, largest first.
What Is a Special Memorandum Account (SMA)?
One margin account through four events: equity, requirement, and SMAtable · 2026-08-19 · 5×8
Symbols closing the month below $5 and below $1, past two years

Symbols closing the month below $5 and below $1, past two years

most recentas of series 24×3read in context →
Symbols closing the month below $5 and below $1, past two years — 24 rows by 3 columns, computed from US exchange, SIP and OPRA data.
monthunder_5_countunder_1_count
2024-081869714
2024-091862712
2024-101832682
2024-111778650
2024-121795626
2025-011772607
2025-021845623
2025-031956672
2025-041955652
2025-051903615
2025-061869597
2025-071867568
2025-081833569
2025-091791537
2025-101822542
2025-111908606
2025-121955693
2026-011931674
2026-022001741
2026-032128808
2026-042036797
2026-052056800
2026-062149866
2026-072281968
the exact SQL behind every number
SELECT
    formatDateTime(m, '%Y-%m')  AS month,
    countIf(month_close < 5)    AS under_5_count,
    countIf(month_close < 1)    AS under_1_count
FROM
(
    SELECT
        toStartOfMonth(date) AS m,
        ticker,
        argMax(close, date)  AS month_close
    FROM global_markets.stocks_daily_aggs
    WHERE date >= toStartOfMonth(today() - 730)
      AND date <  toStartOfMonth(today())
      AND volume > 0
      AND close > 0
    GROUP BY m, ticker
)
GROUP BY m
ORDER BY m
$