Mutual Funds vs ETFs: What Actually Differs
Mutual funds vs ETFs: one price a day at NAV against a live market price. See what really differs in pricing, spreads, capital gains, and share classes.
Mutual funds vs ETFs comes down to one structural difference, and most of the others follow from it: when your order gets a price. A mutual fund takes orders all day and fills every one of them at a single value struck after the close, its net asset value (NAV). An ETF is a listed security that trades continuously through the session: the price you get is the price quoted at the moment your order reaches the market.
Do mutual funds trade during the day?
No. A fund company computes NAV once each business day, after the close, and every order accepted for that day is filled at that one number. The name for this is forward pricing: you place the order without knowing the price, and the price arrives afterward. Two people buying the same fund at 10:04 in the morning and 3:58 in the afternoon pay exactly the same amount per share. The order deadline has mechanics of its own, walked through in when mutual funds trade and price.
An ETF works the other way. Here is one ordinary session in VOO, the Vanguard S&P 500 ETF, in half-hour marks across the full trading day.
The exact SQL behind every number
WITH bars AS (
SELECT toStartOfInterval(toTimeZone(window_start, 'America/New_York'), INTERVAL 30 MINUTE) AS bucket,
argMax(close, window_start) AS last_price,
sum(volume) AS shares
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'VOO'
AND toDate(toTimeZone(window_start, 'America/New_York')) = toDate('2026-07-22')
GROUP BY bucket
)
SELECT formatDateTime(bucket, '%H:%i') AS et_time,
round(last_price, 2) AS voo_price,
shares AS volume
FROM bars
ORDER BY bucketTrading in VOO that Wednesday began at 04:00 ET at $685.8 and finished at 19:30 ET at $686.26, with 32 half-hour marks on the tape. Each mark is a price somebody actually paid. A holder of an S&P 500 index mutual fund had one price available that day and did not learn it until the evening.
What is NAV, and how is an ETF's price different?
NAV is arithmetic: holdings valued at their closing prices, minus liabilities, divided by shares outstanding. A mutual fund transaction happens at that number by definition.
An ETF has a NAV too, struck the same way once a day, and you do not transact at it. You transact at the market price. The two stay close through creation and redemption: large firms called authorized participants exchange a basket of the underlying securities for new ETF shares, or hand ETF shares back for the basket. When the market price sits above the value of the holdings, running that exchange one way is profitable; when it sits below, the other way is. The gap is usually pennies on a large index ETF, and wider on funds holding assets that are themselves hard to trade.
How much does the distinction matter? It scales with how far the price travels inside a day. Seven familiar funds, every session in July 2026:
The exact SQL behind every number
WITH daily AS (
SELECT ticker,
toDate(toTimeZone(window_start, 'America/New_York')) AS session_date,
max(high) AS day_high,
min(low) AS day_low,
argMax(close, window_start) AS day_close
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('SPY', 'VOO', 'QQQ', 'IWM', 'VNQ', 'XLU', 'AMLP')
AND toDate(toTimeZone(window_start, 'America/New_York')) >= toDate('2026-07-01')
AND toDate(toTimeZone(window_start, 'America/New_York')) <= toDate('2026-07-31')
GROUP BY ticker, session_date
)
SELECT ticker,
count() AS sessions,
round(avg(100 * toFloat64(day_high - day_low) / toFloat64(day_close)), 2) AS avg_range_pct,
round(max(100 * toFloat64(day_high - day_low) / toFloat64(day_close)), 2) AS widest_range_pct
FROM daily
GROUP BY ticker
ORDER BY avg_range_pct DESCQQQ covered an average of 2.25% between its daily high and low across 22 sessions, and 3.92% on its widest day. At the quiet end, VOO averaged 1.12%. That average range is the question a mutual fund buyer never has to answer, and the opening an ETF buyer can work with using a limit order.
What does the bid-ask spread cost an ETF buyer?
A listed security is quoted as two prices at once: a bid, where someone will buy from you, and an ask, where someone will sell to you. The gap between them is the bid-ask spread, and crossing it is a real cost, paid in the fill rather than billed as a fee. Mutual fund holders do not pay it. Their transactions happen at NAV.
Quoted spreads on the same seven funds, through the middle of that Wednesday:
The exact SQL behind every number
SELECT ticker,
round(count() / 1000000, 2) AS quote_count_millions,
round(quantileDeterministic(0.5)(20000 * toFloat64(ask_price - bid_price) / toFloat64(ask_price + bid_price),
cityHash64(sip_timestamp)), 2) AS median_spread_bps,
round(quantileDeterministic(0.9)(20000 * toFloat64(ask_price - bid_price) / toFloat64(ask_price + bid_price),
cityHash64(sip_timestamp)), 2) AS p90_spread_bps
FROM global_markets.cache_stocks_quotes
WHERE ticker IN ('SPY', 'VOO', 'QQQ', 'IWM', 'VNQ', 'XLU', 'AMLP')
AND toDate(toTimeZone(sip_timestamp, 'America/New_York')) = toDate('2026-07-22')
AND toHour(toTimeZone(sip_timestamp, 'America/New_York')) BETWEEN 11 AND 13
AND bid_price > 0
AND ask_price > bid_price
AND toFloat64(ask_price - bid_price) / toFloat64(ask_price) < 0.05
GROUP BY ticker
ORDER BY median_spread_bps DESCThe arithmetic is convenient: a spread of one basis point costs one dollar per $10,000 traded. XLU quoted a median of 2.19 basis points, with nine quotes in ten at or under 2.19. SPY quoted a median of 0.27. Spreads also move through the day, a pattern spreads at the open traces minute by minute, and the price a retail order actually meets is the consolidated best quote explained in the NBBO.
Why ETFs hand out fewer capital gain distributions
This difference shows up on a tax form rather than a screen, and it traces to the same creation and redemption plumbing.
A mutual fund meeting net redemptions in cash may sell holdings to raise that cash. Gains realized on those sales, net of losses, are distributed at year end to everyone still holding the fund, including a shareholder who bought in November and never held the position while it appreciated. An ETF settles redemptions in kind: the authorized participant receives securities. Handing over securities is not a sale, and no gain is realized on the exchange. Managers can also hand out the lowest-cost-basis lots, which trims the unrealized gain left in the portfolio.
Two caveats keep this honest. ETFs still distribute the dividend and interest income their holdings pay, taxed in the normal way, and some ETFs do declare capital gains, particularly ones holding futures, derivatives, or bonds that cannot travel in a basket. None of it matters inside an IRA or a 401(k), where distributions are not taxed in the year they land. The tax question on the other side of a sale is covered in selling mutual funds at a loss.
Costs, minimums, and access
Expense ratios attach to a share class rather than to a strategy, so an institutional mutual fund class can undercut the ETF running the same portfolio. Mutual funds commonly set a minimum initial investment, and some classes carry a sales load or a 12b-1 distribution fee. An ETF has no minimum beyond the price of one share, and brokers offering fractional shares remove even that.
The trade-offs run both ways. A mutual fund accepts an exact dollar amount and automates recurring purchases cleanly. An ETF accepts limit orders, trades all session, and settles on the equity timetable rather than the fund one, a difference laid out in mutual fund settlement time. Some strategies live in one wrapper only: covered call ETFs and leveraged ETFs are exchange-traded products by construction.
Can a mutual fund have an ETF share class?
Yes, and the answer changed recently. For two decades one manager ran the structure: Vanguard held a patent, filed in 2001, on offering an exchange-traded class of an existing index fund, under which VOO and the Vanguard 500 Index Fund became two classes of one portfolio. That patent expired in May 2023.
On November 17, 2025 the SEC granted Dimensional Fund Advisors an exemptive order permitting an ETF class alongside conventional classes of the same fund. The first exchange-traded class of an existing actively managed mutual fund listed on March 20, 2026: DFMC, a class of the Dimensional US Micro Cap Portfolio, a fund that has operated since 1981. Roughly 100 applications for the same relief were on file with the Commission by March 2026.
The class closed its first week on the tape, Mar 16, at $49.08 on 1165.5 thousand shares. By the week of Jul 27, the 20th week of trading, it closed at $59.97 on 88.7 thousand shares.
What it changes for a retail holder is narrower than the headlines suggest. One portfolio, one manager, one set of holdings, and two ways to own it. The order carries conditions: the fund's board makes an initial and then an annual determination that the arrangement remains in the interest of both classes, and it monitors cash levels, brokerage costs, and how realized gains are allocated between classes. The class you already hold keeps pricing once a day at NAV. Whether an existing holder can convert into the exchange-traded class is set fund by fund and stated in the prospectus, not by the order.
Mutual funds vs ETFs: how to choose
The mechanics produce a rule rather than a verdict. Match the wrapper to the constraint you actually have.
If contributions arrive on a schedule and the priority is putting an exact dollar amount to work without crossing a spread, the fund structure does that by design. If the priority is naming the price you pay, or holding down year-end capital gain distributions in a taxable account, the exchange-traded structure is built for it. Where both wrappers hold the same index at a similar expense ratio, what is left is the plumbing on this page.
FAQ
Do mutual funds trade during the day?
No. Orders reach the fund throughout the day, and every one accepted for that business day is filled at the NAV computed after the close. An ETF holding a similar portfolio printed 32 distinct half-hour marks on the single session charted above.
Is an ETF always cheaper than a mutual fund?
Not automatically. The expense ratio belongs to the share class, and a large institutional fund class can charge less than the comparable ETF. The ETF adds a cost the fund does not have: median quoted spreads on the seven funds here ran from 0.27 to 2.19 basis points, a dollar per $10,000 traded for each basis point.
Do ETFs pay capital gains distributions?
Many broad equity index ETFs go years without one. Redemptions settled in kind do not realize a gain, which keeps the year-end distribution small. It is not a guarantee: ETFs holding futures, derivatives, or thinly traded bonds do distribute capital gains, and every ETF passes through the dividend and interest income it collects.
Can I own the same fund as both a mutual fund and an ETF?
Increasingly yes. Vanguard has offered ETF share classes of its index funds for two decades, and the SEC's order of November 17, 2025 opened the structure to other fund families, with the first actively managed example listing on March 20, 2026. Whether you can convert existing shares from one class to the other is a fund-by-fund matter set out in the prospectus.
Data notes and method
The intraday panel buckets every VOO minute bar on Wednesday, July 22, 2026 into half-hour marks in Eastern time, across the full trading day including the pre-market and after-hours sessions. A bucket appears only where trading occurred.
Daily ranges use each session's high and low over that same full trading day, which runs wider than a regular-hours-only measurement.
Quoted spreads come from individual venue quotes between 11:00 and 13:59 ET on July 22, 2026, taking the ask minus the bid over the midpoint, in basis points. Quotes with a non-positive bid, a crossed market, or a spread above 5% of price are excluded. A consolidated best quote is tighter than a typical single-venue quote.
Mutual fund NAVs are not exchange data and are not measured here. Every panel is exchange-traded pricing, which is itself the point: the mutual fund side of this comparison has one price per day and no intraday record to chart.
Regulatory dates come from the SEC's exemptive order for Dimensional Fund Advisors, Investment Company Act Release No. 35786, dated November 17, 2025, and from the March 20, 2026 listing of the first exchange-traded class of an existing actively managed fund.
Every number on this page is a stored query over exchange data, with the SQL under each panel. Run the same measurements on a fund you already own on the Strasmore terminal.