STRASMORE/EXPLORE 2,433 QUERIES

Dividend cash paid on 100 shares over the trailing year

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 Poor Man's Covered Call: How the Trade Works.

as of ranking 6×3read in context →
Dividend cash paid on 100 shares over the trailing year — 6 rows by 3 columns, computed from US exchange, SIP and OPRA data.
symbolannual_cash_on_100_sharespayment_count
SPY758.274
JNJ5284
XOM4124
MSFT3644
KO2104
AAPL1064
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 Dividend cash paid on 100 shares over the trailing year, derived from the stored result.
ColumnTypeRangeNotes
symbol text 6 distinct values (AAPL, JNJ, KO…)
annual_cash_on_100_shares number 106 to 758.27 count
payment_count number every row is 4 count

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                                   AS symbol,
    round(sum(toFloat64(cash_amount)) * 100, 2) AS annual_cash_on_100_shares,
    count()                                  AS payment_count
FROM
(
    SELECT
        ticker,
        id,
        any(cash_amount) AS cash_amount
    FROM global_markets.stocks_dividends
    WHERE ticker IN ('AAPL', 'MSFT', 'KO', 'JNJ', 'XOM', 'SPY')
      AND ex_dividend_date >= today() - 365
      AND ex_dividend_date <= today()
    GROUP BY ticker, id
)
GROUP BY ticker
ORDER BY annual_cash_on_100_shares DESC
⌘/Ctrl + Enter
Related queries
Monthly expirations beyond 300 days out, by underlyings listing them ranking 15×2 Third Friday expirations over the next fourteen months, by underlyings listing them ranking 14×3 Start-to-end change in Treasury yields by calendar year, in basis points ranking 13×3 2026 cash dividends per share at eight widely held payers ranking 8×4 What each strike paid on May 1, 2026: SPY June 18 calls and puts side by side ranking 8×3 Average rho on long-dated SPY options, by strike against the share price ranking 7×4 See all 2,433 queries →