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

Monthly Dividend ETFs: Who Actually Pays

Monthly dividend ETFs pay 12 times a year. See which fund families actually do it, why the headline yield is not comparable, and when the cash lands.

Monthly dividend ETFs pay a cash distribution twelve times a year instead of the usual four. Almost every one of them belongs to one of three structural families, and each family produces that monthly cash a different way. The schedule itself tells you when the money lands. It says nothing about how large the payment will be, or what the payment is made of.

What makes an ETF a monthly dividend ETF?

An ETF, an exchange traded fund, is a basket of securities that trades like a single stock. Whatever income the basket collects, coupons from bonds, dividends from shares, premium from options the fund has sold, goes out to shareholders as a distribution. The fund sponsor picks the calendar: monthly, quarterly, semiannual, or annual. That choice is administrative, and it does not change what the portfolio earns.

The distinction matters for anyone searching for monthly income. A quarterly fund holding the same bonds as a monthly fund collects the same coupons and simply batches the payout. Our monthly dividend stocks guide makes the same point for individual companies, where monthly payers are rare and cluster in a few industries. In fund form the monthly calendar is far more common, and counting the distributions is the only durable way to verify one: a fund's marketing page can be edited, while the payment record cannot.

QueryDistributions per year: monthly funds beside quarterly benchmarks
The exact SQL behind every number
SELECT
    ticker,
    multiIf(
        ticker IN ('AGG', 'HYG', 'BKLN'),   'Bond and loan',
        ticker IN ('QYLD', 'JEPI', 'JEPQ'), 'Derivative income',
        ticker IN ('PFF', 'SRET', 'SDIV'),  'REIT, BDC and preferred',
                                            'Quarterly benchmark'
    )                                             AS fund_family,
    round(countDistinct(ex_dividend_date) / 3, 1) AS payments_per_year
FROM global_markets.stocks_dividends
WHERE ticker IN ('AGG', 'HYG', 'BKLN', 'QYLD', 'JEPI', 'JEPQ',
                 'PFF', 'SRET', 'SDIV', 'SPY', 'SCHD', 'VNQ')
  AND ex_dividend_date >= today() - 1095
  AND ex_dividend_date <  today()
GROUP BY ticker
ORDER BY payments_per_year DESC, ticker
Run this yourself

Across the 12 funds in the panel, the top of the list paid 12 distributions a year over the last three years and the bottom paid 4. Very little sits in between. A fund runs on a monthly calendar or a quarterly one, and it stays on that calendar for years at a time. The family column beside each ticker is the part worth remembering, since it describes where the cash originates.

Which ETFs pay dividends monthly?

Three fund structures account for nearly all of them.

  • Bond and loan funds. Corporate, municipal and government bonds pay coupons on their own staggered dates. A fund holding hundreds of them receives cash almost continuously, and a monthly payout keeps the least cash idle between payments. Bank loan funds do the same with floating rate loans, whose coupons reset alongside short term interest rates.
  • Covered call and derivative income funds. These hold an equity portfolio and sell call options against it, collecting an option premium up front. New options are typically written every month or every week, and the premium arrives on a rhythm that supports a monthly distribution. Our covered call ETF guide works through what that premium costs the holder: the fund gives up the portfolio's gains above the strike price of the calls it sold.
  • REIT, BDC and preferred share funds. Real estate investment trusts and business development companies must distribute most of their taxable income to keep their tax treatment. Preferred shares pay fixed dividends on scheduled dates. A fund built from these holdings has contractual cash arriving all year.

Do monthly dividend ETFs pay more than quarterly ones?

Not as a rule. Payment frequency and payment size are set separately, and no fund earns extra income by writing twelve cheques instead of four. The one mechanical difference belongs to reinvestment: cash reinvested monthly begins compounding sooner than cash that waits three months. Over a full year that gap is measured in basis points, hundredths of a percentage point, rather than in whole percentage points.

