STRASMORE/EXPLORE 2,170 QUERIES

Two years of regular distributions: how many, and how variable

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 SEC 30-Day Yield vs Distribution Yield.

as of ranking 6×3read in context →
Two years of regular distributions: how many, and how variable — 6 rows by 3 columns, computed from US exchange, SIP and OPRA data.
fundpayment_countlargest_vs_smallest_pct
SCHD8203.3
JEPI2465.7
QQQ841.2
TLT2421.1
SPY817.6
VYM816.4
Rows × columns
6 × 3
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 Two years of regular distributions: how many, and how variable, derived from the stored result.
ColumnTypeRangeNotes
fund text 6 distinct values (JEPI, QQQ, SCHD…)
payment_count number 8 to 24 count
largest_vs_smallest_pct number 16.4 to 203.3 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
SELECT
    fund_ticker                                 AS fund,
    count()                                     AS payment_count,
    round(100 * ((max(cash) / min(cash)) - 1), 1) AS largest_vs_smallest_pct
FROM
(
    SELECT
        any(ticker)                 AS fund_ticker,
        any(toFloat64(cash_amount)) AS cash
    FROM global_markets.stocks_dividends
    WHERE ticker IN ('SPY', 'SCHD', 'VYM', 'QQQ', 'TLT', 'JEPI')
      AND ex_dividend_date > today() - 730
      AND ex_dividend_date <= today()
      AND toUInt16(frequency) > 0
    GROUP BY id
)
GROUP BY fund_ticker
HAVING count() >= 4
ORDER BY largest_vs_smallest_pct DESC, fund ASC

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 analysisSEC 30-Day Yield vs Distribution Yield
Trailing twelve-month yield and indicated yield, same funds, same day ranking 6×4 The market rate backdrop: 3-month and 10-year Treasury yields series 53×4 One bond fund, two distribution yields, month by month series 37×4 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 SCHD and VOO annualized dividend yield: twelve month-ends through July 2026 series 12×5 See all 2,170 queries →