Strasmore Research
Market recaps wey dey break am down Matt ConnorBy Matt Connor · Updated 2026-07-25 · data as of July 25, 2026 · refreshed weekly

CVX Dividend: Yield, History & Ex-Dates

CVX dividend guide: current yield, per-share payout, full ex-dividend date history, and payout frequency, wey dem dey refresh every week from exchange record.

Chevron (CVX) dey pay quarterly dividend. From wetin dem last declare, CVX pay $1.78 per share, wey be annual rate of $7.12, and e give dividend yield of about 3.79% when price recently be $187.9. The most recent ex-dividend date be May 19, 2026, and the next one go be not yet declared. This page dey track CVX dividend, and dem dey refresh am every week from the exchange record.

QueryCVX dividend snapshot: latest payout, annual rate, yield, and next ex-date
The exact SQL behind every number
WITH d AS (
    SELECT argMax(cash_amount, ex_dividend_date) AS latest,
           argMax(frequency, ex_dividend_date) AS freq,
           max(ex_dividend_date) AS last_ex,
           maxIf(ex_dividend_date, ex_dividend_date > today()) AS nxt
    FROM global_markets.stocks_dividends
    WHERE ticker = 'CVX' AND frequency IN (1, 2, 4, 12) AND ex_dividend_date >= today() - 900
),
p AS (
    SELECT argMax(toFloat64(close), window_start) AS price
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'CVX' AND window_start >= now() - INTERVAL 8 DAY
)
SELECT round(d.latest, 3) AS latest_dividend,
       multiIf(d.freq = 12, 'monthly', d.freq = 4, 'quarterly', d.freq = 2, 'semi-annual', 'annual') AS frequency,
       round(d.latest * d.freq, 2) AS annual_dividend,
       round(p.price, 2) AS recent_price,
       round(d.latest * d.freq / p.price * 100, 2) AS dividend_yield_pct,
       formatDateTime(d.last_ex, '%b %e, %Y') AS last_ex_date,
       if(d.nxt > today(), formatDateTime(d.nxt, '%b %e, %Y'), 'not yet declared') AS next_ex_date
FROM d CROSS JOIN p

CVX dividend yield and payout

To collect dividend you gatz own the shares before the ex-dividend date. The dividend yield wey CVX get above na the annual rate divided by the recent price; e dey move opposite way with the share price, so one yield figure no mean anything if you no put the date wey dem measure am side by side. The per-share amounts wey dey here na the cash dividends wey dem declare, no be any special or one-time distributions.

CVX dividend history

The most recent regular dividends wey CVX don pay, newest one first:

QueryCVX recent dividend payments: ex-dividend date and per-share amount
The exact SQL behind every number
SELECT toDate(ex_dividend_date) AS date,
       round(cash_amount, 4) AS dividend_per_share
FROM global_markets.stocks_dividends
WHERE ticker = 'CVX' AND frequency IN (1, 2, 4, 12) AND ex_dividend_date >= today() - 1100
ORDER BY ex_dividend_date DESC
LIMIT 10

The pattern of the payments dey show the schedule: a quarterly payer dey send check that same way, and na the per-share amount na im dey climb (or hold, or dem cut am) as time dey go.

CVX dividend growth by year

If you add all the regular dividends inside each calendar year, the individual payments go turn to one growth picture.

QueryCVX total dividends paid per year (regular dividends)
The exact SQL behind every number
SELECT toString(toYear(ex_dividend_date)) AS year,
       round(sum(cash_amount), 2) AS dividends_paid_per_share
FROM global_markets.stocks_dividends
WHERE ticker = 'CVX' AND frequency IN (1, 2, 4, 12)
  AND ex_dividend_date >= toDate('2019-01-01') AND ex_dividend_date < toDate(concat(toString(toYear(today())), '-01-01'))
GROUP BY year
ORDER BY year

For 2019, CVX pay $4.76 per share across the whole year; by 2025 the annual total don reach $6.84. One line wey dey rise na company wey dey lift im payout year after year; one flat line mean dividend wey dem hold; one fall na cut. The year-by-year record na the single most important tin to check before you treat any stock as income holding, and na the part of dividend wey one screener single yield number dey hide.

CVX good dividend stock?

Two numbers dey frame that question, and both of them dey this page: the yield (3.79%) and the direction of the annual payout wey dey above. One yield wey dey below the broad-market average when paired with payout wey dey rise steady na the profile of dividend-growth name, where the appeal na small check today wey go compound. High yield wey stand near flat or falling payout na income-now profile, and e need better look whether earnings dey cover the payment. CVX record wey dey above go show which of the two e take look like. Wetin dividend history no fit show on im own na safety: that one rest on earnings and free cash flow, no be on the run of past payments, so one payout ratio wey don stretch fit happen before one cut wey the history never record.

When CVX ex-dividend date go be?

The ex-dividend date na the cutoff: buy CVX before am and the dividend wey wan come go be yours, buy on the date itself and the dividend go go the seller. On the ex-date the stock go open lower by roughly the dividend amount, because the cash dey comot from the company. CVX most recent ex-dividend date be May 19, 2026. The record date go follow one business day later under T+1 settlement, and the pay date go come few weeks after that one. Upcoming ex-dates across the market dey the ex-dividend calendar.

FAQ

Chevron dey pay dividend?

Yes. CVX dey pay quarterly dividend, most recently $1.78 per share, wey go annualize to about $7.12 per share.

Wetin be CVX dividend yield?

CVX dividend yield be about 3.79%, dem calculate am as the $7.12 annual dividend divided by recent price of $187.9. Yield go rise as price fall and the other way, so na snapshot, no be fixed number.

When CVX next ex-dividend date go be?

CVX most recent ex-dividend date be May 19, 2026, and the next one be not yet declared. As quarterly payer, CVX dey set new ex-date that same way; the date go show here as dem declare am once the company announce am.

How much CVX dividend be?

The most recent regular dividend be $1.78 per share. At quarterly cadence, e go annualize to about $7.12 per share.


Every figure wey dey above na stored, inspectable query, dem dey refresh am every week. Open the SQL under any panel to audit am, or pull any ticker dividend record for the Strasmore terminal.