What does move the headline number is what the fund holds. The panel below takes the same funds, adds up the last twelve months of cash distributions, and divides by the current share price. That figure is the trailing distribution rate, the number most screeners print next to a fund's name.

QueryTrailing 12 month distribution rate, by fund family
The exact SQL behind every number
WITH
    ttm AS
    (
        SELECT
            ticker,
            sum(amount) AS ttm_cash
        FROM
        (
            SELECT
                ticker,
                ex_dividend_date,
                max(toFloat64(cash_amount)) AS amount
            FROM global_markets.stocks_dividends
            WHERE ticker IN ('AGG', 'HYG', 'BKLN', 'QYLD', 'JEPI', 'JEPQ',
                             'PFF', 'SRET', 'SDIV', 'SPY', 'SCHD', 'VNQ')
              AND ex_dividend_date >= today() - 365
              AND ex_dividend_date <  today()
            GROUP BY ticker, ex_dividend_date
        )
        GROUP BY ticker
    ),
    px AS
    (
        SELECT
            ticker,
            argMax(toFloat64(close), date) AS last_close
        FROM global_markets.stocks_daily_aggs
        WHERE ticker IN ('AGG', 'HYG', 'BKLN', 'QYLD', 'JEPI', 'JEPQ',
                         'PFF', 'SRET', 'SDIV', 'SPY', 'SCHD', 'VNQ')
          AND date >= today() - 45
        GROUP BY ticker
    )
SELECT
    px.ticker AS ticker,
    multiIf(
        px.ticker IN ('AGG', 'HYG', 'BKLN'),   'Bond and loan',
        px.ticker IN ('QYLD', 'JEPI', 'JEPQ'), 'Derivative income',
        px.ticker IN ('PFF', 'SRET', 'SDIV'),  'REIT, BDC and preferred',
                                               'Quarterly benchmark'
    )                                              AS fund_family,
    round(100 * ttm.ttm_cash / px.last_close, 2)   AS trailing_rate_pct
FROM px
INNER JOIN ttm ON px.ticker = ttm.ticker
ORDER BY trailing_rate_pct DESC
Run this yourself

Sorted from the highest rate to the lowest, the panel runs from 11.58% at the top down to 0.97% at the bottom. Read the family column alongside it. The ordering tracks what each fund owns and how it books income, and the monthly payers land across most of that range rather than bunching at one end.

Why two monthly ETFs with the same yield are not comparable

A distribution rate looks backward at cash already paid, and one unusually large payment inside the window lifts it. The SEC 30 day yield is a different measurement: a standardised calculation of the income the portfolio earned over the trailing month, net of expenses, on a formula every US fund must use. The two can disagree sharply on the same fund on the same day. SEC 30 day yield versus distribution yield works through the arithmetic.

The second gap is what the cash is made of. Part of a distribution can be return of capital, money paid out that the fund did not earn as income. It reduces your cost basis instead of counting as income in the year you receive it, and it can hold a headline rate steady while a portion of each payment is principal coming back to you. Return of capital in ETF distributions covers where funds disclose it: the Section 19 notice that accompanies a payment, and the annual 1099-DIV. Comparing two monthly funds on the headline rate alone puts a bond fund's coupon income next to an option seller's premium and treats them as the same number.

How steady is a monthly ETF distribution?

Monthly does not mean fixed. The per share amount is reset for each payment, and funds from different families move for different reasons. The panel tracks the last 24 complete months for a Nasdaq 100 covered call fund and a core investment grade bond fund.

QueryMonthly cash per share: an option income fund and a bond fund
The exact SQL behind every number
WITH paid AS
(
    SELECT
        ticker,
        ex_dividend_date,
        max(toFloat64(cash_amount)) AS amount
    FROM global_markets.stocks_dividends
    WHERE ticker IN ('QYLD', 'AGG')
      AND ex_dividend_date >= subtractMonths(toStartOfMonth(today()), 24)
      AND ex_dividend_date <  toStartOfMonth(today())
    GROUP BY ticker, ex_dividend_date
)
SELECT
    toString(toStartOfMonth(ex_dividend_date)) AS month,
    round(sumIf(amount, ticker = 'QYLD'), 4)   AS option_income_per_share,
    round(sumIf(amount, ticker = 'AGG'), 4)    AS bond_fund_per_share
