STRASMORE/EXPLORE 2,469 QUERIES

dividend_stream

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-22, from how-to-check-if-a-us-stock-is-sharia-compliant.

as of series 4×4read in context →
dividend_stream — 4 rows by 4 columns, computed from US exchange, SIP and OPRA data.
ex_dateex_date_labelcash_amount_usdcumulative_usd
2025-11-10Nov 10, 20250.260.26
2026-02-09Feb 9, 20260.260.52
2026-05-11May 11, 20260.270.79
2026-08-10Aug 10, 20260.271.06
Rows × columns
4 × 4
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 dividend_stream, derived from the stored result.
ColumnTypeRangeNotes
ex_date date 2025-11-10 to 2026-08-10
ex_date_label text 4 distinct values (Aug 10, 2026, Feb 9, 2026, May 11, 2026…)
cash_amount_usd number 0.26 to 0.27 US dollars
cumulative_usd number 0.26 to 1.06 US dollars

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,
    ex_date_label,
    cash_amount_usd,
    round(sum(cash_amount_usd) OVER (ORDER BY ex_date), 4) AS cumulative_usd
FROM
(
    SELECT
        toString(ex_dividend_date)                    AS ex_date,
        formatDateTime(ex_dividend_date, '%b %e, %Y') AS ex_date_label,
        round(toFloat64(any(cash_amount)), 4)         AS cash_amount_usd
    FROM global_markets.stocks_dividends
    WHERE ticker = 'AAPL'
      AND ex_dividend_date > today() - 366
      AND ex_dividend_date <= today()
      AND cash_amount > 0
    GROUP BY ex_dividend_date
    ORDER BY ex_dividend_date
)
ORDER BY ex_date
⌘/Ctrl + Enter