ko_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-24, from covered-calls-and-the-straddle-rules.
| ex_date | ex_date_label | cash_amount | window_opens | window_closes |
|---|---|---|---|---|
| 2023-11-30 | Nov 30, 2023 | 0.46 | Oct 1, 2023 | Jan 29, 2024 |
| 2024-03-14 | Mar 14, 2024 | 0.485 | Jan 14, 2024 | May 13, 2024 |
| 2024-06-14 | Jun 14, 2024 | 0.485 | Apr 15, 2024 | Aug 13, 2024 |
| 2024-09-13 | Sep 13, 2024 | 0.485 | Jul 15, 2024 | Nov 12, 2024 |
| 2024-11-29 | Nov 29, 2024 | 0.485 | Sep 30, 2024 | Jan 28, 2025 |
| 2025-03-14 | Mar 14, 2025 | 0.51 | Jan 13, 2025 | May 13, 2025 |
| 2025-06-13 | Jun 13, 2025 | 0.51 | Apr 14, 2025 | Aug 12, 2025 |
| 2025-09-15 | Sep 15, 2025 | 0.51 | Jul 17, 2025 | Nov 14, 2025 |
| 2025-12-01 | Dec 1, 2025 | 0.51 | Oct 2, 2025 | Jan 30, 2026 |
| 2026-03-13 | Mar 13, 2026 | 0.53 | Jan 12, 2026 | May 12, 2026 |
| 2026-06-15 | Jun 15, 2026 | 0.53 | Apr 16, 2026 | Aug 14, 2026 |
| 2026-09-15 | Sep 15, 2026 | 0.53 | Jul 17, 2026 | Nov 14, 2026 |
- Rows × columns
- 12 × 5
- 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-11-30 to 2026-09-15 | |
ex_date_label |
text | 12 distinct values (Dec 1, 2025, Jun 13, 2025, Jun 14, 2024…) | |
cash_amount |
number | 0.46 to 0.53 | |
window_opens |
text | 12 distinct values (Apr 14, 2025, Apr 15, 2024, Apr 16, 2026…) | |
window_closes |
text | 12 distinct values (Aug 12, 2025, Aug 13, 2024, Aug 14, 2026…) |
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(toFloat64(max(cash_amount)), 4) AS cash_amount,
formatDateTime(ex_dividend_date - 60, '%b %e, %Y') AS window_opens,
formatDateTime(ex_dividend_date + 60, '%b %e, %Y') AS window_closes
FROM global_markets.stocks_dividends
WHERE ticker = 'KO'
AND ex_dividend_date >= '2023-10-01'
AND ex_dividend_date <= today()
GROUP BY ex_dividend_date
ORDER BY ex_dividend_date
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.