When Stock Split Go Take Effect?
Stock split dey take effect on the ex-distribution date, usually one business day after payable date. See the full timeline and how due bills work.
Stock split dey take effect for im ex-distribution date. Na the first trading session wey stock go quote for the new adjusted price.
For forward split, that session normally dey happen one business day after payable date. Na that day dem credit the extra shares.
This order dey surprise most people. Shares fit enter account while quoted price still dey show the old one.
The four dates of a stock split, in order
Dates four dey control every split, and na only one dey change wetin you see for quote screen. Wetin stock split dey do to share count na simple arithmetic. Na calendar dey cause the confusion.
- Announcement date. Board approve the split, and company disclose the ratio together with the dates e plan to use. Nothing don happen to the stock or any account.
- Record date. Na the cutoff for the books. Anybody wey transfer agent list as holder when that day close get right to the additional shares.
- Payable date, wey dem also dey call distribution date. Dem issue and credit the additional shares to entitled holders, normally after market close.
- Ex-distribution date. Na the first session wey stock dey trade on the new basis, for ratio-adjusted price. Na this day the split take effect for anybody wey dey watch chart.
The panel below list completed forward splits of 3-for-1 or larger for names wey most readers know, together with the effective date of each one.
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 12The latest one for the panel, BKNG, take effect on Apr 6, 2026 at 25-for-1: one old share become 25. The oldest row, GOOGL, date back to Jul 18, 2022. All 12 don become settled history, so person fit check every date for the list against the exchange notice wey carry am.
Forward split dey take effect when for stock?
Na the business day after the payable date. If company credit the shares after market close on Friday, the first adjusted trading session go happen the following Monday. Apply this rule to every split for the past five and a half years, and the weekday counts go show the result.
The exact SQL behind every number
WITH s AS (
SELECT ticker,
execution_date,
toFloat64(max(split_to)) / toFloat64(max(split_from)) AS ratio
FROM global_markets.stocks_splits
WHERE execution_date >= toDate('2021-01-01')
AND execution_date <= toDate('2026-07-31')
AND split_to > 0
AND split_from > 0
GROUP BY ticker, execution_date
)
SELECT multiIf(toDayOfWeek(execution_date) = 1, 'Monday',
toDayOfWeek(execution_date) = 2, 'Tuesday',
toDayOfWeek(execution_date) = 3, 'Wednesday',
toDayOfWeek(execution_date) = 4, 'Thursday',
'Friday') AS weekday,
countIf(ratio >= 1.25) AS forward_splits,
countIf(ratio < 1) AS reverse_splits
FROM s
WHERE toDayOfWeek(execution_date) <= 5
GROUP BY weekday
ORDER BY forward_splits DESC, weekdayIf dem sort am by frequency, Thursday dey top the list with 300 forward splits since 2021, compared with 183 for Wednesday. Reverse splits dey use the same effective-date process, and 789 of dem too happen on a Thursday. For events wey never happen yet, the upcoming stock splits calendar get the announced dates, while recent stock splits list the ones wey don already happen.
Why ex-date dey come after payable date: due bills
Na the gap between record date and ex-date due bills dey show. During those days, stock still dey trade for pre-split price. The shares wey people dey exchange na the ones wey go multiply when dem credit the distribution. Seller na the holder of record, so dem credit the extra shares to seller account. But buyer pay pre-split price and get right to receive those shares.
Due bill na wetin close that loop. Na obligation wey attach to the delivery, and e require seller to give buyer the extra shares once dem arrive. Brokers dey process am behind the scenes. Retail buyer normally just see the extra shares enter the account few days after the trade. The period dey run from record date reach payable date. Trade wey happen on ex-date or after am go settle clean for adjusted price, with nothing attached.
This setup keep one rule intact: quote go adjust only after dem credit every holder of record. Due bill cover everybody wey trade during the period between. Regular cash dividends dey follow the opposite order, with ex-date for front; record date vs ex-dividend date explain that version.
The 25% rule: which distributions dey use split timeline
No be every share distribution dey use split calendar. FINRA Rule 11140, wey dey inside Uniform Practice Code, set the line for 25%: if stock dividend or split na 25% or more of the shares outstanding, ex-date na the first business day after payable date. If e dey below 25%, the distribution dey follow normal ex-date convention. Under T+1 settlement, ex-date na the record date itself. Exchanges dey use this same threshold for the processing notice wey dem publish for each event.
If you sort every US-listed split for the past five and a half years by ratio, both sides of the line go show for one chart.
The exact SQL behind every number
WITH s AS (
SELECT ticker,
execution_date,
toFloat64(max(split_to)) / toFloat64(max(split_from)) AS ratio
FROM global_markets.stocks_splits
WHERE execution_date >= toDate('2021-01-01')
AND execution_date <= toDate('2026-07-31')
AND split_to > 0
AND split_from > 0
GROUP BY ticker, execution_date
)
SELECT multiIf(ratio < 1, 'reverse split',
ratio < 1.25, 'under 25%',
ratio < 2, '25% to 2-for-1',
ratio < 5, '2-for-1 to 5-for-1',
'5-for-1 or larger') AS ratio_band,
count() AS splits,
uniqExact(ticker) AS companies
FROM s
GROUP BY ratio_band
ORDER BY min(ratio)4559 of the events na reverse splits across 3523 companies. Share count go down instead of up (wetin reverse stock split dey do explain that case; dem process am as of the effective date and e no generate due bills). 1101 dey inside the under 25% band. Dem na small stock dividends wey no ever enter split timeline. Above the line, 117 dey inside the 25% to 2-for-1 band, 727 dey at 2-for-1 to 5-for-1, and 334 dey at 5-for-1 or larger. Na this last tier dey produce the headlines.
Timeline wey show NVIDIA 10-for-1 split
NVIDIA announce 10-for-1 split together with im quarterly results for late May 2024, then e follow the normal calendar. Ten sessions of closing prices dey around the event. Record date, payable date and first adjusted session all dey inside the window:
The exact SQL behind every number
SELECT toDate(toTimeZone(window_start, 'America/New_York')) AS date,
formatDateTime(toDate(toTimeZone(window_start, 'America/New_York')), '%b %e, %Y') AS day_label,
round(toFloat64(argMax(close, window_start)), 2) AS close_usd,
round(toFloat64(sum(volume)) / 1e6, 1) AS volume_millions
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'NVDA'
AND toDate(toTimeZone(window_start, 'America/New_York')) >= toDate('2024-06-03')
AND toDate(toTimeZone(window_start, 'America/New_York')) <= toDate('2024-06-14')
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959
GROUP BY date, day_label
ORDER BY dateRead the rows in order. Jun 6, 2024 na the record date, and closing price that day na $1209.42. The extra shares enter investors’ accounts after market close on Jun 7, 2024. That session close at $1208.65, still for the pre-split level. Jun 10, 2024 na the ex-distribution date. The close na $121.65, about one-tenth of the previous print, and historical bars for any live chart update to match.
The first adjusted close no be the previous close divided by ten, and e never be. The split only change the number of shares. The next session price the stock the same way every other session dey price am. Volume dey for the same panel: 38.4 million shares during the regular session on Jun 3, 2024, and 270.6 million on Jun 14, 2024. Each share now carry one-tenth of the claim wey e carry at the beginning of the window.
Clearing house adjust listed options on the same date. E rewrite the strikes and deliverables. how stock splits affect options explain those mechanics, while does a stock go up after a split use numbers to answer the question wey every split calendar dey raise.
Wetin holder dey see for account, day by day
- On the record date. Nothing wey you fit see go change. Share count, price and position value go remain the same as e be the day before.
- On the payable date. The extra shares dey post, often overnight. For some hours, account fit show the new share count with the old price. This fit make balance look inflated, but e go correct itself when market open next.
- On the ex-distribution date. Quote go open for the adjusted level. Position value go return to where e start, and chart price history go update to reflect the adjustment.
- Cash in lieu. Ratio wey no divide evenly go leave fraction. Three-for-two split on seven shares go give 10.5 shares. Transfer agents normally pay the half share as cash using reference price instead of issuing the share. The payment go arrive as small taxable transaction, no be stock.
Stock split dates FAQ
Stock split dey start for record date or ex-date?
Na ex-distribution date. Record date only dey confirm who get right to receive the additional shares. If distribution reach 25% or more, ex-date na the first business day after payable date. Na then adjusted price go print once dem credit the shares.
How many days after record date stock split dey start?
No fixed number dey. Company na im dey set the gap, and exchange notice for the event go publish am. NVIDIA's 10-for-1 get record date of Jun 6, 2024, distribution after market close on Jun 7, 2024, and adjusted trading from Jun 10, 2024.
Wetin go happen if I buy stock between record date and split date?
You go receive the additional shares. The trade get due bill, wey be obligation attached to delivery. E dey move the extra shares from seller come meet you. You pay pre-split price and end up with post-split share count.
I go get cash for fractional shares for stock split?
Usually. When the ratio leave fraction of a share, transfer agent normally sell am and pay cash in lieu at reference price. The money go enter the account as small taxable transaction.
Stock split go change wetin my position worth?
No be by itself. Share count and price go move by the same ratio on ex-date, so position value for that moment no change. Anything wey stock do afterward na ordinary trading.
Every date and price for this page come from stored query wey use filed corporate actions and real session prices. Open any panel to read the SQL, or run the same screens for Strasmore terminal.