monthly dividend stocks wey pay twelve times a year
Monthly dividend stocks pay twelve times a year. See why quarterly na US standard, which structures pay monthly, and how di two yields compare.
Monthly dividend stocks dey pay dia holders twelve times for one year instead of di normal four times. Almost all of dem get one of dis few legal structures: real estate investment trusts, business development companies, and closed-end or covered-call income funds. Di schedule na payout policy, no be quality rating, and dis page dey explain di mechanics behind am.
Why quarterly be di US standard
Di quarterly habit follow di reporting calendar. One company wey list for US dey file result four times for one year, and board don dey declare dividend for di same meeting wey dem approve di quarter figures. Every declaration also set four dates wey di transfer agent go process: declaration date, record date, ex-dividend date, and pay date. Twelve cycles for one year carry three times di administrative load of four, but di annual cash no change.
Di record wey dey show how di convention dey lopsided. Di panel below count every ticker wey get at least one recurring cash dividend between July 2025 and June 2026, wey dem group by di schedule wey di payer declare.
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 DESCDi Quarterly group be di biggest at 4925 tickers, 38.9% of all payers wey dey file. Monthly payers number 1994, 15.7% of di population. Look at di payments column instead of di ticker column, and di picture invert: di Monthly group average 10.2 payments per ticker for di year against 3.5 for di Quarterly group, and e generate 20320 individual payments for total. One small slice of di market dey do most of di paying.
Which structures dey pay every month
Three families dey make up most of the monthly list, and each one get structural reason to hand cash out for short cycle.
- A real estate investment trust must distribute most of im taxable income every year to keep im tax treatment. Rent dey come every month, and a monthly distribution dey match the cash cycle of the underlying business.
- A business development company dey lend to private mid-sized firms and elect regulated investment company treatment, wey carry similar annual distribution requirement. Loan interest also dey arrive for monthly or quarterly coupon schedule.
- Closed-end funds and covered-call income funds dey run a stated distribution policy: the manager dey declare a fixed monthly amount per share, wey dem fund from interest, option premium, realised gains, or return of capital.
Operating companies outside those forms no dey often adopt a monthly schedule. The full screened list of names wey dey pay twelve times a year now dey inside the monthly dividend stocks list.
Di yield gap between di schedules
Sorting liquid payers by schedule show how far apart di two populations dey. Each name wey dey below trade at least $20 million of value during June 2026 and above $5 per share, with im trailing twelve months of declared cash divide by im late-June price.
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 DESCMonthly payers show a median trailing yield of 4.83% across 843 names, against 1.9% for di 2421 Quarterly names. Di upper tail dey wider still: di 90th percentile monthly payer read 11.04%.
Dat gap dey measure composition, not generosity. Di monthly column dey dominated by pass-through structures and option-income funds, wey dey distribute big part of wetin dem collect and dey keep very little for reinvestment. A quarterly-paying operating company dey hold earnings back for capital spending and buybacks, and im yield dey sit lower on dat arithmetic alone. If you compare a monthly payer headline number against a broad market average, you dey compare two different corporate forms. Wetin count as good dividend yield set out di calibration for more detail.
Wetin di calendar really change
Di schedule dey change di time wey di cash come, no be di total for di year. Di table below take two 2025 payment calendars, one wey dey pay every month and one wey dey pay every quarter, and show how much of each name full-year cash land for each month.
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 mDi monthly line dey flat near 8.2% for every month of di year. Di quarterly line dey show 0% for eight months and 25% for each of di four pay months, di first one be April. For di whole twelve months, both holders collect di same fraction of dia annual income: all of am.
Two tings follow from di shape alone. Smoothing get real use for anybody wey dey draw income month to month, because monthly deposit remove di need to hold cash buffer across di empty months. A reinvested monthly distribution also dey compound small earlier than quarterly one, na small effect for ordinary yields and no be reason by itself to prefer one schedule.
A quarterly ladder produce di same twelve deposits without any monthly payer at all. US quarterly cycles dey cluster into three offset groups: some names dey pay for January, April, July, and October, others for February, May, August, and November, and di rest for March, June, September, and December. Three quarterly holdings, one from each group, dey fill all twelve months. Di upcoming ex-dividend dates calendar show which cycle a given name dey sit for, and building a $1,000 a month dividend income dey work through di position sizing.
De read monthly payer ein yield against ein record
Di screen wey most readers dey use dey sort monthly payers by yield. Yield na di last twelve months of cash wey dem pay, divide by today price, so if price dey fall, di number go rise by itself, even wen price dey fall together with reduced payment. Di panel below dey group liquid monthly payers by wetin happen to dia monthly rate between di second half of 2023 and di twelve months wey dey end June 2026.
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_pctFrom di 133 names wey dey inside Rate cut group, di typical rate change na -22.7%, and dat group still carry median yield of 4.76%. E account for 21.8% of di liquid monthly universe over di window. A yield screen wey dem run today go list those names beside di 179 names wey dey inside Rate raised over 25% group, wey dia median rate change na 48.2%, and di two groups dey look similar for one yield column.
Di distinguishing information dey inside di payment history, not inside di yield. Three checks dey available to anybody wey hold di record: whether di monthly rate don move and which direction, whether di payout dey covered by di cash flow wey di structure dey generate, and how much of a fund distribution na return of capital. How dividend cuts show up for di record dey walk di first check, and di dividend payout ratio dey cover di second one.
Tax character of a monthly distribution
Monthly cash dey tax based on wetin e be, no be based on how many times e arrive. REIT distributions na mostly ordinary income, with some part wey sometimes dem classify as capital gain or return of capital, and di return-of-capital part dey reduce di holder cost basis instead of dem tax am when e arrive. BDC distributions na mostly ordinary income too. Fund distributions dem break am for di year-end 1099 into ordinary, qualified, capital gain, and return of capital components, and dat split no dey known until di form arrive. Qualified dividends, wey common among big quarterly-paying operating companies, dem tax am at long-term capital gains rates when di holding-period test around di ex-dividend date dey meet. Two names wey dey quote di same yield fit leave very different after-tax income. Rates and classifications dey change, and a tax professional dey beat a blog post.
FAQ
Which kind of company dey pay monthly dividend?
Na real estate investment trusts, business development companies, and closed-end or covered-call income funds dey do am. Each one either get annual distribution requirement wey come from how dem dey tax am, or dem get stated distribution policy. Ordinary operating companies, dem almost always dey pay quarterly.
Monthly dividend stock dey pay pass quarterly one?
Di two groups, dem differ for composition, not for how much dem dey give. Among liquid US payers wey get twelve months of declared cash reach June 2026, di median monthly payer wey dey trail get yield wey be 4.83% against 1.9% for quarterly payers. And di monthly group, na pass-through structures dey dominate am — dem no dey keep much of wetin dem collect.
How many US-listed stocks dey pay dividend every month?
Between July 2025 and June 2026, 1994 tickers wey dey record declare monthly recurring cash dividend, wey be 15.7% of all payers for dat window. Dat group still produce 20320 individual payments, wey pass any other schedule.
Monthly income fit come from quarterly dividend stocks?
Yes. US quarterly cycles dey fall into three offset groups — one wey start for January, one for February, and one for March. If you hold one name from each group, you go get payment for every month of di year, even without any monthly payer.
Monthly dividend dey compound faster pass quarterly one?
If you reinvest di cash wey you get every month, e go start to compound some weeks earlier pass di same annual amount wey dem pay quarterly. For ordinary yields, di difference over one year na small fraction of percentage point, wey dey below di effect of change for di payout itself.
Every figure wey dey above come from stored, versioned query over filed dividend records and real prices. Open any panel ein SQL, or screen payment schedules yourself for Strasmore terminal.