STRASMORE/EXPLORE 2,595 QUERIES

year_by_year

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-25, from xom-dividend-increase-history.

as of ranking 20×4read in context →
year_by_year — 20 rows by 4 columns, computed from US exchange, SIP and OPRA data.
yearpaid_per_share_usdpaymentsraises_declared
20061.2841
20071.3741
20081.5541
20091.6641
20101.7441
20111.8541
20122.1841
20132.4641
20142.741
20152.8841
20162.9841
20173.0641
20183.2341
20193.4341
20203.4840
20213.4941
20223.5541
20233.6841
20243.8441
2025441
Rows × columns
20 × 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 year_by_year, derived from the stored result.
ColumnTypeRangeNotes
year number 2,006 to 2,025
paid_per_share_usd number 1.28 to 4 US dollars
payments number every row is 4
raises_declared number 0 to 1

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 quarterly AS
(
    SELECT
        ex_dividend_date            AS ex_date,
        toFloat64(max(cash_amount)) AS rate
    FROM global_markets.stocks_dividends
    WHERE ticker = 'XOM'
      AND frequency = 4
      AND ex_dividend_date >= '2005-01-01'
      AND ex_dividend_date <= today()
    GROUP BY ex_dividend_date
),
stepped AS
(
    SELECT
        ex_date,
        rate,
        lagInFrame(rate) OVER (ORDER BY ex_date ASC
            ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING) AS prev_rate
    FROM quarterly
)
SELECT
    toYear(ex_date)                                     AS year,
    round(sum(rate), 4)                                 AS paid_per_share_usd,
    count()                                             AS payments,
    countIf(prev_rate > 0 AND rate > prev_rate)         AS raises_declared
FROM stepped
WHERE toYear(ex_date) >= 2006
  AND toYear(ex_date) < toYear(today())
GROUP BY year
ORDER BY year ASC
⌘/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 analysisxom-dividend-increase-history
streak ranking 3×3 → declaration_quarter ranking 2×4 → raise_history series 19×6 → cagr table 3×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,595 queries →