STRASMORE/EXPLORE 2,170 QUERIES

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

as of series 10×4read in context →
Recent forward splits among widely held stocks — 10 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickersplit_dateratioshares_per_share
NFLXNov 17, 202510-for-110
SMCIOct 1, 202410-for-110
AVGOJul 15, 202410-for-110
CMGJun 26, 202450-for-150
NVDAJun 10, 202410-for-110
WMTFeb 26, 20243-for-13
SHOPJun 29, 202210-for-110
DXCMJun 13, 20224-for-14
AMZNJun 6, 202220-for-120
AAPLAug 31, 20204-for-14
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
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for Recent forward splits among widely held stocks, derived from the stored result.
ColumnTypeRangeNotes
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 →