Strasmore Research
Learn Matt ConnorBy Matt Connor

Monthly Dividend Stocks Explained

Monthly dividend stocks pay twelve times a year. See why quarterly is the US standard, which structures pay monthly, and how the two yields compare.

Monthly dividend stocks pay their holders twelve times a year rather than the usual four. Nearly all of them share one of a few legal structures: real estate investment trusts, business development companies, and closed-end or covered-call income funds. The schedule is a payout policy, not a quality rating, and this page walks the mechanics behind it.

Why quarterly is the US standard

The quarterly habit follows the reporting calendar. A US-listed company files results four times a year, and boards have long declared the dividend at the same meeting that approves the quarter's figures. Every declaration also sets four dates that the transfer agent has to process: a declaration date, a record date, an ex-dividend date, and a pay date. Twelve cycles a year carry three times the administrative load of four, with no change to the annual cash.

The record on file shows how lopsided the convention is. The panel below counts every ticker with at least one recurring cash dividend between July 2025 and June 2026, grouped by the schedule the payer declared.

QueryRecurring cash dividends by declared schedule: every payer on file, July 2025 through June 2026
The exact SQL behind every number
SELECT multiIf(freq = 4, 'Quarterly',
               freq = 2, 'Twice a year',
               freq = 1, 'Once a year',
               freq = 12, 'Monthly',
               'Other schedule') AS schedule,
       uniqExact(ticker) AS tickers,
       count() AS payments,
       round(count() / uniqExact(ticker), 1) AS payments_per_ticker,
       round(100 * uniqExact(ticker) / (SELECT uniqExact(ticker)
                                        FROM global_markets.stocks_dividends
                                        WHERE ex_dividend_date >= '2025-07-01'
                                          AND ex_dividend_date <= '2026-06-30'
                                          AND cash_amount > 0
                                          AND distribution_type = 'recurring'), 1) AS share_of_payers_pct
FROM (
    SELECT ticker,
           ex_dividend_date,
           argMax(frequency, ex_dividend_date) OVER (PARTITION BY ticker) AS freq
    FROM global_markets.stocks_dividends
    WHERE ex_dividend_date >= '2025-07-01'
      AND ex_dividend_date <= '2026-06-30'
      AND cash_amount > 0
      AND distribution_type = 'recurring'
)
GROUP BY schedule
ORDER BY tickers DESC
Run this yourself

The Quarterly group is the largest at 4925 tickers, 38.9% of all payers on file. Monthly payers number 1994, 15.7% of the population. Look at the payments column instead of the ticker column and the picture inverts: the Monthly group averages 10.2 payments per ticker over the year against 3.5 for the Quarterly group, and it generates 20320 individual payments in total. A small slice of the market does most of the paying.

Which structures pay every month

Three families account for most of the monthly list, and each has a structural reason to hand cash out on a short cycle.

  • A real estate investment trust must distribute most of its taxable income each year to keep its tax treatment. Rent arrives monthly, and a monthly distribution matches the cash cycle of the underlying business.
  • A business development company lends to private mid-sized firms and elects regulated investment company treatment, which carries a similar annual distribution requirement. Loan interest also arrives on a monthly or quarterly coupon schedule.
  • Closed-end funds and covered-call income funds run a stated distribution policy: the manager declares a fixed monthly amount per share, funded from interest, option premium, realised gains, or return of capital.

Operating companies outside those forms rarely adopt a monthly schedule. The full screened list of names currently paying twelve times a year lives in the monthly dividend stocks list.

The yield gap between the schedules

Sorting liquid payers by schedule shows how far apart the two populations sit. Each name below traded at least $20 million of value during June 2026 and above $5 a share, with its trailing twelve months of declared cash divided by its late-June price.

QueryTrailing yield by payment schedule: liquid US-listed payers, twelve months of cash through June 2026
The exact SQL behind every number
WITH sched AS (
    SELECT ticker,
           argMax(frequency, ex_dividend_date) AS freq,
           sum(cash_amount) AS ttm_cash
    FROM global_markets.stocks_dividends
    WHERE cash_amount > 0
      AND distribution_type = 'recurring'
      AND ex_dividend_date >= '2025-07-01'
      AND ex_dividend_date <= '2026-06-30'
      AND ticker NOT IN ('SPCX')
    GROUP BY ticker
    HAVING freq IN (1, 2, 4, 12)
),
tape AS (
    SELECT ticker,
           argMax(toFloat64(close), window_start) AS last_close,
           sum(toFloat64(close) * volume) AS dollar_vol
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker IN (SELECT ticker FROM sched)
      AND window_start >= toDateTime('2026-06-01 00:00:00')
      AND window_start < toDateTime('2026-07-01 00:00:00')
      AND toHour(toTimeZone(window_start, 'America/New_York')) * 60
          + toMinute(toTimeZone(window_start, 'America/New_York')) BETWEEN 570 AND 959
    GROUP BY ticker
    HAVING last_close > 5 AND dollar_vol >= 20000000
)
SELECT multiIf(freq = 12, 'Monthly',
               freq = 4, 'Quarterly',
               freq = 2, 'Twice a year',
               'Once a year') AS schedule,
       count() AS tickers,
       round(quantileDeterministic(0.5)(100 * ttm_cash / last_close, cityHash64(ticker)), 2) AS median_trailing_yield_pct,
       round(quantileDeterministic(0.9)(100 * ttm_cash / last_close, cityHash64(ticker)), 2) AS p90_trailing_yield_pct
