Recent forward splits among widely held stocks
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 How Often Do Stocks Split?.
| ticker | split_date | ratio | shares_per_share |
|---|---|---|---|
| NFLX | Nov 17, 2025 | 10-for-1 | 10 |
| SMCI | Oct 1, 2024 | 10-for-1 | 10 |
| AVGO | Jul 15, 2024 | 10-for-1 | 10 |
| CMG | Jun 26, 2024 | 50-for-1 | 50 |
| NVDA | Jun 10, 2024 | 10-for-1 | 10 |
| WMT | Feb 26, 2024 | 3-for-1 | 3 |
| SHOP | Jun 29, 2022 | 10-for-1 | 10 |
| DXCM | Jun 13, 2022 | 4-for-1 | 4 |
| AMZN | Jun 6, 2022 | 20-for-1 | 20 |
| AAPL | Aug 31, 2020 | 4-for-1 | 4 |
- Rows × columns
- 10 × 4
- Period covered
- to
- 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 |
|---|---|---|---|
ticker |
text | 10 distinct values (AAPL, AMZN, AVGO…) | |
split_date |
date | Aug 31, 20 to Oct 1, 202 | |
ratio |
text | 5 distinct values (10-for-1, 20-for-1, 3-for-1…) | |
shares_per_share |
number | 3 to 50 | 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 ticker,
formatDateTime(execution_date, '%b %e, %Y') AS split_date,
concat(toString(split_to), '-for-', toString(split_from)) AS ratio,
round(split_to / split_from, 0) AS shares_per_share
FROM global_markets.stocks_splits
WHERE ticker IN ('NVDA', 'AAPL', 'AMZN', 'AVGO', 'NFLX', 'WMT', 'CMG', 'SHOP', 'DXCM', 'SMCI')
AND adjustment_type = 'forward_split'
AND split_to >= 2 * split_from
AND execution_date BETWEEN toDate('2016-01-01') AND today()
ORDER BY execution_date 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 analysisHow Often Do Stocks Split?
Forward and reverse stock splits per year, 2016 to today
ranking 11×3
→
The most common reverse-split ratios, 2016 to today
ranking 8×2
→
The most common forward-split ratios, 2016 to today
ranking 8×2
→
Every share-count adjustment since 2016, by type
ranking 3×2
→
The best-known recent stock splits: the six months before vs the three months after
series 7×6
→
Announced stock splits by effective month: forward vs reverse
series 5×4
→
See all 2,170 queries →