STRASMORE/EXPLORE 2,648 QUERIES

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.

as of ranking 6×3read in context →
announcement_months — 6 rows by 3 columns, computed from US exchange, SIP and OPRA data.
announced_indeclarationsrate_increases
Sep88
Oct66
None112
Feb140
Apr140
Jul140
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
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for announcement_months, derived from the stored result.
ColumnTypeRangeNotes
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)
⌘/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 analysishon-dividend-history
annual_totals ranking 21×4 → cohort ranking 8×4 → raises table 16×5 → declarations series 16×6 → Top 25 weekly-options underlyings by distinct contracts traded, with expiration weekdays ranking 25×4 → Annualized volatility vs total return, 25 large caps, calmest to wildest (~2 years) ranking 25×3 → See all 2,648 queries →