When Mutual Funds Dey Pay Dividends?
Mutual funds fit pay dividends monthly, quarterly or annually, while capital gains normally come once for December. See calendar, NAV drop and tax trap.
Mutual funds dey pay dividend according to schedule wey depend on wetin the fund hold: monthly for most bond funds, quarterly for most stock funds. Semi-annual and annual schedules dey too, and prospectus dey name the schedule wey fund plan to follow. Another separate payment, capital gains distribution, normally dey come once a year for the final weeks of December. Both events reduce the fund's net asset value on the day wey dem pay am, but na only the first one people mean when dem talk about dividend.
When mutual funds dey pay dividends?
Fund's income distribution na money wey portfolio collect during the period: interest from bonds and dividends from stocks, minus fund expenses. Bond interest dey come continuously, so bond funds normally pass am through monthly. Company dividends dey come in quarterly lumps, so stock funds normally pay quarterly. Fund dey maintain the stated cadence for years at a time.
The pattern easy to see for exchange-listed funds, wey publish per-share record for every payment wey dem make. Fourteen large funds, with every record filed across the three years from 2023 through 2025:
The exact SQL behind every number
SELECT ticker,
multiIf(ticker IN ('AGG', 'BND', 'LQD', 'HYG', 'TLT'), 'bonds',
ticker = 'PFF', 'preferred shares',
ticker = 'JEPI', 'stocks with options written against them',
ticker = 'VNQ', 'real estate securities',
ticker IN ('SCHD', 'VYM'), 'dividend-paying stocks',
'large-cap stocks') AS portfolio,
round(count() / 3, 1) AS payouts_per_year,
uniqExact(toMonth(ex_dividend_date)) AS calendar_months_used,
round(sum(toFloat64(cash_amount)) / 3, 3) AS annual_total_usd,
round(avg(toFloat64(cash_amount)), 4) AS avg_payment_usd
FROM global_markets.stocks_dividends
WHERE ticker IN ('AGG', 'BND', 'LQD', 'HYG', 'TLT', 'PFF', 'JEPI',
'SPY', 'VOO', 'VTI', 'QQQ', 'SCHD', 'VYM', 'VNQ')
AND cash_amount > 0
AND ex_dividend_date >= toDate('2023-01-01')
AND ex_dividend_date <= toDate('2025-12-31')
GROUP BY ticker
ORDER BY payouts_per_year DESC, ticker ASCThe lineup split according to wetin each fund hold. AGG, wey hold bonds, file 12 distribution records every year and use 11 calendar months to do am, with average of $3.54 per share per year in total. For the other end of the panel, VYM, wey hold dividend-paying stocks, file 4 records every year across 4 months. Same wrapper, same tax rules, different clocks.
The size of each payment dey change too. Fund hand over wetin the holdings actually pay, and that amount change with the coupons and dividends collected. Three years of monthly payments from one large bond fund:
The exact SQL behind every number
SELECT formatDateTime(toStartOfMonth(ex_dividend_date), '%Y-%m') AS month,
formatDateTimeInJodaSyntax(toStartOfMonth(ex_dividend_date), 'MMMM yyyy') AS month_label,
round(sum(toFloat64(cash_amount)), 4) AS distribution_per_share,
count() AS records
FROM global_markets.stocks_dividends
WHERE ticker = 'AGG'
AND cash_amount > 0
AND ex_dividend_date >= toDate('2023-07-01')
AND ex_dividend_date <= toDate('2026-06-30')
GROUP BY toStartOfMonth(ex_dividend_date)
ORDER BY toStartOfMonth(ex_dividend_date)The cadence fixed at one payment every month across all 33 months. The amount no fixed: $0.2547 per share in July 2023 against $0.3315 in June 2026, with every month between dem setting its own figure. Fund's quoted yield na arithmetic based on trailing year of those payments, and e dey move as the payments move. Dividend yield explain that calculation.
Income and capital gains na two different distributions
Income distribution pass through wetin the portfolio earn. Capital gains distribution pass through profit wey fund manager realize by selling holdings during the year, and e no depend on whether you sell anything.
Fund wey qualify as regulated investment company no pay fund-level tax on income and gains wey e pass through to shareholders. The price of that treatment na to pass the income and gains through. Most funds settle once, during the final weeks of December, and publish estimated amounts for October and November before the record dates.
That year-end habit dey show for the market's overall payment calendar. Every US-listed distribution record from 2023 through 2025, with once-a-year payers separated from the full population:
The exact SQL behind every number
SELECT toMonth(ex_dividend_date) AS month,
['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'][toMonth(ex_dividend_date)] AS month_label,
round(100 * countIf(frequency = 1)
/ greatest(sum(countIf(frequency = 1)) OVER (), 1), 1) AS annual_payer_share_pct,
round(100 * count()
/ greatest(sum(count()) OVER (), 1), 1) AS all_payer_share_pct
FROM global_markets.stocks_dividends
WHERE ex_dividend_date >= toDate('2023-01-01')
AND ex_dividend_date <= toDate('2025-12-31')
AND cash_amount > 0
GROUP BY month
ORDER BY monthAcross all payers, the calendar nearly flat. December carry 14.2% of the year's records, close to the 8.3% wey equal split across twelve months go produce. The once-a-year group different: 24.7% of records from payers on annual schedule get December ex-date, clearly above that equal split. Year end na when payers wey pay once clear their books.
The four dates for fund distribution
Every distribution follow the same sequence.
- Declaration date: fund announce the amount per share and the dates connected to am.
- Record date: shareholders wey dey on the fund's books when that day close receive the payment.
- Ex-dividend date: fund's net asset value reduce by the distribution amount when that day start, and buyer wey buy on or after that date no receive the payment. For exchange-listed shares, one-day settlement now make ex-date and record date fall on the same day.
- Payable or reinvestment date: cash enter the account, or new shares dey bought with am at that day's NAV.
The order matter for one practical question: whether your purchase count. Mutual fund order dey price at the NAV struck after the fund's daily cutoff, and order wey fund accept before cutoff on record date fit still put you on the books for that payment. When mutual funds trade cover the cutoff and pricing rule, while mutual fund settlement cover when the cash enter. The same pair of dates for stocks dey explained in record date vs ex-dividend date and the ex-dividend date explained.
Why your balance no dey move when fund pay
Na this mechanic dey confuse everybody, and na pure arithmetic. Suppose fund's NAV na $10.00 and e distribute $0.50 per share. On ex-date, NAV mark down to $9.50. If you hold 100 shares, you own $950 of fund plus $50 cash: $1,000. If you reinvest am, that $50 buy 5.263 extra shares at $9.50, giving you 105.263 shares worth $9.50 each: again $1,000. Share count increase. The money no increase.
See the same staircase for real fund. Each ex-date across three years, the price on that date, and the share count wey person starting with 100 shares go accumulate by reinvesting every payment:
The exact SQL behind every number
WITH daily AS (
SELECT toDate(toTimeZone(window_start, 'America/New_York')) AS d,
argMax(close, window_start) AS session_close
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'AGG'
AND toDate(toTimeZone(window_start, 'America/New_York')) >= toDate('2023-07-01')
AND toDate(toTimeZone(window_start, 'America/New_York')) <= 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 d
),
paid AS (
SELECT ex_dividend_date AS d,
sum(toFloat64(cash_amount)) AS amount
FROM global_markets.stocks_dividends
WHERE ticker = 'AGG'
AND cash_amount > 0
AND ex_dividend_date >= toDate('2023-07-01')
AND ex_dividend_date <= toDate('2026-06-30')
GROUP BY d
),
matched AS (
SELECT paid.d AS ex_date,
paid.amount AS amount,
toFloat64(daily.session_close) AS px
FROM paid
INNER JOIN daily ON paid.d = daily.d
)
SELECT formatDateTime(ex_date, '%Y-%m-%d') AS date,
formatDateTimeInJodaSyntax(ex_date, 'MMMM yyyy') AS date_label,
round(px, 2) AS fund_price,
round(100 * exp(sum(log(1 + amount / px))
OVER (ORDER BY ex_date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW)), 3) AS shares_owned
FROM matched
ORDER BY ex_dateShare count rise with every payment: 100.261 after the first ex-date in July 2023, and 111.856 after the last one in June 2026. The price line do another thing entirely, $97.58 at the start of the trace against $98.69 at the end. Two facts dey inside one panel. Reduction at every ex-date na mechanical and exact. Day-to-day price dey come from trading through the rest of the session, and one day's move rarely match the payment exactly. More shares no be the same claim as more money; na price answer that question separately.
Wetin buying the dividend mean for taxable account
Buying the dividend na name for the December surprise, and e affect only taxable account. Work the numbers for hypothetical example. You put $10,000 into fund on December 10 at $50 per share, giving you 200 shares. On December 15, fund distribute $3.50 per share in capital gains. Your 200 shares generate $700, NAV mark down to $46.50, and your position become $9,300 of fund plus $700 cash or new shares. Total: the same $10,000 wey you start with five days earlier, plus taxable event.
The gains wey dem distribute, manager realize across the whole year, mostly before you enter, and tax form no care say you hold the fund for five days. For tax-deferred account, distribution no taxable currently and the question disappear. For taxable account, fund's published estimate show the expected payment size weeks before record date. The other side of the ledger get its own details: selling mutual funds at a loss cover dem.
Do ETFs distribute the same way?
The four dates and NAV reduction identical. Capital gains line na where dem differ. ETF meet most redemptions by giving securities in kind to an authorized participant instead of selling them, and broad ETFs rarely make capital gains distribution at all. Mutual fund manager wey sell holdings to meet other shareholders' redemptions realize gains wey every remaining shareholder inherit. Mutual funds vs ETFs take the comparison further. Funds wey sell options against their stock holdings distribute monthly, with option premium inside the mix; covered call ETFs explain am.
Data notes and method
The panels read filed per-share distribution records for exchange-listed funds, where dem publish each payment separately. Open-end mutual fund follow the same declaration, record, ex and reinvestment sequence against its daily NAV instead of market price.
The share-count trace assume 100 shares held before the first ex-date shown, every distribution reinvested at the closing price on its ex-date, and fractional shares allowed. E no include taxes or purchase cost.
The calendar panel count distribution records, not dollars, and payer's schedule na the frequency attached to each record.
Mutual fund dividend FAQ
Do all mutual funds dey pay dividends every month?
No. Monthly na the normal pattern for bond funds, while quarterly na normal for most stock funds. Semi-annual and annual mandates dey inside the mix too. Across the funds for the first panel, the busiest schedule produce 12 distribution records per year and the quietest 4.
When mutual funds dey pay capital gains distributions?
Almost always once a year, during the final weeks of December, with estimated amounts published in October and November. Of every distribution record filed by US-listed payers on annual schedule from 2023 through 2025, 24.7% get December ex-date.
Fund distribution add to my account value?
No. NAV reduce by the amount paid on ex-date, so $0.50 distribution on $10.00 NAV leave $9.50 of fund plus $0.50 cash or reinvested shares. The account composition change, but total no change.
Reinvested mutual fund dividends taxable?
For taxable account, yes. Distribution taxable in the year dem pay am, whether e arrive as cash or new shares, and the reinvested amount add to your cost basis. Tax-deferred accounts defer the question completely.
Wetin be buying the dividend?
Na when person buy fund for taxable account shortly before distribution. E give you taxable payment and matching reduction in NAV on day one. The position still worth wetin e worth before, but tax bill don enter.
Every panel here na stored query with its SQL attached. Open one, change the ticker or years, and run am on the Strasmore terminal.