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.
| symbol | annual_cash_on_100_shares | payment_count |
|---|---|---|
| SPY | 758.27 | 4 |
| JNJ | 528 | 4 |
| XOM | 412 | 4 |
| MSFT | 364 | 4 |
| KO | 210 | 4 |
| AAPL | 106 | 4 |
- Rows × columns
- 6 × 3
- 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 |
|---|---|---|---|
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