Large equity REITs: dividend as a percent of earnings per share, latest snapshot
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-09-20, from REIT Payout Ratio: FFO vs EPS Explained.
| ticker | eps_payout_ratio_pct | dividend_yield_pct |
|---|---|---|
| VTR | 360.4 | 2.12 |
| O | 238.1 | 5.63 |
| IRM | 237.6 | 2.93 |
| WELL | 132 | 1.24 |
| PSA | 126.3 | 4.21 |
| NNN | 118.2 | 5.69 |
| PLD | 100.4 | 3.29 |
| FRT | 95.4 | 4.23 |
| SPG | 72.4 | 5.03 |
- Rows × columns
- 9 × 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 | 9 distinct values (FRT, IRM, NNN…) | |
eps_payout_ratio_pct |
number | 72.4 to 360.4 | percent |
dividend_yield_pct |
number | 1.24 to 5.69 | 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.
Run it yourself
This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.
SELECT ticker,
round(toFloat64(argMax(dividend_yield * price / earnings_per_share, date)) * 100, 1) AS eps_payout_ratio_pct,
round(toFloat64(argMax(dividend_yield, date)) * 100, 2) AS dividend_yield_pct
FROM global_markets.stocks_ratios
WHERE ticker IN ('O','SPG','PLD','PSA','AVB','EQR','VTR','WELL','KIM','FRT','NNN','MAA','ARE','IRM')
AND date = (SELECT max(date) FROM global_markets.stocks_ratios)
AND dividend_yield > 0
AND earnings_per_share > 0
GROUP BY ticker
ORDER BY eps_payout_ratio_pct DESC