A decade of splits, 2016-2025: forward vs reverse totals and the annual score
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-07-26, from What Is a Stock Split? Ratios and Mechanics.
forward total
4,122
reverse total
7,109
reverse per forward
1.72
years reverse ahead
9
- Rows × columns
- 1 × 4
- 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 |
|---|---|---|---|
forward_total |
number | every row is 4,122 | |
reverse_total |
number | every row is 7,109 | |
reverse_per_forward |
number | every row is 1.72 | |
years_reverse_ahead |
number | every row is 9 |
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 sum(forward_splits) AS forward_total,
sum(reverse_splits) AS reverse_total,
round(sum(reverse_splits) / sum(forward_splits), 2) AS reverse_per_forward,
countIf(reverse_splits > forward_splits) AS years_reverse_ahead
FROM (
SELECT toYear(execution_date) AS year,
countIf(split_to > split_from) AS forward_splits,
countIf(split_from > split_to) AS reverse_splits
FROM global_markets.stocks_splits
WHERE execution_date >= '2016-01-01' AND execution_date < '2026-01-01'
GROUP 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 Stock Split? Ratios and Mechanics
After the split: median forward returns for 2025's whole-number forward splits vs SPY over the same sessions
scalar 1×5
→
Notable US stock splits since 2020: ratio, how the action was recorded, and the next 21 sessions vs SPY
table 15×6
→
Forward vs reverse splits per year, all US-listed securities, 2016 through June 2026
ranking 11×3
→
Most common forward split ratios, July 2025 through June 2026: whole-number ratios, all US-listed securities
ranking 6×2
→
NVDA around its 10-for-1 split: regular-session open and close, last pre-split day vs first post-split day
series 2×3
→
NVDA trading volume, 20 sessions before vs 20 sessions from its 10-for-1 split (June 10, 2024)
ranking 2×4
→
See all 2,170 queries →