Strasmore Research
Learn am Matt ConnorBy Matt Connor · data as of August 6, 2026 · refreshed weekly

How Stock Settlement Works Under T+1

Learn how stock settlement dey work under T+1, from trade date to settlement date, clearing, and why ex-dividend and record date now match.

Stock settlement under T+1 mean say US stock trade dey become final one business day after e execute. Seller go receive the cash, buyer go receive the shares, and dem go record the transfer for trade date plus one business day. Trade date na when your order execute and dem lock the price. Settlement date na when ownership legally transfer for the books of the central depository. Na this date dey determine whether your name dey on the holder list for dividend.

T+1 don be the standard cycle for US equities since May 28, 2024, when amended SEC Rule 15c6-1 take effect. E replace T+2, wey replace T+3 for September 2017. Treat the current cycle as the market’s current standard, no be permanent feature: dem don shorten am twice in less than one decade.

Trade date versus settlement date under T+1

Trade date, wey dem write as T, na the trading session wey your order fill. Settlement date na T plus one business day. Business days na the unit wey matter: weekends and exchange holidays no dey count. Na why trade wey happen Friday go settle Monday, while trade before holiday weekend fit wait four calendar days before e settle.

The panel below use one fixed stretch of real trading sessions around Thanksgiving 2025. E pair each trading day with the next one, wey na the day trade from that session go settle. The session dates come from the tape itself: if weekday no get printed bars, e mean say market no open that day.

QueryTrade date reach settlement date across real sessions, November 2025
The exact SQL behind every number
WITH sessions AS
(
    SELECT DISTINCT toDate(toTimeZone(window_start, 'America/New_York')) AS session_date
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'SPY'
      AND window_start >= '2025-11-19 00:00:00'
      AND window_start <  '2025-12-10 00:00:00'
      AND toDate(toTimeZone(window_start, 'America/New_York')) BETWEEN '2025-11-20' AND '2025-12-09'
)
SELECT
    toString(td)                            AS trade_date,
    formatDateTime(td, '%a %b %e')          AS trade_day_label,
    toString(next_td)                       AS settlement_date,
    formatDateTime(next_td, '%a %b %e')     AS settlement_day_label,
    dateDiff('day', td, next_td)            AS calendar_days_to_settle
FROM
(
    SELECT
        session_date AS td,
        leadInFrame(session_date) OVER (ORDER BY session_date ASC
            ROWS BETWEEN CURRENT ROW AND 1 FOLLOWING) AS next_td
    FROM sessions
)
WHERE next_td > td
  AND td <= '2025-12-05'
ORDER BY td
Run this yourself

The first row na Thu Nov 20, and e settle on Fri Nov 21, 1 calendar day later. The last row, Fri Dec 5, settle on Mon Dec 8, 3 calendar days later, with weekend inside. Read the last column down the panel and the rule clear: always move one session forward, no matter how many calendar days dey between.

Wetin dey happen between the trade and the settlement date?

Two institutions dey between when your order execute and when you finally own the shares. The clearing corporation — for US equities, na National Securities Clearing Corporation — dey manage the obligations. The depository, The Depository Trust Company, dey hold the shares in book-entry form and move dem. Both na subsidiaries of DTCC.

Four things dey happen inside that one business day.

  1. Execution and trade capture. The venue wey your order fill dey report both sides of the trade to the clearing corporation on trade date.
  2. Novation. The clearing corporation enter the middle and become buyer to every seller, and seller to every buyer. Neither broker need know or trust the other one.
  3. Netting. Buys and sells across one broker’s clients for one symbol dey combine into one net obligation for that broker in that symbol. If broker get 4,000 buys and 3,900 sells of one stock, na the difference e go deliver, no be 7,900 separate deliveries.
  4. Delivery versus payment. On settlement date, the depository dey move the shares and cash through the same book entry. Neither side go receive one part without giving up the other part.

Institutional prints dey pass through the same system. A block trade wey dem negotiate outside the public order book still clears and settles on the T+1 cycle.

Wetin change for dividends when US stocks move to T+1?

