STRASMORE/EXPLORE 2,173 QUERIES

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.

as of table 6×7read in context →
Six broad US funds: trailing-year distribution yield, gross and net of withholding — 6 rows by 7 columns, computed from US exchange, SIP and OPRA data.
tickerpricettm_distributions_usdpaymentsgross_yield_pctnet_yield_15_pctnet_yield_30_pct
SCHD35.21.04842.982.532.08
VYM165.113.6342.21.871.54
VOO704.87.34641.040.890.73
VTI378.923.941.030.870.72
SPY766.957.52540.980.830.69
QQQ714.313.03440.420.360.3
Rows × columns
6 × 7
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for Six broad US funds: trailing-year distribution yield, gross and net of withholding, derived from the stored result.
ColumnTypeRangeNotes
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 →