STRASMORE/EXPLORE 2,648 QUERIES

annual_totals

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 21×4read in context →
annual_totals — 21 rows by 4 columns, computed from US exchange, SIP and OPRA data.
yeardividends_per_sharepaymentsyoy_growth_pct
20050.8254None
20060.9075410
20071410.2
20081.1410
20091.21410
20101.2140
20111.37413.2
20121.5275411.5
20131.68410
20141.8675411.2
20152.1475415
20162.45414.1
20172.74411.8
20183.055411.5
20193.36410
20203.6348
20213.7743.9
20223.9745.3
20234.1745
20244.3744.8
20254.5844.8
Rows × columns
21 × 4
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 annual_totals, derived from the stored result.
ColumnTypeRangeNotes
year text 21 distinct values (2005, 2006, 2007…)
dividends_per_share number 0.825 to 4.58
payments number every row is 4
yoy_growth_pct number 0 to 15 percent · 20 of 21 rows populated

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
        toYear(ex_dividend_date)    AS div_year,
        ex_dividend_date            AS ex_date,
        max(toFloat64(cash_amount)) AS amount
    FROM global_markets.stocks_dividends
    WHERE ticker = 'HON'
      AND ex_dividend_date >= '2005-01-01'
      AND ex_dividend_date <  '2026-01-01'
    GROUP BY div_year, ex_date
),
yearly AS
(
    SELECT
        div_year,
        round(sum(amount), 4) AS dividends_per_share,
        count()               AS payments
    FROM per_ex
    GROUP BY div_year
)
SELECT
    toString(div_year)   AS year,
    dividends_per_share,
    payments,
    round(100 * (dividends_per_share / nullIf(any(dividends_per_share) OVER (ORDER BY div_year ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING), 0) - 1), 1) AS yoy_growth_pct
FROM yearly
ORDER BY div_year
⌘/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
cohort ranking 8×4 → announcement_months ranking 6×3 → 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 →