STRASMORE/EXPLORE 2,648 QUERIES

raises

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 table 16×5read in context →
raises — 16 rows by 5 columns, computed from US exchange, SIP and OPRA data.
effective_fromannouncedprior_ratenew_rateincrease_pct
Feb 2011None0.30250.33259.9
Nov 2011None0.33250.372512
Nov 2012Oct 20120.37250.4110.1
Nov 2013Oct 20130.410.459.8
Nov 2014Oct 20140.450.517515
Nov 2015Oct 20150.51750.59515
Nov 2016Oct 20160.5950.66511.8
Nov 2017Sep 20170.6650.74512
Nov 2018Sep 20180.7450.8210.1
Nov 2019Sep 20190.820.99.8
Nov 2020Sep 20200.90.933.3
Nov 2021Oct 20210.930.985.4
Nov 2022Sep 20220.981.035.1
Nov 2023Sep 20231.031.084.9
Nov 2024Sep 20241.081.134.6
Nov 2025Sep 20251.131.195.3
Rows × columns
16 × 5
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 raises, derived from the stored result.
ColumnTypeRangeNotes
effective_from text 16 distinct values (Feb 2011, Nov 2011, Nov 2012…)
announced text 14 distinct values (Oct 2012, Oct 2013, Oct 2014…) 14 of 16 rows populated
prior_rate number 0.3025 to 1.13 ratio or rate
new_rate number 0.3325 to 1.19 ratio or rate
increase_pct number 3.3 to 15 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 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
        ex_date,
        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(ex_date, '%b %Y')            AS effective_from,
    formatDateTime(declared_on, '%b %Y')        AS announced,
    round(prior_amount, 4)                      AS prior_rate,
    round(amount, 4)                            AS new_rate,
    round(100 * (amount / prior_amount - 1), 1) AS increase_pct
FROM stepped
WHERE prior_amount > 0
  AND amount > prior_amount
ORDER BY ex_date
⌘/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 → declarations series 16×6 → cohort ranking 8×4 → announcement_months ranking 6×3 → The 2s10s spread, every print of the half table 124×2 → The 2s10s spread, every print of the half table 124×2 → See all 2,648 queries →