Six broad US funds: trailing-year distribution yield, gross and net of withholding
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 Dividend Withholding Tax for Non-US Investors.
| ticker | price | ttm_distributions_usd | payments | gross_yield_pct | net_yield_15_pct | net_yield_30_pct |
|---|---|---|---|---|---|---|
| SCHD | 35.2 | 1.048 | 4 | 2.98 | 2.53 | 2.08 |
| VYM | 165.11 | 3.63 | 4 | 2.2 | 1.87 | 1.54 |
| VOO | 704.8 | 7.346 | 4 | 1.04 | 0.89 | 0.73 |
| VTI | 378.92 | 3.9 | 4 | 1.03 | 0.87 | 0.72 |
| SPY | 766.95 | 7.525 | 4 | 0.98 | 0.83 | 0.69 |
| QQQ | 714.31 | 3.034 | 4 | 0.42 | 0.36 | 0.3 |
- Rows × columns
- 6 × 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 |
|---|---|---|---|
ticker |
text | 6 distinct values (QQQ, SCHD, SPY…) | |
price |
number | 35.2 to 766.95 | US dollars |
ttm_distributions_usd |
number | 1.048 to 7.525 | US dollars |
payments |
number | every row is 4 | |
gross_yield_pct |
number | 0.42 to 2.98 | percent |
net_yield_15_pct |
number | 0.36 to 2.53 | percent |
net_yield_30_pct |
number | 0.3 to 2.08 | 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 ('SPY', 'VOO', 'VTI', 'QQQ', 'SCHD', 'VYM')
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 ('SPY', 'VOO', 'VTI', 'QQQ', 'SCHD', 'VYM')
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(toFloat64(dv.ttm_distributions), 3) AS ttm_distributions_usd,
dv.payments AS payments,
round(toFloat64(dv.ttm_distributions) / toFloat64(px.price) * 100, 2) AS gross_yield_pct,
round(toFloat64(dv.ttm_distributions) / toFloat64(px.price) * 100 * 0.85, 2) AS net_yield_15_pct,
round(toFloat64(dv.ttm_distributions) / toFloat64(px.price) * 100 * 0.70, 2) AS net_yield_30_pct
FROM px
INNER JOIN dv ON px.ticker = dv.ticker
ORDER BY gross_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 analysisDividend Withholding Tax for Non-US Investors
Latest quarterly dividend, gross and net of US withholding: eight large US payers
table 8×5
→
Median dividend yield by band, gross and net of US withholding: US payers over $1B
table 4×6
→
Coca-Cola quarterly dividend since 2021: gross, net at 15%, net at 30%
series 22×6
→
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,173 queries →