STRASMORE/EXPLORE 2,170 QUERIES

The most common split terms of the past five years

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 Cost Basis After a Stock Split, Step by Step.

as of ranking 12×3read in context →
The most common split terms of the past five years — 12 rows by 3 columns, computed from US exchange, SIP and OPRA data.
split_labeldirectionsplit_count
1-for-10reverse947
1-for-20reverse417
2-for-1forward337
1-for-5reverse326
1-for-4reverse194
3-for-1forward190
1-for-15reverse188
1-for-25reverse171
1-for-3reverse161
1-for-100reverse152
1-for-50reverse149
1-for-30reverse146
Rows × columns
12 × 3
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 The most common split terms of the past five years, derived from the stored result.
ColumnTypeRangeNotes
split_label text 12 distinct values (1-for-10, 1-for-100, 1-for-15…)
direction text 2 distinct values (forward, reverse)
split_count number 146 to 947 count

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
    concat(toString(to_val), '-for-', toString(from_val)) AS split_label,
    if(to_val > from_val, 'forward', 'reverse')           AS direction,
    toUInt32(count())                                     AS split_count
FROM
(
    SELECT
        ticker,
        execution_date,
        any(split_from) AS from_val,
        any(split_to)   AS to_val
    FROM global_markets.stocks_splits
    WHERE execution_date >= subtractYears(today(), 5)
      AND execution_date <= today()
      AND split_from > 0
      AND split_to > 0
    GROUP BY ticker, execution_date
)
GROUP BY split_label, direction
ORDER BY split_count DESC
LIMIT 12

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 analysisCost Basis After a Stock Split, Step by Step
Forward and reverse splits per calendar year ranking 11×3 Every KO dividend of the past four years, one new lot each if reinvested series 16×3 One hypothetical 100-share lot through every AAPL split series 3×5 Recent reverse stock splits (shares consolidated), last 30 days ranking 15×4 Recent forward stock splits (shares multiplied), last 60 days, ETFs excluded ranking 15×4 Apple's yearly price range, split-adjusted, 2012 through the current year ranking 15×4 See all 2,170 queries →