dividend_cadence
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-26, from what-stocks-are-in-the-dax.
| year | sap_dividend_dates | ko_dividend_dates |
|---|---|---|
| 2016 | 1 | 4 |
| 2017 | 1 | 4 |
| 2018 | 1 | 4 |
| 2019 | 1 | 4 |
| 2020 | 1 | 4 |
| 2021 | 1 | 4 |
| 2022 | 1 | 4 |
| 2023 | 1 | 4 |
| 2024 | 1 | 4 |
| 2025 | 1 | 4 |
- Rows × columns
- 10 × 3
- 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 |
|---|---|---|---|
year |
text | 10 distinct values (2016, 2017, 2018…) | |
sap_dividend_dates |
number | every row is 1 | |
ko_dividend_dates |
number | every row is 4 |
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(toYear(ex_dividend_date)) AS year,
countDistinctIf(ex_dividend_date, ticker = 'SAP') AS sap_dividend_dates,
countDistinctIf(ex_dividend_date, ticker = 'KO') AS ko_dividend_dates
FROM global_markets.stocks_dividends
WHERE ticker IN ('SAP', 'KO')
AND ex_dividend_date >= '2016-01-01'
AND ex_dividend_date < '2026-01-01'
GROUP BY year
ORDER BY year
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.