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.
| ex_date | ex_date_label | cash_amount_usd | cumulative_usd |
|---|---|---|---|
| 2025-11-10 | Nov 10, 2025 | 0.26 | 0.26 |
| 2026-02-09 | Feb 9, 2026 | 0.26 | 0.52 |
| 2026-05-11 | May 11, 2026 | 0.27 | 0.79 |
| 2026-08-10 | Aug 10, 2026 | 0.27 | 1.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
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
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