Record date na snapshot: anybody wey depository show as holder when that date close go receive the dividend. Ex-dividend date na the first trading session wey stock dey trade without the coming dividend attached. Exchanges dey set ex date by counting backward from record date through settlement cycle.

Under T+2, purchase wey person make on business day before record date settle one business day after the snapshot, so e too late to count. Ex date come one business day before record date. Under T+1, purchase on record date itself settle the next business day, so e still too late. Now, ex date and record date dey fall on the same day.

You fit see this shift for every US-listed cash dividend wey dey on file.

QueryGap between ex-dividend date and record date, by year
The exact SQL behind every number
SELECT
    toString(toYear(ex_date))                       AS year,
    round(avg(gap_days), 2)                         AS avg_gap_days,
    round(100 * countIf(gap_days = 0) / count(), 1) AS same_day_pct
FROM
(
    SELECT
        ticker,
        ex_dividend_date                                    AS ex_date,
        dateDiff('day', ex_dividend_date, max(record_date)) AS gap_days
    FROM global_markets.stocks_dividends
    WHERE ex_dividend_date >= '2015-01-01'
      AND ex_dividend_date <  today()
      AND record_date >= ex_dividend_date
      AND match(ticker, '^[A-Z]{1,5}$')
    GROUP BY ticker, ex_dividend_date
)
GROUP BY year
ORDER BY year
Run this yourself

For 2015, average gap between ex-dividend date and record date be 2.91 calendar days, and 0.1% of dividends get both dates for one day. For 2026, average gap na 0.03 days, and 98.1% get one date for both. The two drops for the line na the two convention changes. The small balance wey still differ na calendar exception: when record date fall on weekend or holiday, dem set ex date for the previous business day.

Advice to buy “two business days before the record date” come from T+3 era, while “one day before” come from T+2. Neither one describe how market dey work now. The record date versus ex-dividend date comparison and the ex-dividend date explained guide explain the dates in more detail.

If I buy the day before the ex-dividend date, will I collect the dividend?

Yes. One dated example make the matter clear. The panel track Microsoft dividends from middle of 2023 reach the latest one on file. E show the ex date, record date, payment date and amount per share.

QueryMicrosoft dividend dates, from the T+2 era enter T+1
The exact SQL behind every number
SELECT
    toString(ex_d)                        AS ex_date,
    formatDateTime(ex_d, '%b %e, %Y')     AS ex_date_label,
    formatDateTime(rec_d, '%b %e, %Y')    AS record_date_label,
    formatDateTime(pay_d, '%b %e, %Y')    AS pay_date_label,
    round(toFloat64(amount), 2)           AS dividend_usd,
    dateDiff('day', ex_d, rec_d)          AS ex_to_record_days
FROM
(
    SELECT
        ex_dividend_date  AS ex_d,
        max(record_date)  AS rec_d,
        max(pay_date)     AS pay_d,
        max(cash_amount)  AS amount
    FROM global_markets.stocks_dividends
    WHERE ticker = 'MSFT'
      AND ex_dividend_date >= '2023-08-01'
      AND record_date >= ex_dividend_date
      AND pay_date > ex_dividend_date
    GROUP BY ex_dividend_date
)
ORDER BY ex_d
Run this yourself

For the first row, ex date Aug 16, 2023, the record date come 1 one day later: na the T+2 pattern. For the latest row, ex date Aug 20, 2026 at $0.91 per share, the record date fall on the ex date itself. The gap na 0 days, and payment happen on Sep 10, 2026.

Na so the process work for that row. If buy order fill during the session before Aug 20, 2026, settlement happen on the ex date, wey also be the record date, and the buyer go appear for the holder list. If buy order fill on the ex date, settlement happen the business day after the snapshot, so the buyer miss am; the dividend remain with the seller. Selling on the ex date no make seller lose anything. The list come from settled positions at the close of that date, and sale on the ex date settle the next business day.

Settled funds and unsettled funds

Cash wey dey inside brokerage account get two states. Settled cash don complete im settlement cycle and nobody dey hold am for any obligation. Unsettled funds na money from sale wey never reach im settlement date.

