Trailing 12 month distribution rate, by fund family
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 ETFs: Who Actually Pays.
| ticker | fund_family | trailing_rate_pct |
|---|---|---|
| JEPQ | Derivative income | 10.88 |
| QYLD | Derivative income | 10.59 |
| SDIV | REIT, BDC and preferred | 9.03 |
| SRET | REIT, BDC and preferred | 8.12 |
| JEPI | Derivative income | 7.91 |
| HYG | Bond and loan | 5.89 |
| BKLN | Bond and loan | 5.87 |
| PFF | REIT, BDC and preferred | 5.44 |
| AGG | Bond and loan | 4.05 |
| VNQ | Quarterly benchmark | 3.52 |
| SCHD | Quarterly benchmark | 3 |
| SPY | Quarterly benchmark | 0.98 |
- Rows × columns
- 12 × 3
- 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 | 12 distinct values (AGG, BKLN, HYG…) | |
fund_family |
text | 4 distinct values | |
trailing_rate_pct |
number | 0.98 to 10.88 | percent |
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
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 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 ETFs: Who Actually Pays
Distributions per year: monthly funds beside quarterly benchmarks
ranking 12×3
→
Days from ex dividend date to cash, monthly paying funds
ranking 9×2
→
Monthly cash per share: an option income fund and a bond fund
series 24×3
→
Trailing year distribution rate, price change, and approximate total return
ranking 7×4
→
Cash distributions over the trailing year, by declared schedule
ranking 5×2
→
Share price indexed to 100, three covered call ETFs, monthly
series 59×4
→
See all 2,170 queries →