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

Mutual Fund Frequent Trading Limits: Wetin E Mean

Mutual fund frequent trading limits no block your order. Rule 22c-2, the prospectus, and forward pricing na wetin decide round trips, fees, and purchase blocks.

Mutual fund frequent trading limits no stop you from putting in order. You fit submit buy or sell for any hour on any day, and the order go wait for the fund next pricing run. The limits answer one narrower question: whether the fund go accept that order after you recently trade the same fund, and wetin e go cost you if e accept am.

Three separate layers dey produce that answer, and na only two come from regulator. To keep dem separate na the main skill here.

  • Federal rules cap the fee wey fund fit charge for short holding period, and give the fund right to see your trading records even when broker dey hold the account.
  • The fund own prospectus define wetin count as round trip and how long purchase block go last.
  • Forward pricing decide which day price you go receive, no matter the time wey you click.

Wetin be mutual fund frequent trading limits?

Frequent trading limit na written policy wey fund use against short-term round trips. Round trip na when person buy and later redeem the same fund inside defined period, or redeem am and buy am again. Funds enforce the policy with two tools: short-term redemption fee, and temporary refusal of more purchase orders for that fund.

The way the policy work simple. Mutual fund price once every day, and e meet redemptions with cash or by selling holdings. Money wey enter and comot within few weeks dey leave transaction costs inside the portfolio, and every remaining shareholder dey own part of those costs. Frequent trading policy na attempt to push that cost back to the account wey create am.

This one no be exchange rule, and no regulator publish number of round trips wey you fit make. Federal rules set the outer limit for the fee, plus the process wey allow fund see your trades. The order timing underneath everything dey covered for our guide to when mutual fund orders actually trade.

Wetin SEC Rule 22c-2 really allow

Rule 22c-2 under Investment Company Act of 1940 do two things, and people often misunderstand both.

First, e allow fund board impose redemption fee up to 2 percent of the amount redeemed on shares wey person hold for short period. E allow am; e no require am. Two percent na ceiling, no be standard rate, and many funds no charge anything. Where the fee dey, e enter the fund itself, no be broker wey collect am. Na why industry call am cost recovery instead of commission.

Second, e require fund to keep written agreement with every financial intermediary wey carry its shares. The agreement give fund right to request shareholder identity and transaction information, and require intermediary to apply restrictions wey fund ask for. This answer the question wey most readers get: how fund go know when shares dey inside brokerage account or employer retirement plan, while fund only see one pooled position? E know when e request the information. Na also why the block usually come from your broker, no be directly from the fund.

Money market funds and exchange traded funds dey outside the rule. The same apply to fund wey openly allow short-term trading and disclose am inside its prospectus.

Who decide wetin count as round trip?

Na the prospectus decide. Every mutual fund register on Form N-1A, and the form require prospectus to describe the fund policy on frequent purchases and redemptions. That section, usually with title close to Frequent Purchases and Redemptions of Fund Shares, na the only authoritative statement of the limit for any particular fund.

Four things worth reading dey there:

  • whether short-term redemption fee apply, the rate, and the holding period wey trigger am
  • how fund count round trip, including whether exchange into sibling fund inside the same family count as one (e usually count, because exchange process as redemption plus purchase)
  • how long purchase block go last after e trigger
  • which orders exempt, like payroll contributions, automatic investment plans, and systematic withdrawals

No carry one specific window from a firm help page and treat am like general rule. Fund families dey revise these policies, and broker fit add its own house restrictions on top of wetin prospectus talk. The document wey govern your account na the current prospectus for the share class wey you hold.

Why cancelling and entering again no go give you earlier price

Forward pricing na the rule wey make order timing feel strange. Under Rule 22c-1, order get price at the next net asset value wey fund calculate after e receive am. Net asset value, or NAV, na per share value wey fund strike once every day after market close. If you cancel order and enter am again, e fit move you to the same NAV or later one, but e no fit move you to price wey fund don already strike.

The panel below focus on one normal session, March 17, 2026, and plot the five minute price marks of SPY, an exchange traded fund wey track broad US index, across regular session.

QuerySPY five-minute price marks across one full session
The exact SQL behind every number
SELECT
    formatDateTime(toStartOfInterval(toTimeZone(window_start, 'America/New_York'), INTERVAL 5 minute), '%H:%i') AS et_time,
    round(toFloat64(argMax(close, window_start)), 2) AS spy_price
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'SPY'
  AND window_start >= toDateTime('2026-03-17 00:00:00', 'America/New_York')
  AND window_start <  toDateTime('2026-03-18 00:00:00', 'America/New_York')
  AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
       + toMinute(toTimeZone(window_start, 'America/New_York'))) >= 570
  AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
       + toMinute(toTimeZone(window_start, 'America/New_York'))) < 960
GROUP BY et_time
ORDER BY et_time
Run this yourself

That session print 78 five minute marks. E start at $673.44 inside 09:30 bucket and finish at $670.73 inside 15:55 bucket. Fund wey hold similar basket go produce one number from that whole price path, and every order wey fund receive before cutoff go fill at that same number, whether person enter am during breakfast or seconds before close.

The gap between price wey you fit see when you decide and price wey you eventually receive no be random. E dey narrow as day dey move on.