FROM sched
INNER JOIN tape USING (ticker)
GROUP BY schedule
ORDER BY median_trailing_yield_pct DESC
Run this yourself

Monthly payers show a median trailing yield of 4.83% across 843 names, against 1.9% for the 2421 Quarterly names. The upper tail is wider still: the 90th percentile monthly payer reads 11.04%.

That gap measures composition rather than generosity. The monthly column is dominated by pass-through structures and option-income funds, which distribute a large share of what they collect and retain very little for reinvestment. A quarterly-paying operating company holds earnings back for capital spending and buybacks, and its yield sits lower on that arithmetic alone. Comparing a monthly payer's headline number against a broad market average compares two different corporate forms. What counts as a good dividend yield sets out the calibration in more detail.

What the calendar actually changes

The schedule changes the timing of the cash, not the annual total. The panel below takes two 2025 payment calendars, one monthly payer and one quarterly payer, and shows what share of each name's full-year cash landed in each month.

QueryShare of a full year's dividend cash arriving in each month: one monthly payer and one quarterly payer, 2025 pay dates
The exact SQL behind every number
WITH base AS (
    SELECT toStartOfMonth(pay_date) AS m,
           ifNull(sumIf(cash_amount, ticker = 'O'), 0) AS o_cash,
           ifNull(sumIf(cash_amount, ticker = 'KO'), 0) AS ko_cash
    FROM global_markets.stocks_dividends
    WHERE ticker IN ('O', 'KO')
      AND cash_amount > 0
      AND distribution_type = 'recurring'
      AND pay_date >= '2025-01-01'
      AND pay_date <= '2025-12-31'
    GROUP BY m
)
SELECT formatDateTime(m, '%Y-%m') AS month,
       formatDateTimeInJodaSyntax(m, 'MMMM') AS month_label,
       round(100 * o_cash / sum(o_cash) OVER (), 1) AS monthly_payer_pct_of_year,
       round(100 * ko_cash / sum(ko_cash) OVER (), 1) AS quarterly_payer_pct_of_year
FROM base
ORDER BY m
Run this yourself

The monthly line sits flat near 8.2% in every month of the year. The quarterly line reads 0% for eight months and 25% in each of the four pay months, the first of them April. Over the twelve months both holders collected the same fraction of their annual income: all of it.

Two points follow from the shape alone. Smoothing has a real use for anyone drawing income month to month, since a monthly deposit removes the need to hold a cash buffer across the empty months. A reinvested monthly distribution also compounds slightly earlier than a quarterly one, a small effect at ordinary yields and not a reason on its own to prefer one schedule.

A quarterly ladder produces the same twelve deposits without any monthly payer at all. US quarterly cycles cluster into three offset groups: some names pay in January, April, July, and October, others in February, May, August, and November, and the rest in March, June, September, and December. Three quarterly holdings, one from each group, fill all twelve months. The upcoming ex-dividend dates calendar shows which cycle a given name sits in, and building a $1,000 a month dividend income works through the position sizing.

Reading a monthly payer's yield against its record

The screen most readers reach for sorts monthly payers by yield. A yield is the last twelve months of cash divided by today's price, so a falling price lifts the number on its own, including when the price falls alongside a reduced payment. The panel below groups liquid monthly payers by what happened to their monthly rate between the second half of 2023 and the twelve months ending June 2026.

