US stock splits by year, sorted by size of the distribution
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 Due Bills and Stock Splits: Ex-Date Timing.
| year | large_distributions | small_forward_splits | reverse_splits |
|---|---|---|---|
| 2016 | 198 | 219 | 724 |
| 2017 | 232 | 158 | 690 |
| 2018 | 204 | 319 | 517 |
| 2019 | 102 | 288 | 604 |
| 2020 | 128 | 230 | 673 |
| 2021 | 186 | 223 | 483 |
| 2022 | 146 | 218 | 620 |
| 2023 | 177 | 185 | 830 |
| 2024 | 270 | 182 | 866 |
| 2025 | 239 | 185 | 1036 |
- Rows × columns
- 10 × 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 |
|---|---|---|---|
year |
text | 10 distinct values (2016, 2017, 2018…) | |
large_distributions |
number | 102 to 270 | |
small_forward_splits |
number | 158 to 319 | |
reverse_splits |
number | 483 to 1,036 |
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
toString(toYear(execution_date)) AS year,
countIf(ratio >= 1.25) AS large_distributions,
countIf(ratio > 1 AND ratio < 1.25) AS small_forward_splits,
countIf(ratio < 1) AS reverse_splits
FROM
(
SELECT
ticker,
execution_date,
max(toFloat64(split_to) / greatest(toFloat64(split_from), 1.0)) AS ratio
FROM global_markets.stocks_splits
WHERE execution_date >= '2016-01-01'
AND execution_date < toStartOfYear(today())
AND ticker NOT IN ('SPCX')
GROUP BY ticker, execution_date
)
GROUP BY year
ORDER BY year
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.