Reverse splits executed per month, trailing twelve full months
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.
| month | reverse_splits | median_ratio |
|---|---|---|
| 2025-09 | 95 | 10 |
| 2025-10 | 88 | 15 |
| 2025-11 | 69 | 10 |
| 2025-12 | 130 | 10 |
| 2026-01 | 69 | 12 |
| 2026-02 | 89 | 10 |
| 2026-03 | 135 | 10 |
| 2026-04 | 97 | 10 |
| 2026-05 | 102 | 10 |
| 2026-06 | 105 | 10 |
| 2026-07 | 119 | 10 |
| 2026-08 | 104 | 10 |
- Rows × columns
- 12 × 3
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
month |
text | 12 distinct values (2025-09, 2025-10, 2025-11…) | |
reverse_splits |
number | 69 to 135 | |
median_ratio |
number | 10 to 15 | ratio or rate |
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
formatDateTime(toStartOfMonth(execution_date), '%Y-%m') AS month,
uniqExact(ticker, execution_date) AS reverse_splits,
round(quantileExact(0.5)(toFloat64(split_from) / toFloat64(split_to)), 1) AS median_ratio
FROM global_markets.stocks_splits
WHERE execution_date >= toStartOfMonth(today() - INTERVAL 12 MONTH)
AND execution_date < toStartOfMonth(today())
AND split_from > split_to
AND ticker NOT IN ('SPCX')
GROUP BY month
ORDER BY month