STRASMORE/EXPLORE 2,648 QUERIES

cohort

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 8×4read in context →
cohort — 8 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickerdps_2020dps_2025growth_5y_pct
CAT4.125.847.2
EMR22.141.3
HON3.634.584.8
ITW4.423.11-6.8
JNJ3.985.145.2
KO1.642.044.5
MMM5.882.92-13.1
PG3.124.186
Rows × columns
8 × 4
Computed
Completeness
No missing values
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 cohort, derived from the stored result.
ColumnTypeRangeNotes
ticker text 8 distinct values (CAT, EMR, HON…)
dps_2020 number 1.64 to 5.88
dps_2025 number 2.04 to 5.84
growth_5y_pct number -13.1 to 7.2 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
        ticker,
        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 IN ('HON', 'MMM', 'ITW', 'EMR', 'CAT', 'JNJ', 'PG', 'KO')
      AND ex_dividend_date >= '2020-01-01'
      AND ex_dividend_date <  '2026-01-01'
    GROUP BY ticker, div_year, ex_date
),
yearly AS
(
    SELECT
        ticker,
        div_year,
        sum(amount) AS dps
    FROM per_ex
    GROUP BY ticker, div_year
)
SELECT
    ticker,
    round(sumIf(dps, div_year = 2020), 2) AS dps_2020,
    round(sumIf(dps, div_year = 2025), 2) AS dps_2025,
    round(100 * (pow(sumIf(dps, div_year = 2025) / sumIf(dps, div_year = 2020), 1.0 / 5) - 1), 1) AS growth_5y_pct
FROM yearly
GROUP BY ticker
HAVING sumIf(dps, div_year = 2020) > 0
   AND sumIf(dps, div_year = 2025) > 0
ORDER BY ticker
⌘/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 → 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 →