Trailing twelve-month distribution yield: dividend funds beside the S&P 500 tracker
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 SCHD vs VOO: Why the Dividend Yields Differ.
| ticker | price | ttm_distributions_usd | payments | trailing_yield_pct |
|---|---|---|---|---|
| SPYD | 50.39 | 2.031 | 4 | 4.03 |
| NOBL | 58.55 | 2.026 | 4 | 3.46 |
| SCHD | 35.2 | 1.048 | 4 | 2.98 |
| VYM | 165.11 | 3.63 | 4 | 2.2 |
| DGRO | 80.25 | 1.478 | 4 | 1.84 |
| VIG | 243.75 | 3.581 | 4 | 1.47 |
| VOO | 704.8 | 7.346 | 4 | 1.04 |
- Rows × columns
- 7 × 5
- 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 | 7 distinct values (DGRO, NOBL, SCHD…) | |
price |
number | 35.2 to 704.8 | US dollars |
ttm_distributions_usd |
number | 1.048 to 7.346 | US dollars |
payments |
number | every row is 4 | |
trailing_yield_pct |
number | 1.04 to 4.03 | 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 px AS (
SELECT ticker,
argMax(close, window_start) AS price
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('SCHD', 'VOO', 'VYM', 'SPYD', 'DGRO', 'VIG', 'NOBL')
AND window_start >= now() - INTERVAL 7 DAY
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959
GROUP BY ticker
),
dv AS (
SELECT ticker,
sum(cash_amount) AS ttm_distributions,
count() AS payments
FROM global_markets.stocks_dividends
WHERE ticker IN ('SCHD', 'VOO', 'VYM', 'SPYD', 'DGRO', 'VIG', 'NOBL')
AND ex_dividend_date > today() - INTERVAL 1 YEAR
AND ex_dividend_date <= today()
AND cash_amount > 0
GROUP BY ticker
)
SELECT px.ticker AS ticker,
round(px.price, 2) AS price,
round(dv.ttm_distributions, 3) AS ttm_distributions_usd,
dv.payments AS payments,
round(dv.ttm_distributions / px.price * 100, 2) AS trailing_yield_pct
FROM px
INNER JOIN dv ON px.ticker = dv.ticker
ORDER BY trailing_yield_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 analysisSCHD vs VOO: Why the Dividend Yields Differ
SCHD and VOO annualized dividend yield: twelve month-ends through July 2026
series 12×5
→
Latest dividend yield: index heavyweights beside dividend-screen staples
ranking 12×4
→
Quarterly distributions per share: SCHD and VOO, 2025 Q1 through 2026 Q2
ranking 6×3
→
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 →