Strasmore Research
Learn am Matt ConnorBy Matt Connor · Updated 2026-08-02

When Mutual Fund Trades Settle: Na When Cash Go Land?

Mutual fund settlement no be same as pricing. Follow one sale day by day to know when cash really land and wetin each business day mean for your money.

Mutual fund settlement na the date cash from fund order finish changing hands, and e no be the date wey order get price. Order wey fund accept before daily cutoff go get that day net asset value, then e go settle one or more business days later. Two clocks dey run for every order: pricing clock stop for the strike, while cash clock continue.

Pricing day and settlement day na two different clocks

Mutual fund dey calculate one price per day. After market close, e value wetin e hold, divide am by shares outstanding, then publish one net asset value (NAV). Every order wey enter before cutoff, commonly 4:00 pm ET, go fill for that one number. When mutual funds trade explain that part well, including forward-pricing rule wey make nobody know the price when dem place order. Fund order no get limit price too, and na the biggest difference from exchange world wey market orders and limit orders describe.

Settlement na the second step. Trade date na the day wey order get price. From there, dem count settlement forward in business days. Business day mean day wey exchanges and fund transfer agent, the firm wey keep share register, dey open. US mutual fund sale commonly settle one business day after trade date, written as T+1. Some funds use T+2. The number depend on the fund, no be industry-wide rule. Na why you need check the prospectus later below.

When mutual fund trades settle after a sale?

Two identical redemptions happen ninety minutes apart by the clock.

Order A enter at 1:00 pm ET on Thursday. E beat cutoff and get Thursday NAV price. Trade date na Thursday. For T+1 fund, proceeds settle on Friday, and Friday na the day cash become payable.

Order B enter at 4:30 pm ET that same Thursday. E miss cutoff, so e get Friday NAV price, which nobody know yet. Trade date na Friday. Settlement reach next business day, Monday.

Wall clock separate the two orders by ninety minutes. Calendar days separate the cash by three days. No fee or penalty dey involved. Second order enter one day later on both clocks, and each clock carry the delay forward.

Wetin count as business day

Weekends and market closures na wetin turn one business day into several calendar days. The widest of those breaks for 2026 so far:

QueryUS trading sessions dey break longest, January reach 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 run for 4 calendar days, with Fri Jan 16 to Tue Jan 20 of them. The shortest entries among the same top ten, ordinary weekends, run for 3 days. T+1 sale wey get price on session before any of those closures go pay on the other side of the closure.

The same counting explain why “one or two days” fit shift around inside one month.

QueryTrading sessions vs calendar days, twelve months reach 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 carry 21 sessions inside 30 calendar days. Settlement clock tick only on the first of those two numbers. Market holidays and early closes list the days wey e skip.

Settled and unsettled proceeds

Between trade date and settlement date, statement go show the money as unsettled. Settled cash na money wey trade don complete, and broker treat am as fully available. The difference matter as soon as you want use the money for another thing.

  • Purchase against unsettled proceeds usually go through. Most brokers accept the order.
  • Selling that new position before original sale settle na the trap. For cash account, e be good faith violation, and brokers commonly restrict account to settled funds for 90 days after repeated violations.

Margin accounts get different mechanics, and account agreement control the matter either way. Money wey leave brokerage completely, like wire or outbound bank transfer, wait until settlement date, no be pricing date.

An exchange inside one fund family

Exchange na when you swap one fund for another inside the same family with one instruction. Both legs get price at the same day’s strike, and the family move the money through its own books. No unsettled cash stay inside the account between the two legs.

Sale for one fund family followed by purchase for another one na two trades with two settlement clocks. Purchase get price at the next strike after you place am, and that fit be the same day. Sale cash arrive according to its own schedule. That gap na wetin exchange remove, and na why the same intention fit work differently under the two mechanics.

One thing exchange no change: for taxable account, tax treatment still see am as sale followed by purchase.

Where the rule dey written for your fund

Settlement conventions come from regulation and fund policy, and both don change. US securities settlement move from T+3 to T+2 in 2017, then to T+1 in May 2024. Fund families adjust their redemption schedules alongside those changes. Investment Company Act of 1940 give fund up to seven days to pay redemption proceeds. That na outer limit, no be normal practice.

Read the number from your own fund instead of memorizing one. Prospectus section usually get title like “Buying and Selling Shares” or “How to Redeem Shares”. E state when dem normally send proceeds and wetin fit delay am. Recent purchase paid by check, for example, fit delay later redemption until the check clear. Broker account agreement cover the rest: when proceeds become available for trading or withdrawal.

Wetin one day outside the market look like

Settlement window na period wey money no dey invested. One session na the usual unit, but sessions no dey behave the same way:

QueryHow far S&P 500 tracker move from open reach close: sessions by size band, July 2025 reach 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, under 0.25% band hold 32.7% of SPDR S&P 500 ETF Trust (SPY) sessions measured from open to close. Top band, 2% and up, hold 0.8% of them, making 2 sessions altogether. Typical single session quiet. Tail no be quiet.

The other side of the window na wetin cash earn while e wait. Money market funds and brokerage sweeps follow short end of Treasury curve, shown here beside the 10-year for scale:

QueryShort end vs long end of Treasury curve: monthly averages, July 2024 reach 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 average 3.81% in June 2026, compared with 5.43% in July 2024. One settlement day at those levels na small change for most balances. Proceeds wey sit idle for weeks na different matter, and where to park idle cash compare where you fit keep am.

FAQ

How long e take to remove money from mutual fund?

Two steps dey join together. Sale get price at next NAV strike after cutoff, then proceeds settle, commonly one business day later for T+1 fund. Transfer to bank account add its own time, and fund prospectus state the outer limit wey fund work toward.

Mutual funds dey settle T+1 or T+2?

Both dey exist. Many US funds move to T+1 together with wider market change in May 2024, while others still pay on T+2. Prospectus and trade confirmation carry the answer for the fund wey you hold.

I fit buy another fund before my sale settle?

For most cash accounts, you fit place purchase against unsettled proceeds. Restriction dey on selling that newly bought position before original sale settle. Brokers treat that as good faith violation.

Why one business day settlement sometimes dey take longer?

Settlement count business days, and weekends plus market closures no be business days. Sale wey get price on session before long closure go pay after the closure. For widest break of 2026 so far, e stretch to 4 calendar days.

Wetin be difference between trade date and settlement date?

Trade date na the day order receive fund NAV. Settlement date na the day cash and shares finish changing hands. Both dey appear on confirmation, but na only settlement date control when proceeds become payable.


Every figure above na stored query wey you fit open and rerun on Strasmore terminal. For pricing side, when mutual funds trade follow the daily strike, while the 8-4-3 rule follow fund money wey remain untouched for years.

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