spy_dividends
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 covered-calls-on-futures.
| ex_date | ex_date_label | dividend_per_share |
|---|---|---|
| 2023-12-15 | Dec 15, 2023 | 1.91 |
| 2024-03-15 | Mar 15, 2024 | 1.59 |
| 2024-06-21 | Jun 21, 2024 | 1.76 |
| 2024-09-20 | Sep 20, 2024 | 1.75 |
| 2024-12-20 | Dec 20, 2024 | 1.97 |
| 2025-03-21 | Mar 21, 2025 | 1.7 |
| 2025-06-20 | Jun 20, 2025 | 1.76 |
| 2025-09-19 | Sep 19, 2025 | 1.83 |
| 2025-12-19 | Dec 19, 2025 | 1.99 |
| 2026-03-20 | Mar 20, 2026 | 1.8 |
| 2026-06-18 | Jun 18, 2026 | 1.9 |
| 2026-09-18 | Sep 18, 2026 | 1.89 |
- Rows × columns
- 12 × 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 | 2023-12-15 to 2026-09-18 | |
ex_date_label |
text | 12 distinct values (Dec 15, 2023, Dec 19, 2025, Dec 20, 2024…) | |
dividend_per_share |
number | 1.59 to 1.99 |
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
toString(ex_dividend_date) AS ex_date,
formatDateTime(ex_dividend_date, '%b %e, %Y') AS ex_date_label,
round(max(toFloat64(cash_amount)), 2) AS dividend_per_share
FROM global_markets.stocks_dividends
WHERE ticker = 'SPY'
AND ex_dividend_date BETWEEN today() - 1100 AND today()
GROUP BY ex_dividend_date
ORDER BY ex_dividend_date