STRASMORE/EXPLORE 2,170 QUERIES

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?.

as of ranking 12×4read in context →
Completed forward splits of 3-for-1 or larger: selected large-cap names, 2022 to 2026 — 12 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickereffective_labelratio_labelnew_shares_per_old_share
BKNGApr 6, 202625-for-125
NFLXNov 17, 202510-for-110
ORLYJun 10, 202515-for-115
LRCXOct 3, 202410-for-110
SMCIOct 1, 202410-for-110
DECKSep 17, 20246-for-16
AVGOJul 15, 202410-for-110
CMGJun 26, 202450-for-150
NVDAJun 10, 202410-for-110
WMTFeb 26, 20243-for-13
TSLAAug 25, 20223-for-13
GOOGLJul 18, 202220-for-120
Rows × columns
12 × 4
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 Completed forward splits of 3-for-1 or larger: selected large-cap names, 2022 to 2026, derived from the stored result.
ColumnTypeRangeNotes
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 →