QueryLiquid monthly payers grouped by the change in their monthly rate over three years, with each group's current yield
The exact SQL behind every number
WITH monthly AS (
    SELECT ticker,
           argMaxIf(cash_amount, ex_dividend_date, ex_dividend_date >= '2025-07-01') AS recent_rate,
           argMinIf(cash_amount, ex_dividend_date, ex_dividend_date <= '2023-12-31') AS early_rate
    FROM global_markets.stocks_dividends
    WHERE cash_amount > 0
      AND distribution_type = 'recurring'
      AND ex_dividend_date >= '2023-07-01'
      AND ex_dividend_date <= '2026-06-30'
      AND ticker NOT IN ('SPCX')
    GROUP BY ticker
    HAVING countIf(ex_dividend_date >= '2025-07-01') BETWEEN 10 AND 14
       AND argMax(frequency, ex_dividend_date) = 12
       AND countIf(ex_dividend_date <= '2023-12-31') >= 4
       AND early_rate > 0
),
tape AS (
    SELECT ticker,
           argMax(toFloat64(close), window_start) AS last_close,
           sum(toFloat64(close) * volume) AS dollar_vol
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker IN (SELECT ticker FROM monthly)
      AND window_start >= toDateTime('2026-06-01 00:00:00')
      AND window_start < toDateTime('2026-07-01 00:00:00')
      AND toHour(toTimeZone(window_start, 'America/New_York')) * 60
          + toMinute(toTimeZone(window_start, 'America/New_York')) BETWEEN 570 AND 959
    GROUP BY ticker
    HAVING last_close > 0 AND dollar_vol >= 20000000
)
SELECT multiIf(100 * (recent_rate - early_rate) / early_rate < -5, 'Rate cut',
               100 * (recent_rate - early_rate) / early_rate <= 5, 'Rate held flat',
               100 * (recent_rate - early_rate) / early_rate <= 25, 'Rate raised up to 25%',
               'Rate raised over 25%') AS rate_direction,
       count() AS payers,
       round(100 * count() / sum(count()) OVER (), 1) AS share_of_group_pct,
       round(quantileDeterministic(0.5)(100 * recent_rate * 12 / last_close, cityHash64(ticker)), 2) AS median_yield_pct,
       round(quantileDeterministic(0.5)(100 * (recent_rate - early_rate) / early_rate, cityHash64(ticker)), 1) AS median_rate_change_pct
FROM monthly
INNER JOIN tape USING (ticker)
GROUP BY rate_direction
ORDER BY median_rate_change_pct
Run this yourself

Of the 133 names in the Rate cut group, the typical rate change was -22.7%, and that group still carries a median yield of 4.76%. It accounts for 21.8% of the liquid monthly universe over the window. A yield screen run today lists those names beside the 179 names in the Rate raised over 25% group, whose median rate change was 48.2%, and the two groups look similar in a single yield column.

The distinguishing information sits in the payment history rather than in the yield. Three checks are available to anyone holding the record: whether the monthly rate has moved and in which direction, whether the payout is covered by the cash flow the structure generates, and how much of a fund's distribution is return of capital. How dividend cuts show up in the record walks the first check, and the dividend payout ratio covers the second.

Tax character of a monthly distribution

Monthly cash is taxed on what it is, not on how often it arrives. REIT distributions are largely ordinary income, with a portion sometimes classified as capital gain or return of capital, and a return-of-capital portion lowers the holder's cost basis rather than being taxed on receipt. BDC distributions are mostly ordinary income too. Fund distributions are broken out on the year-end 1099 into ordinary, qualified, capital gain, and return of capital components, and that split is not known until the form arrives. Qualified dividends, common among large quarterly-paying operating companies, are taxed at long-term capital gains rates when the holding-period test around the ex-dividend date is met. Two names quoting the same yield can leave very different after-tax income. Rates and classifications change, and a tax professional beats a blog post.

FAQ

Which types of companies pay monthly dividends?

Mostly real estate investment trusts, business development companies, and closed-end or covered-call income funds. Each either faces an annual distribution requirement tied to its tax treatment or runs a stated distribution policy. Ordinary operating companies almost always pay quarterly.

Do monthly dividend stocks pay more than quarterly ones?

The two populations differ in composition rather than in generosity. Among liquid US payers with twelve months of declared cash through June 2026, the median monthly payer's trailing yield was 4.83% against 1.9% for quarterly payers, and the monthly group is dominated by pass-through structures that retain very little of what they collect.

How many US-listed stocks pay dividends monthly?

Between July 2025 and June 2026, 1994 tickers on file declared a monthly recurring cash dividend, 15.7% of all payers over that window. That group still produced 20320 individual payments, more than any other schedule.

Can monthly income come from quarterly dividend stocks?

Yes. US quarterly cycles fall into three offset groups, one starting in January, one in February, and one in March. Holding one name from each group produces a payment in every month of the year without any monthly payer.

Does a monthly dividend compound faster than a quarterly one?

Reinvested monthly cash starts compounding a few weeks earlier on average than the same annual amount paid quarterly. At ordinary yields the difference over a year is a small fraction of a percentage point, well below the effect of a change in the payout itself.


Every figure above comes from a stored, versioned query over filed dividend records and real prices. Open any panel's SQL, or screen payment schedules yourself on the Strasmore terminal.