QueryHow far SPY dey from im own closing print, by time of day
The exact SQL behind every number
WITH bars AS
(
    SELECT
        toDate(toTimeZone(window_start, 'America/New_York')) AS session_date,
        toTimeZone(window_start, 'America/New_York')         AS et_ts,
        toFloat64(close)                                     AS px
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'SPY'
      AND window_start >= today() - 370
      AND window_start <  today() - 2
      AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
           + toMinute(toTimeZone(window_start, 'America/New_York'))) >= 570
      AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
           + toMinute(toTimeZone(window_start, 'America/New_York'))) < 960
),
session_close AS
(
    SELECT
        session_date,
        argMax(px, et_ts) AS close_px
    FROM bars
    GROUP BY session_date
)
SELECT
    formatDateTime(toStartOfInterval(b.et_ts, INTERVAL 30 minute), '%H:%i') AS et_time,
    round(quantileDeterministic(0.5)(abs(b.px / c.close_px - 1) * 100, toUInt32(toUnixTimestamp(b.et_ts))), 3) AS median_gap_pct,
    round(quantileDeterministic(0.9)(abs(b.px / c.close_px - 1) * 100, toUInt32(toUnixTimestamp(b.et_ts))), 3) AS p90_gap_pct
FROM bars AS b
INNER JOIN session_close AS c ON c.session_date = b.session_date
GROUP BY et_time
ORDER BY et_time
Run this yourself

Across the trailing year, 09:30 half hour dey median 0.339 percent away from that day final print, while widest tenth of those minutes dey at least 0.959 percent away. By 15:30 bucket, the last of the 13 buckets for the session, median gap don narrow to 0.065 percent. SPY dey represent diversified portfolio here: fund own NAV no get intraday path wey you fit watch, and na exactly the point. Two related pieces explain the timing further: wetin time mutual fund prices update and the best time of day to sell mutual funds.

How long frequent trading block dey last?

Blocks dey written in calendar days, commonly 30, 60, or 90 from redemption date. Trading dey happen during sessions, and the two counts no be the same.

QueryTrading sessions inside common calendar-day block windows
The exact SQL behind every number
SELECT
    concat(toString(w.days), ' calendar days') AS block_window,
    countDistinct(s.d)                         AS trading_sessions
FROM
(
    SELECT arrayJoin([30, 60, 90, 180]) AS days
) AS w
CROSS JOIN
(
    SELECT DISTINCT toDate(toTimeZone(window_start, 'America/New_York')) AS d
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'SPY'
      AND window_start >= today() - 200
      AND window_start <  today() - 1
      AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
           + toMinute(toTimeZone(window_start, 'America/New_York'))) >= 570
      AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
           + toMinute(toTimeZone(window_start, 'America/New_York'))) < 960
) AS s
WHERE s.d > today() - w.days
GROUP BY w.days
ORDER BY w.days
Run this yourself

For the recent calendar, 30 calendar days block cover about 20 trading sessions. 90 calendar days work out to roughly 60, while 180 calendar days work out to about 123. Weekends and market holidays explain the whole difference.

Two dates matter, and dem no be the same date. Fee holding period usually count from purchase, while purchase block usually count from redemption. Settlement add a third date: see mutual fund settlement time to know when cash actually land. If sale happen at a loss, 30 day wash sale window run on its own clock alongside any fund block. We cover that for selling mutual funds at a loss.

ETFs get frequent trading limits?

No. ETF dey trade on exchange between buyers and sellers, so purchase no hand cash to the fund to invest, and sale no force fund to raise cash. No round trip counter dey, no purchase block dey, and no short-term redemption fee dey. You fit see the structural difference on the tape.

QueryMinutes traded and distinct prices for the same session
The exact SQL behind every number
SELECT
    ticker,
    count()              AS minutes_traded,
    countDistinct(close) AS distinct_prices
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('SPY', 'QQQ', 'IWM', 'DIA', 'VTI')
  AND window_start >= toDateTime('2026-03-17 00:00:00', 'America/New_York')
  AND window_start <  toDateTime('2026-03-18 00:00:00', 'America/New_York')
  AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
       + toMinute(toTimeZone(window_start, 'America/New_York'))) >= 570
  AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
       + toMinute(toTimeZone(window_start, 'America/New_York'))) < 960
GROUP BY ticker
ORDER BY minutes_traded DESC, ticker
Run this yourself

For that same March session, DIA trade in 390 separate minutes of regular session and print 230 different minute closing prices. All 5 funds in the panel trade continuously through the day. ETFs get their own frictions instead: bid ask spread on every trade, plus market price wey fit stay above or below the value of the underlying holdings.

FAQ

Mutual fund fit refuse my purchase order?

Yes. Fund fit reject or restrict purchase under frequent trading policy for its prospectus, and e fit ask broker wey hold your account to apply the restriction for am. Redemptions dey work differently: fund generally go process sale and charge any applicable short-term fee instead of blocking am.

How much mutual fund short-term redemption fee dey?

Rule 22c-2 cap am at 2 percent of the amount redeemed, and the money go to the fund, no be broker. Many funds no charge anything. Each fund prospectus state the rate and holding period wey trigger am.

Switching between funds inside same family count as round trip?

Usually yes. Exchange dey process as redemption of one fund and purchase of another, so e fit start fee clock and block on both sides. Each fund prospectus state how e count its own exchange privilege.

Frequent trading limits apply inside 401(k) or IRA?

Dem fit apply. Retirement accounts hold fund shares through intermediary, and Rule 22c-2 agreements give fund access to that trading data when e request am. Plan record keepers often add their own restrictions, like equity wash rules attached to stable value options.

Cancelling order go give me different price?

No earlier price. Forward pricing assign the next NAV wey fund calculate after e receive order. So cancel and enter again go land on the same daily price or a later one.


Every panel above carry the SQL wey produce am, and you fit expand am underneath. If you want ask the same question about fund wey you hold, write am in plain English on Strasmore terminal.

#mutual funds#redemption fees#round trips#sec rules#etfs