STRASMORE/EXPLORE 2,595 QUERIES

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.

as of series 14×3read in context →
ko_history — 14 rows by 3 columns, computed from US exchange, SIP and OPRA data.
ex_datedividend_usdreduction_pct
2023-06-150.460.756
2023-09-140.460.787
2023-11-300.460.79
2024-03-140.4850.794
2024-06-140.4850.77
2024-09-130.4850.681
2024-11-290.4850.753
2025-03-140.510.733
2025-06-130.510.706
2025-09-150.510.761
2025-12-010.510.697
2026-03-130.530.683
2026-06-150.530.641
2026-09-150.530.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
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for ko_history, derived from the stored result.
ColumnTypeRangeNotes
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
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.

More from this analysisex-dividend-date-premarket-and-open-orders
open_vs_reference series 14×3 → premarket_trace series 11×4 → ex_calendar ranking 3×4 → The 2s10s spread by month, full history series 604×5 → One SPY $600 LEAPS call's price over two years (expired Jan 16 2026) series 470×2 → 3m10y and 2s10s spreads, monthly averages over twenty years series 241×4 → See all 2,595 queries →