dividends_forgone
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-25, from leaps-vs-margin-loan-financing-cost.
| ex_date | dividend_per_share | cumulative_per_share |
|---|---|---|
| 2025-11-10 | 0.26 | 0.26 |
| 2026-02-09 | 0.26 | 0.52 |
| 2026-05-11 | 0.27 | 0.79 |
| 2026-08-10 | 0.27 | 1.06 |
- Rows × columns
- 4 × 3
- Period covered
- to
- 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 |
|---|---|---|---|
ex_date |
date | 2025-11-10 to 2026-08-10 | |
dividend_per_share |
number | 0.26 to 0.27 | |
cumulative_per_share |
number | 0.26 to 1.06 |
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
ex_date,
dividend_per_share,
round(sum(dividend_per_share) OVER (ORDER BY ex_date), 4) AS cumulative_per_share
FROM
(
SELECT
ex_dividend_date AS ex_date,
round(max(toFloat64(cash_amount)), 4) AS dividend_per_share
FROM global_markets.stocks_dividends
WHERE ticker = 'AAPL'
AND ex_dividend_date <= (
SELECT max(date)
FROM global_markets.options_greeks
WHERE underlying_symbol = 'AAPL'
)
AND ex_dividend_date > subtractDays(
(
SELECT max(date)
FROM global_markets.options_greeks
WHERE underlying_symbol = 'AAPL'
), 365)
GROUP BY ex_dividend_date
)
ORDER BY ex_date
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.