STRASMORE/EXPLORE 2,595 QUERIES

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.

as of series 4×3read in context →
dividends_forgone — 4 rows by 3 columns, computed from US exchange, SIP and OPRA data.
ex_datedividend_per_sharecumulative_per_share
2025-11-100.260.26
2026-02-090.260.52
2026-05-110.270.79
2026-08-100.271.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
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for dividends_forgone, derived from the stored result.
ColumnTypeRangeNotes
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
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.

More from this analysisleaps-vs-margin-loan-financing-cost
rate_by_expiry ranking 9×4 → parity_ladder table 4×9 → implied_financing_rate table 4×5 → The 2s10s spread by month, full history series 604×5 → One SPY $600 LEAPS call's price over two years (expired Jan 16 2026) series 470×2 → 3m10y and 2s10s spreads, monthly averages over twenty years series 241×4 → See all 2,595 queries →