Strasmore Research
Learn Matt ConnorBy Matt Connor

When Do Mutual Fund Trades Settle?

Mutual fund settlement runs on a different clock than fund pricing. Walk a sale through both clocks, day by day, and see when the cash is really yours.

Mutual fund settlement is the date the cash from a fund order finishes changing hands, and it is not the date the order gets its price. An order accepted before the fund's daily cutoff is priced at that day's net asset value, then settles one or more business days later. Two clocks run on every order: the pricing clock stops at the strike, and the cash clock keeps going.

Pricing day and settlement day are two different clocks

A mutual fund computes one price a day. After the close it values what it holds, divides by the shares outstanding, and publishes a single net asset value (NAV). Every order that arrived before the cutoff, commonly 4:00 pm ET, is filled at that one number. When mutual funds trade covers that half in detail, including the forward-pricing rule that keeps anyone from knowing the price at the moment they order. A fund order also carries no limit price, which is the sharpest break from the exchange world described in market orders and limit orders.

Settlement is the second step. The trade date is the day the order was priced. From there, settlement is counted forward in business days, where a business day means a day the exchanges and the fund's transfer agent, the firm that keeps its share register, are open. A US mutual fund sale commonly settles one business day after the trade date, written T+1. Some funds use T+2. The number belongs to the fund and not to the industry, which is the point of the prospectus check further down.

When do mutual fund trades settle after a sale?

Two identical redemptions, ninety minutes apart on the clock.

Order A is entered at 1:00 pm ET on a Thursday. It beats the cutoff and is priced at Thursday's NAV. Trade date Thursday. On a T+1 fund the proceeds settle Friday, and Friday is the day the cash is payable.

Order B is entered at 4:30 pm ET the same Thursday. It missed the cutoff, and it prices at Friday's NAV, a number nobody knows yet. Trade date Friday. Settlement lands on the next business day, Monday.

Ninety minutes of wall clock separate the two orders. Three calendar days separate the cash. No fee or penalty is involved. The second order entered a day later on both clocks, and each clock passed the delay along.

What counts as a business day

Weekends and market closures are what turn one business day into several calendar days. The widest of those breaks in 2026 so far:

QueryLongest breaks between US trading sessions, January to late July 2026
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 toDate(toTimeZone(window_start, 'America/New_York')) BETWEEN toDate('2026-01-01') AND toDate('2026-07-24')
      AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
           + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959
),
ordered AS (
    SELECT arraySort(groupArray(session_date)) AS days
    FROM sessions
),
pairs AS (
    SELECT arrayJoin(arrayZip(arraySlice(days, 1, length(days) - 1), arraySlice(days, 2))) AS pair
    FROM ordered
)
SELECT concat(formatDateTimeInJodaSyntax(pair.1, 'EEE MMM d'), ' to ',
              formatDateTimeInJodaSyntax(pair.2, 'EEE MMM d')) AS session_pair,
       dateDiff('day', pair.1, pair.2) AS calendar_days
FROM pairs
WHERE dateDiff('day', pair.1, pair.2) > 1
ORDER BY calendar_days DESC, pair.1 ASC
LIMIT 10
Run this yourself

The longest breaks between one session and the next ran 4 calendar days, Fri Jan 16 to Tue Jan 20 among them. The shortest entries in the same top ten, ordinary weekends, ran 3 days. A T+1 sale priced on the session before any of those closures pays out on the far side of it.

The same counting explains why "a day or two" drifts around inside a month.

QueryTrading sessions vs calendar days, twelve months through June 2026
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 toDate(toTimeZone(window_start, 'America/New_York')) BETWEEN toDate('2025-07-01') AND toDate('2026-06-30')
      AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
           + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959
)
SELECT formatDateTime(toStartOfMonth(session_date), '%Y-%m') AS month,
       formatDateTimeInJodaSyntax(toStartOfMonth(session_date), 'MMMM yyyy') AS month_label,
       count() AS trading_sessions,
       toDayOfMonth(toLastDayOfMonth(session_date)) AS calendar_days
FROM sessions
GROUP BY month, month_label, calendar_days
ORDER BY month
Run this yourself

June 2026 carried 21 sessions inside 30 calendar days. The settlement clock ticks only on the first of those two numbers. Market holidays and early closes lists the days it skips.

Settled and unsettled proceeds

Between the trade date and the settlement date the money shows on your statement as unsettled. Settled cash is money whose trade has completed, which the broker treats as fully available. The distinction bites the moment you want to do something else with it.

  • A purchase against unsettled proceeds usually goes through. Most brokers accept the order.
  • Selling that new position before the original sale settles is the trap. In a cash account it is a good faith violation, and brokers commonly restrict an account to settled funds for 90 days after repeat violations.

Margin accounts follow different mechanics, and the account agreement governs either way. Money leaving the brokerage entirely, a wire or an outbound bank transfer, waits on the settlement date rather than the pricing date.

An exchange inside one fund family

An exchange swaps one fund for another inside the same family in a single instruction. Both legs price at the same day's strike, and the family moves the money on its own books. No unsettled cash sits in the account between the two legs.

