announcement_months
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 hon-dividend-history.
| announced_in | declarations | rate_increases |
|---|---|---|
| Sep | 8 | 8 |
| Oct | 6 | 6 |
| None | 11 | 2 |
| Feb | 14 | 0 |
| Apr | 14 | 0 |
| Jul | 14 | 0 |
- Rows × columns
- 6 × 3
- Computed
- Completeness
- Some fields are partly empty — see the columns below
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
announced_in |
text | 5 distinct values (Apr, Feb, Jul…) | 5 of 6 rows populated |
declarations |
number | 6 to 14 | |
rate_increases |
number | 0 to 8 | ratio or rate |
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 per_ex AS
(
SELECT
ex_dividend_date AS ex_date,
max(toFloat64(cash_amount)) AS amount,
max(declaration_date) AS declared_on
FROM global_markets.stocks_dividends
WHERE ticker = 'HON'
AND ex_dividend_date >= '2010-01-01'
GROUP BY ex_date
),
stepped AS
(
SELECT
declared_on,
amount,
any(amount) OVER (ORDER BY ex_date ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING) AS prior_amount
FROM per_ex
)
SELECT
formatDateTime(declared_on, '%b') AS announced_in,
count() AS declarations,
countIf(prior_amount > 0 AND amount > prior_amount) AS rate_increases
FROM stepped
GROUP BY announced_in, toMonth(declared_on)
ORDER BY rate_increases DESC, declarations DESC, toMonth(declared_on)
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.