Completed forward splits of 3-for-1 or larger: selected large-cap names, 2022 to 2026
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-05, from When Does a Stock Split Take Effect?.
| ticker | effective_label | ratio_label | new_shares_per_old_share |
|---|---|---|---|
| BKNG | Apr 6, 2026 | 25-for-1 | 25 |
| NFLX | Nov 17, 2025 | 10-for-1 | 10 |
| ORLY | Jun 10, 2025 | 15-for-1 | 15 |
| LRCX | Oct 3, 2024 | 10-for-1 | 10 |
| SMCI | Oct 1, 2024 | 10-for-1 | 10 |
| DECK | Sep 17, 2024 | 6-for-1 | 6 |
| 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 |
| TSLA | Aug 25, 2022 | 3-for-1 | 3 |
| GOOGL | Jul 18, 2022 | 20-for-1 | 20 |
- Rows × columns
- 12 × 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 |
|---|---|---|---|
ticker |
text | 12 distinct values (AVGO, BKNG, CMG…) | |
effective_label |
text | 12 distinct values (Apr 6, 2026, Aug 25, 2022, Feb 26, 2024…) | |
ratio_label |
text | 7 distinct values (10-for-1, 15-for-1, 20-for-1…) | |
new_shares_per_old_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 effective_label,
concat(toString(toUInt32(max(split_to))), '-for-', toString(toUInt32(max(split_from)))) AS ratio_label,
round(toFloat64(max(split_to)) / toFloat64(max(split_from)), 1) AS new_shares_per_old_share
FROM global_markets.stocks_splits
WHERE execution_date >= toDate('2022-01-01')
AND execution_date <= toDate('2026-07-31')
AND split_to > 0
AND split_from > 0
AND toFloat64(split_to) / toFloat64(split_from) >= 3
AND ticker IN ('AMZN', 'GOOGL', 'TSLA', 'WMT', 'NVDA', 'CMG', 'AVGO', 'SMCI', 'LRCX', 'DECK', 'ORLY', 'NFLX', 'MSFT', 'AAPL', 'COST', 'ISRG', 'BKNG', 'FICO')
GROUP BY ticker, execution_date
ORDER BY max(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 analysisWhen Does a Stock Split Take Effect?
US-listed splits by ratio band, 2021 to mid-2026: the 25% line in the data
ranking 5×3
→
NVDA around its 10-for-1 split: regular-session close and volume, June 3 to June 14, 2024
series 10×4
→
Effective dates by weekday: US-listed splits, 2021 to mid-2026
series 5×3
→
Forward and reverse splits by year across US listings
ranking 10×3
→
Most recent forward split at ten large dividend payers
ranking 5×3
→
Days between declaration, ex-date, record and payable
series 16×5
→
See all 2,170 queries →