Monthly dividend stocks - filing companies paying every month, ranked by daily traded value
Answered against 22 years of US equities and 12 years of US options data and published with the query that produced it. This result is stored as of 2026-08-22, from Monthly Dividend Stocks: The Full List.
| ticker | monthly_payment_usd | annual_yield_pct | years_paying_monthly | avg_daily_traded_musd | priced_through |
|---|---|---|---|---|---|
| O | 0.271 | 5.18 | 14.1 | 213.5 | Aug 21 |
| AGNC | 0.12 | 13.2 | 11.8 | 170.1 | Aug 21 |
| DOC | 0.1017 | 5.73 | 1.5 | 76.7 | Aug 21 |
| DX | 0.17 | 15.59 | 7.6 | 58.2 | Aug 21 |
| ADC | 0.267 | 4.33 | 5.6 | 57 | Aug 21 |
| ARR | 0.24 | 17.62 | 6.2 | 47.1 | Aug 21 |
| APLE | 0.08 | 5.8 | 4.6 | 33.9 | Aug 21 |
| EPR | 0.31 | 6.15 | 5 | 29.6 | Aug 21 |
| MAIN | 0.265 | 5.45 | 13.9 | 28.3 | Aug 21 |
| ORC | 0.1 | 17.92 | 13.4 | 26 | Aug 21 |
| PECO | 0.1083 | 3.3 | 5 | 23 | Aug 21 |
| SMA | 0.1359 | 4.76 | 1.3 | 16.3 | Aug 21 |
| LTC | 0.19 | 5.65 | 14.2 | 14.6 | Aug 21 |
| CSWC | 0.1934 | 9.32 | 1.2 | 13 | Aug 21 |
| EFC | 0.13 | 11.41 | 7.3 | 11.6 | Aug 21 |
| PSEC | 0.035 | 18.1 | 13.8 | 8.1 | Aug 21 |
| PFLT | 0.08 | 13.02 | 14.1 | 6.9 | Aug 21 |
| LAND | 0.0467 | 6.47 | 13.5 | 4.3 | Aug 21 |
| GOOD | 0.1 | 9.27 | 14.2 | 4 | Aug 21 |
| PBT | 0.0436 | 1.53 | 14.1 | 3.9 | Aug 21 |
| CION | 0.1 | 16.35 | 0.7 | 3.5 | Aug 21 |
| GLAD | 0.15 | 9.15 | 14.1 | 2.8 | Aug 21 |
| HRZN | 0.06 | 14.84 | 13.8 | 2.7 | Aug 21 |
| GAIN | 0.08 | 5.84 | 14.1 | 2.7 | Aug 21 |
| SBR | 0.6194 | 10.21 | 14.1 | 2.3 | Aug 19 |
| SAR | 0.25 | 16.31 | 1.4 | 2.2 | Aug 21 |
| PNNT | 0.04 | 12.89 | 2.9 | 1.7 | Aug 21 |
| EARN | 0.08 | 21.6 | 4.8 | 1.6 | Aug 21 |
| SCM | 0.0833 | 11.65 | 5.6 | 1.6 | Aug 21 |
- Rows × columns
- 29 × 6
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
ticker |
text | 29 distinct values (ADC, AGNC, APLE…) | |
monthly_payment_usd |
number | 0.035 to 0.6194 | US dollars |
annual_yield_pct |
number | 1.53 to 21.6 | percent |
years_paying_monthly |
number | 0.7 to 14.2 | |
avg_daily_traded_musd |
number | 1.6 to 213.5 | |
priced_through |
text | 2 distinct values (Aug 19, Aug 21) |
Computed from Strasmore's warehouse of US exchange, SIP and OPRA market data. Equity prices are delayed; options greeks and implied volatility are end-of-day. This result is stored, not recomputed on load — it is exactly the numbers that were returned on , and the query below is what returned them.
the exact SQL behind every number
SELECT m.ticker AS ticker,
round(m.latest_payment, 4) AS monthly_payment_usd,
round(100 * m.latest_payment * 12 / l.last_close, 2) AS annual_yield_pct,
round(dateDiff('day', s.streak_start, s.last_ex) / 365.25, 1) AS years_paying_monthly,
round(l.adv_usd / 1e6, 1) AS avg_daily_traded_musd,
formatDateTime(l.last_session, '%b %e') AS priced_through
FROM (
SELECT ticker, argMax(cash_amount, ex_dividend_date) AS latest_payment
FROM global_markets.stocks_dividends
WHERE ex_dividend_date > today() - 365
AND ex_dividend_date <= today()
AND cash_amount > 0
AND distribution_type = 'recurring'
AND ticker NOT IN ('SPCX')
AND ticker NOT IN ('KORU','SOXL','SOXS','TQQQ','SQQQ','NVDL','NVDS','NVD','TSLL','TSLQ','TSLZ','SPXL','SPXS','UPRO','SPXU','LABU','LABD','FAS','FAZ','TNA','TZA','YINN','YANG','UDOW','SDOW','BOIL','KOLD','UCO','SCO','USD','SSO','SDS','QLD','QID','ERX','ERY','DRN','DRV','CURE','SOXY','MUU','SNXX','UVXY','SVXY','UVIX','SVIX','BULZ','WEBL','WEBS','DPST','DRIP','GUSH','AGQ','ZSL','BITX','ETHU','MSTX','MSTU','CONL','DUST','JNUG','JDST','NUGT')
AND ticker NOT IN (SELECT ticker FROM global_markets.stocks_splits
WHERE execution_date BETWEEN today() - 400 AND today())
GROUP BY ticker
HAVING count() BETWEEN 10 AND 14
AND argMax(frequency, ex_dividend_date) = 12
) AS m
INNER JOIN (
SELECT ticker,
maxIf(ed, gap_days > 70) AS streak_start,
max(ed) AS last_ex
FROM (
SELECT ticker, ex_dividend_date AS ed,
dateDiff('day',
lagInFrame(ex_dividend_date) OVER (PARTITION BY ticker ORDER BY ex_dividend_date),
ex_dividend_date) AS gap_days
FROM (
SELECT ticker, ex_dividend_date
FROM global_markets.stocks_dividends
WHERE distribution_type = 'recurring' AND cash_amount > 0 AND ex_dividend_date <= today()
GROUP BY ticker, ex_dividend_date
)
)
GROUP BY ticker
) AS s ON s.ticker = m.ticker
INNER JOIN (
SELECT ticker,
avg(dollar_vol) AS adv_usd,
argMax(close_px, d) AS last_close,
max(d) AS last_session,
count() AS sessions
FROM (
SELECT ticker,
toDate(toTimeZone(window_start, 'America/New_York')) AS d,
sum(toFloat64(close) * volume) AS dollar_vol,
argMax(toFloat64(close), window_start) AS close_px
FROM global_markets.delayed_stocks_minute_aggs
WHERE window_start >= toDateTime(today() - 32)
AND toDate(toTimeZone(window_start, 'America/New_York')) < today()
AND toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York')) >= 570
AND toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York')) < 960
GROUP BY ticker, d
)
GROUP BY ticker
HAVING sessions >= 15 AND adv_usd >= 1000000 AND last_close > 0
) AS l ON l.ticker = m.ticker
INNER JOIN (
SELECT ticker
FROM global_markets.stocks_ratios
GROUP BY ticker
HAVING argMax(market_cap, date) > 0
) AS f ON f.ticker = m.ticker
ORDER BY l.adv_usd DESC
LIMIT 60
Run your own version of this
The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.
More from this analysisMonthly Dividend Stocks: The Full List
Realty Income's declared monthly rate by calendar year, the raise over the prior year, and the steps up inside each year
table 12×5
→
Monthly payers yielding above 12% - the price move and the payment move behind the number
table 11×5
→
Yield distribution across liquid monthly payers, with each band's median 12-month price change
table 5×5
→
Monthly payers in the dividend record, by completed calendar year
ranking 21×3
→
Recurring cash payments per ticker over the trailing year - where the monthly band sits
ranking 7×4
→
Recurring cash dividends by declared schedule: every payer on file, July 2025 through June 2026
table 5×5
→
See all 2,170 queries →