ko_history
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 ex-dividend-date-premarket-and-open-orders.
| ex_date | dividend_usd | reduction_pct |
|---|---|---|
| 2023-06-15 | 0.46 | 0.756 |
| 2023-09-14 | 0.46 | 0.787 |
| 2023-11-30 | 0.46 | 0.79 |
| 2024-03-14 | 0.485 | 0.794 |
| 2024-06-14 | 0.485 | 0.77 |
| 2024-09-13 | 0.485 | 0.681 |
| 2024-11-29 | 0.485 | 0.753 |
| 2025-03-14 | 0.51 | 0.733 |
| 2025-06-13 | 0.51 | 0.706 |
| 2025-09-15 | 0.51 | 0.761 |
| 2025-12-01 | 0.51 | 0.697 |
| 2026-03-13 | 0.53 | 0.683 |
| 2026-06-15 | 0.53 | 0.641 |
| 2026-09-15 | 0.53 | 0.593 |
- Rows × columns
- 14 × 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-06-15 to 2026-09-15 | |
dividend_usd |
number | 0.46 to 0.53 | US dollars |
reduction_pct |
number | 0.593 to 0.794 | percent |
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.
WITH
px AS
(
SELECT
date,
max(close) AS close_px
FROM global_markets.stocks_daily_aggs
WHERE ticker = 'KO'
AND date >= today() - 1300
GROUP BY date
),
daily AS
(
SELECT
date,
any(close_px) OVER (ORDER BY date ASC ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING) AS prior_close
FROM px
),
divs AS
(
SELECT
ex_dividend_date AS ex_date,
max(cash_amount) AS dividend_usd
FROM global_markets.stocks_dividends
WHERE ticker = 'KO'
AND cash_amount > 0
AND ex_dividend_date >= today() - 1200
AND ex_dividend_date < today()
GROUP BY ex_dividend_date
)
SELECT
toString(v.ex_date) AS ex_date,
round(toFloat64(v.dividend_usd), 4) AS dividend_usd,
round(100 * toFloat64(v.dividend_usd) / toFloat64(d.prior_close), 3) AS reduction_pct
FROM divs AS v
INNER JOIN daily AS d ON d.date = v.ex_date
ORDER BY ex_date ASC
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.