For cash account, you fit buy with unsettled proceeds. But you no fit sell that new position before the sale wey fund am don settle. Brokers dey call this one good-faith violation. Make we use Monday as example: you sell $2,000 of stock A and immediately buy $2,000 of stock B. Proceeds from A go settle on Tuesday. If you sell B on Monday, the purchase no ever get settled funds to cover am, and na violation be that. If you hold B reach Tuesday, no violation dey.

Most brokers dey track these violations over rolling 12 months. After the third one, dem fit restrict the account to settled cash only for 90 days. Margin accounts dey work differently: dem dey extend credit against the position, and pattern day-trading rules apply there. T+1 no cancel good-faith violations. E only reduce the window wey dem fit happen from two days to one.

Everything dey settle inside one business day?

No. The cycle depend on the instrument.

  • Listed options dey settle T+1 on the premium, while exercise or assignment go deliver the underlying stock based on the equity cycle.
  • Mutual funds dey set price once every day at net asset value wey dem strike after market close. Each fund get im own settlement period, usually the next business day, but sometimes e fit longer. Our mutual fund settlement time guide explain the details for each fund.
  • US Treasuries commonly dey settle T+1, while spot currency trade normally dey settle T+2.
  • Other countries get their own cycles. The UK and European Union don set October 2027 as their target date for T+1.

When cash really become your own?

For sale, na for settlement, one business day after the fill. For dividend, na for payment date. The issuer dey set this date, and e no get connection with settlement cycle.

QueryEx-dividend date reach payment date, latest 2026 dividend for nine household payers
The exact SQL behind every number
SELECT
    ticker,
    formatDateTime(max(ex_dividend_date), '%b %e, %Y')                            AS latest_ex_date,
    dateDiff('day', max(ex_dividend_date), argMax(record_date, ex_dividend_date)) AS ex_to_record_days,
    dateDiff('day', max(ex_dividend_date), argMax(pay_date, ex_dividend_date))    AS ex_to_pay_days
FROM global_markets.stocks_dividends
WHERE ticker IN ('AAPL', 'MSFT', 'KO', 'JNJ', 'PG', 'XOM', 'CVX', 'PEP', 'MCD')
  AND ex_dividend_date >= '2026-01-01'
  AND ex_dividend_date <= today()
  AND record_date >= ex_dividend_date
  AND pay_date > ex_dividend_date
GROUP BY ticker
ORDER BY ex_to_pay_days
Run this yourself

For their latest 2026 dividends, the wait from ex-dividend date to payment range from 3 days (AAPL) reach 26 days (XOM). The ex-to-record gap na 0 for the fastest payer and 0 for the slowest. Settlement dey uniform across all of dem. Payment schedules no dey uniform. The upcoming ex-dividend dates calendar dey track which names go go ex next.

FAQ

Stock trade settle take how long?

One business day. US stock or ETF trade wey fill today go settle on the next trading day. Weekend and exchange holiday no dey count for the cycle.

Ex-dividend date still dey two business days before record date?

No. Na T+3 convention be that, and dem retire am for September 2017. Under T+1, both dates normally dey fall on the same day. The only exception na when record date fall on weekend or holiday; then ex date go move to the previous business day.

I need wait for settlement before I sell stock wey I just buy?

No. You fit sell position for the same session wey you buy am. For cash account, the restriction dey work the other way: if you sell position wey you pay for with proceeds from sale wey never settle, na good-faith violation be that.

Wetin T+1 mean for the money from my sale?

The proceeds remain unsettled funds until settlement date, wey be one business day after the trade fill. Many brokers allow you reinvest the money immediately, but if you wan withdraw am as cash, you normally need wait until settlement.

Who really dey move the shares between buyer and seller?

The clearing corporation dey net each broker’s obligations and guarantee dem. Then the depository dey move the shares against the cash through book entry on settlement date. Neither investor dey deal directly with the other person’s broker.


Every panel here get the exact SQL underneath am, so you fit recount any figure from the source rows. If you wan check specific ticker’s ex date and payment date, ask for am in plain English on the Strasmore terminal.

#settlement#t+1#clearing#dtcc#ex-dividend