A sale at one family followed by a purchase at another is two trades with two settlement clocks. The purchase prices at the next strike after it is placed, which can be the same day, while the sale's cash arrives on its own schedule. That gap is what an exchange removes, and it is why the same intent plays out differently under the two mechanics.

One thing an exchange does not change: in a taxable account it is still a sale followed by a purchase for tax purposes.

Where the rule is written for your fund

Settlement conventions come from regulation and from fund policy, and both have moved. US securities settlement went from T+3 to T+2 in 2017 and to T+1 in May 2024, with fund families adjusting their redemption schedules alongside those changes. The Investment Company Act of 1940 gives a fund up to seven days to pay redemption proceeds, an outer bound rather than a normal practice.

Read the number off your own fund instead of memorizing one. The prospectus section is usually titled "Buying and Selling Shares" or "How to Redeem Shares", and it states when proceeds are normally sent and what can hold them up. A recent purchase paid by check, for instance, can delay a later redemption until the check clears. Your broker's account agreement covers the rest: when proceeds become available to trade with or to withdraw.

What a day out of the market looks like

A settlement window is a stretch of time when the money is not invested. One session is the usual unit, and sessions differ from each other:

QueryHow far the S&P 500 tracker moved open to close: sessions by size band, July 2025 to June 2026
The exact SQL behind every number
WITH daily AS (
    SELECT toDate(toTimeZone(window_start, 'America/New_York')) AS session_date,
           argMin(open, window_start) AS session_open,
           argMax(close, window_start) AS session_close
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'SPY'
      AND toDate(toTimeZone(window_start, 'America/New_York')) BETWEEN toDate('2025-07-01') AND toDate('2026-06-30')
      AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
           + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959
    GROUP BY session_date
),
moves AS (
    SELECT round(abs(session_close - session_open) / session_open * 100, 3) AS abs_move_pct
    FROM daily
    WHERE session_open > 0
)
SELECT multiIf(abs_move_pct < 0.25, 'under 0.25%',
               abs_move_pct < 0.5, '0.25% to 0.5%',
               abs_move_pct < 1, '0.5% to 1%',
               abs_move_pct < 2, '1% to 2%',
               '2% and up') AS move_band,
       count() AS session_count,
       round(100 * count() / sum(count()) OVER (), 1) AS share_pct
FROM moves
GROUP BY move_band
ORDER BY min(abs_move_pct)
Run this yourself

Across the twelve months through June 2026, the under 0.25% band held 32.7% of SPDR S&P 500 ETF Trust (SPY) sessions measured from the open to the close. The top band, 2% and up, held 0.8% of them, 2 sessions in all. The typical single session is quiet. The tail is not.

The other side of the window is what the cash earns while it waits. Money market funds and brokerage sweeps track the short end of the Treasury curve, plotted here beside the 10-year for scale:

QueryShort end vs long end of the Treasury curve: monthly averages, July 2024 to June 2026
The exact SQL behind every number
SELECT formatDateTime(toStartOfMonth(date), '%Y-%m') AS month,
       formatDateTimeInJodaSyntax(toStartOfMonth(date), 'MMMM yyyy') AS month_label,
       round(avg(yield_3_month), 2) AS bill_3m_pct,
       round(avg(yield_10_year), 2) AS treasury_10y_pct
FROM global_markets.treasury_yields
WHERE date BETWEEN toDate('2024-07-01') AND toDate('2026-06-30')
  AND yield_3_month IS NOT NULL
  AND yield_10_year IS NOT NULL
GROUP BY month, month_label
ORDER BY month
Run this yourself

The 3-month Treasury bill averaged 3.81% in June 2026, against 5.43% in July 2024. One settlement day at those levels is small change on most balances. Weeks of proceeds left sitting is a different quantity, and where to park idle cash compares the places it can sit.

FAQ

How long does it take to get money out of a mutual fund?

Two steps stack up. The sale is priced at the next NAV strike after the cutoff, then the proceeds settle, commonly one business day later on a T+1 fund. A transfer to a bank account adds its own time on top, and the fund's prospectus states the outer limit the fund works to.

Do mutual funds settle T+1 or T+2?

Both exist. Many US funds moved to T+1 alongside the broader market shift in May 2024, and others still pay on T+2. The prospectus and your trade confirmation carry the answer for the fund you hold.

Can I buy another fund before my sale settles?

In most cash accounts a purchase can be placed against unsettled proceeds. The restriction is on selling that newly bought position before the original sale settles, which brokers treat as a good faith violation.

Why does a one business day settlement sometimes take longer?

Settlement counts business days, and weekends and market closures are not business days. A sale priced on the session before a long closure pays on the far side of it, which stretched to 4 calendar days at the widest break of 2026 so far.

What is the difference between the trade date and the settlement date?

The trade date is the day the order received the fund's NAV. The settlement date is the day cash and shares finish changing hands. Both appear on the confirmation, and only the second one governs when the proceeds are payable.


Every figure above is a stored query you can open and rerun on the Strasmore terminal. For the pricing half of the story, when mutual funds trade walks the daily strike, and the 8-4-3 rule follows fund money left alone for years.

#mutual funds#settlement#nav#brokerage mechanics#cash