STRASMORE/EXPLORE 2,170 QUERIES

Reverse vs. forward splits by year, 2019 to today

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-22, from What Is a Reverse Stock Split? Good or Bad?.

as of ranking 8×4read in context →
Reverse vs. forward splits by year, 2019 to today — 8 rows by 4 columns, computed from US exchange, SIP and OPRA data.
yearreverse_splitsforward_splitsreverse_per_forward
2019606956.4
20206851175.9
20214911742.8
20226221304.8
20238371655.1
20248712573.4
202510382404.3
20267781834.3
Rows × columns
8 × 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 Reverse vs. forward splits by year, 2019 to today, derived from the stored result.
ColumnTypeRangeNotes
year number 2,019 to 2,026
reverse_splits number 491 to 1,038
forward_splits number 95 to 257
reverse_per_forward number 2.8 to 6.4

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
SELECT
    toYear(execution_date) AS year,
    countIf(adjustment_type = 'reverse_split') AS reverse_splits,
    countIf(adjustment_type = 'forward_split') AS forward_splits,
    round(countIf(adjustment_type = 'reverse_split')
        / greatest(countIf(adjustment_type = 'forward_split'), 1), 1) AS reverse_per_forward
FROM global_markets.stocks_splits
WHERE execution_date >= '2019-01-01'
  AND execution_date <= today()
GROUP BY year
ORDER BY year

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 analysisWhat Is a Reverse Stock Split? Good or Bad?
2026's most common reverse split ratios ranking 10×2 Where reverse-split companies stood a year later (splits executed 12-18 months ago) ranking 3×3 ASST: daily closes around its 1-for-20 reverse split (execution date 2026-02-06) series 69×3 The most recent US reverse stock splits on record series 12×4 What happened next: median move after a reverse split vs. SPY, splits executed 4-9 months ago series 3×7 ASST's reverse split history on record series 2×6 See all 2,170 queries →