Distance between trailing and forward dividend yield, by payment schedule
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 Trailing vs Forward Dividend Yield Explained.
| schedule | payers | median_trailing_pct | median_forward_pct | median_gap_pp | p90_gap_pp | pct_gap_over_half_point |
|---|---|---|---|---|---|---|
| quarterly | 1121 | 1.93 | 2 | 0.031 | 0.379 | 8.8 |
| monthly | 20 | 5.51 | 5.8 | 0.442 | 1.175 | 40 |
| semi-annual | 19 | 0.97 | 0.97 | 0 | 0.487 | 5.3 |
| annual | 10 | 0.6 | 0.6 | 0 | 0 | 0 |
- Rows × columns
- 4 × 7
- 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 |
|---|---|---|---|
schedule |
text | 4 distinct values (annual, monthly, quarterly…) | |
payers |
number | 10 to 1,121 | |
median_trailing_pct |
number | 0.6 to 5.51 | percent |
median_forward_pct |
number | 0.6 to 5.8 | percent |
median_gap_pp |
number | 0 to 0.442 | |
p90_gap_pp |
number | 0 to 1.175 | |
pct_gap_over_half_point |
number | 0 to 40 | 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 universe AS (
SELECT ticker,
argMax(price, date) AS last_price
FROM global_markets.stocks_ratios
WHERE date = (SELECT max(date) FROM global_markets.stocks_ratios)
AND price >= 5
AND market_cap >= 1000000000
GROUP BY ticker
),
paid AS (
SELECT ticker,
sum(cash_amount) AS ttm_cash,
argMax(cash_amount, ex_dividend_date) AS latest_cash,
argMax(frequency, ex_dividend_date) AS pay_frequency
FROM global_markets.stocks_dividends
WHERE distribution_type = 'recurring'
AND cash_amount > 0
AND frequency IN (1, 2, 4, 12)
AND ex_dividend_date > today() - INTERVAL 1 YEAR
AND ex_dividend_date <= today()
GROUP BY ticker
)
SELECT multiIf(d.pay_frequency = 12, 'monthly',
d.pay_frequency = 4, 'quarterly',
d.pay_frequency = 2, 'semi-annual',
'annual') AS schedule,
count() AS payers,
round(quantileDeterministic(0.5)(toFloat64(d.ttm_cash) / toFloat64(u.last_price) * 100,
cityHash64(u.ticker)), 2) AS median_trailing_pct,
round(quantileDeterministic(0.5)(toFloat64(d.latest_cash) * d.pay_frequency / toFloat64(u.last_price) * 100,
cityHash64(u.ticker)), 2) AS median_forward_pct,
round(quantileDeterministic(0.5)(abs(toFloat64(d.latest_cash) * d.pay_frequency - toFloat64(d.ttm_cash))
/ toFloat64(u.last_price) * 100,
cityHash64(u.ticker)), 3) AS median_gap_pp,
round(quantileDeterministic(0.9)(abs(toFloat64(d.latest_cash) * d.pay_frequency - toFloat64(d.ttm_cash))
/ toFloat64(u.last_price) * 100,
cityHash64(u.ticker)), 3) AS p90_gap_pp,
round(100 * countIf(abs(toFloat64(d.latest_cash) * d.pay_frequency - toFloat64(d.ttm_cash))
/ toFloat64(u.last_price) * 100 >= 0.5) / count(), 1) AS pct_gap_over_half_point
FROM universe AS u
INNER JOIN paid AS d ON u.ticker = d.ticker
GROUP BY schedule
ORDER BY payers 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 analysisTrailing vs Forward Dividend Yield Explained
Trailing vs forward dividend yield: eight large payers, latest session price
table 8×6
→
3M (MMM): trailing vs forward dividend yield at every month end after a payout reset
series 26×6
→
Realty Income (O): trailing vs forward dividend yield at every month end, two years
series 24×7
→
Monthly dividend stocks - filing companies paying every month, ranked by daily traded value
table 29×6
→
Highest dividend yields: US-listed companies over $2B, latest snapshot on file
table 15×5
→
Trailing yield by sector fund: twelve months of distributions ÷ latest price
table 13×5
→
See all 2,170 queries →