FROM paid
GROUP BY month
ORDER BY month
Run this yourself

Neither series is a flat line. The bond fund's payment drifts with the coupon rates on the bonds it buys as older holdings mature. The option income fund's payment moves with the premium available when it writes each month's calls, which rises and falls alongside option volatility. In the most recent complete month shown, the covered call fund paid $0.1775 per share and the bond fund paid $0.3307. Neither figure is a commitment about the next month. A fund can raise or cut the size of a distribution at any time, and the payment history is the record of what it has done, not a schedule of what comes next.

When does the cash actually arrive?

Three dates govern every distribution. The ex dividend date is the first day the fund trades without the upcoming payment attached, and owning the shares before that date is what entitles you to the cash. The record date confirms the ownership. The pay date is when the money reaches the account. The ex dividend date explained walks through the settlement mechanics behind those three dates.

QueryDays from ex dividend date to cash, monthly paying funds
The exact SQL behind every number
SELECT
    ticker,
    round(avg(dateDiff('day', ex_dividend_date, pay_date_actual)), 1) AS avg_days_ex_to_pay
FROM
(
    SELECT
        ticker,
        ex_dividend_date,
        max(pay_date) AS pay_date_actual
    FROM global_markets.stocks_dividends
    WHERE ticker IN ('AGG', 'HYG', 'BKLN', 'QYLD', 'JEPI', 'JEPQ',
                     'PFF', 'SRET', 'SDIV')
      AND ex_dividend_date >= today() - 730
      AND ex_dividend_date <  today()
      AND pay_date >= ex_dividend_date
    GROUP BY ticker, ex_dividend_date
)
GROUP BY ticker
ORDER BY avg_days_ex_to_pay DESC
Run this yourself

Averaged over the last two years of payments, the wait from the ex date to the cash runs from 2.8 days at the short end of this group to 7.2 days at the long end. A monthly schedule means twelve of those cycles a year rather than four, which is its real practical appeal: the payment calendar can be lined up with a monthly budget. Building $1,000 a month in dividends runs the capital arithmetic behind a target monthly figure.

FAQ

Which ETFs pay dividends every month?

Monthly payers cluster in bond and bank loan funds, in covered call or derivative income funds, and in funds holding REITs, BDCs or preferred shares. Rather than trusting a published list, which ages quickly, count a fund's distributions over the last three years the way the first panel above does.

Do monthly dividend ETFs yield more than quarterly ones?

Payment frequency does not set payment size. A monthly fund and a quarterly fund holding similar assets can distribute a similar amount over a year. The only structural difference is that monthly cash can be reinvested sooner, which is worth a few basis points a year at ordinary rates.

Are monthly ETF distributions taxed differently from quarterly ones?

No. Distributions are taxed by what they contain rather than by how often they arrive. A single fund can pay ordinary income, qualified dividends, capital gains and return of capital across the same year, all broken out on the annual 1099-DIV.

What is the difference between a distribution rate and the SEC 30 day yield?

The distribution rate annualises cash the fund has already paid, divided by its share price. The SEC 30 day yield is a standardised formula based on the portfolio's earned income over the past month, net of fees. A wide gap between the two figures is a prompt to look at what the distribution is made of.

Can a monthly ETF cut its distribution?

Yes. Monthly funds reset the per share amount for each payment, and that amount can move up or down from one month to the next. The payment history is a record of what a fund has paid, and it carries no obligation about future payments.


Every panel on this page carries the SQL that produced it. Expand one to see exactly which distributions were counted and over which dates. To check any fund's payment record yourself, ask the question in plain English on the Strasmore terminal.