When Special Dividends Adjust Options
Ordinary dividends leave option contracts alone. A special dividend can send them to the OCC adjustment panel: what changes on the contract, and how often.
A special dividend can adjust an option contract, and an ordinary quarterly dividend does not. The Options Clearing Corporation, the OCC, leaves listed contracts untouched for the regular cash dividends a company already pays on a schedule, at any size. A distribution that sits outside that pattern goes to an OCC adjustment panel, which most often cuts every strike price in the series by the cash paid per share.
Do dividends change option strike prices?
Almost never. The test the OCC applies is not the size of the payment, it is the regularity of it. A cash dividend counts as ordinary, at any amount, when it was declared under a policy or practice of paying on a quarterly or other regular basis. Ordinary means nothing about the contract moves. The strike price holds, and so does the deliverable, the 100 shares one contract hands over on exercise. The multiplier, the number that scales a quoted price into a cash amount, holds too.
A one time payment outside that cadence is the candidate for adjustment. The issuer's own label is evidence, not a verdict: an adjustment panel may weigh what the company calls the payment and is not bound by it. What counts as a special dividend covers the corporate side of that decision.
The two kinds of payment sit at different scales. The panel below measures every US dollar cash distribution since 2019 against the closing share price on its ex dividend date, the first session on which a buyer of the stock no longer receives the payment.
The exact SQL behind every number
SELECT
multiIf(frequency = 0, 'One time',
frequency = 1, 'Annual',
frequency = 2, 'Semiannual',
frequency = 4, 'Quarterly',
'Monthly') AS payout_type,
count() AS payouts,
round(quantileDeterministic(0.5)(yield_pct, det), 3) AS median_yield_pct,
round(quantileDeterministic(0.9)(yield_pct, det), 2) AS p90_yield_pct
FROM
(
SELECT
dv.frequency AS frequency,
100 * toFloat64(dv.cash_amt) / toFloat64(px.close) AS yield_pct,
cityHash64(dv.ticker, toString(dv.ex_dividend_date)) AS det
FROM
(
SELECT
ticker,
date,
max(close) AS close
FROM global_markets.stocks_daily_aggs
WHERE date >= '2019-01-01'
AND (ticker, date) IN
(
SELECT ticker, ex_dividend_date
FROM global_markets.stocks_dividends
WHERE currency = 'USD'
AND cash_amount > 0
)
GROUP BY ticker, date
HAVING close >= 1
) AS px
INNER JOIN
(
SELECT
ticker,
ex_dividend_date,
frequency,
max(cash_amount) AS cash_amt
FROM global_markets.stocks_dividends
WHERE currency = 'USD'
AND cash_amount > 0
AND frequency IN (0, 1, 2, 4, 12)
AND ex_dividend_date >= '2019-01-01'
AND ex_dividend_date < today() - 5
GROUP BY ticker, ex_dividend_date, frequency
) AS dv ON dv.ticker = px.ticker AND dv.ex_dividend_date = px.date
)
GROUP BY payout_type
HAVING payouts >= 200
ORDER BY (payout_type = 'One time') ASC, median_yield_pct ASCThe median payment from the Monthly cadence runs 0.417% of the share price. The one time bucket, pinned to the last row of the panel, carries a median of 0.763% and a top decile of 4.74%. Recurring dividends live in fractions of a percent. One time distributions carry a tail that runs into whole percentage points of the share price, and that tail is what the adjustment rules are written around.
How often does a one time distribution happen?
More often than most option traders expect, though only a slice of them ever reach a listed contract.
The exact SQL behind every number
SELECT
toString(toYear(ex_dividend_date)) AS year,
countIf(frequency = 0) AS one_time_payouts,
round(100 * countIf(frequency = 0) / count(), 2) AS one_time_pct
FROM
(
SELECT
ticker,
ex_dividend_date,
frequency,
max(cash_amount) AS cash_amt
FROM global_markets.stocks_dividends
WHERE currency = 'USD'
AND cash_amount > 0
AND ex_dividend_date >= '2017-01-01'
AND ex_dividend_date < toStartOfYear(today())
GROUP BY ticker, ex_dividend_date, frequency
)
GROUP BY year
ORDER BY yearAcross 9 full calendar years, one time cash distributions arrive by the hundreds. In 2025 the feed carried 1293 of them, 3.18% of every US dollar cash distribution dated that year. Closed end funds and small issuers make up much of that count. Filter down to names with listed options, then again to distributions a panel treats as extraordinary, and the population that actually changes a contract is much smaller.
When does a special dividend adjust an option contract?
Two conditions hold together. The distribution falls outside the issuer's regular cadence, and it is large enough for the panel to call it extraordinary rather than a rounding event. Published thresholds have moved over the years and are set by rule rather than by the market, so the durable version is the process: a one time cash distribution is reviewed, the panel decides, and a memo naming the affected series goes out ahead of the ex date.
The size distribution is what makes that review a real filter.
The exact SQL behind every number
SELECT
multiIf(yield_pct < 1, 'Under 1%',
yield_pct < 3, '1% to 3%',
yield_pct < 5, '3% to 5%',
yield_pct < 10, '5% to 10%',
yield_pct < 25, '10% to 25%',
'25% and up') AS size_bucket,
count() AS payouts,
countDistinct(ticker) AS distinct_tickers
FROM
(
SELECT
dv.ticker AS ticker,
100 * toFloat64(dv.cash_amt) / toFloat64(px.close) AS yield_pct
FROM
(
SELECT
ticker,
date,
max(close) AS close
FROM global_markets.stocks_daily_aggs
WHERE date >= '2019-01-01'
AND (ticker, date) IN
(
SELECT ticker, ex_dividend_date
FROM global_markets.stocks_dividends
WHERE currency = 'USD'
AND cash_amount > 0
AND frequency = 0
)
GROUP BY ticker, date
HAVING close >= 1
) AS px
INNER JOIN
(
SELECT
ticker,
ex_dividend_date,
max(cash_amount) AS cash_amt
FROM global_markets.stocks_dividends
WHERE currency = 'USD'
AND cash_amount > 0
AND frequency = 0
AND ex_dividend_date >= '2019-01-01'
AND ex_dividend_date < today() - 5
GROUP BY ticker, ex_dividend_date
) AS dv ON dv.ticker = px.ticker AND dv.ex_dividend_date = px.date
)
GROUP BY size_bucket
ORDER BY min(yield_pct) ASCThe Under 1% band holds 3388 of these payments. The 25% and up band holds 66, spread across 57 names. Most one time distributions are small enough that a strike cut would be noise on the contract. The ones that reach an adjustment panel come from the right side of that chart.
What does an adjustment actually change?
Four fields on the contract are in play.
- The strike price. Every listed strike in the series is reduced by the cash paid per share, rounded to the penny. Take a hypothetical 40 strike call on a stock making a 2 dollar per share distribution: it becomes a 38 strike call.
- The deliverable. In the standard cash case it stays at 100 shares. When the amount is not known in advance, or a strike cut would push a strike to zero or below, the cash goes into the deliverable instead, and one contract then delivers 100 shares plus a fixed cash amount.
- The multiplier. It normally stays at 100, and the quoted price applies to the whole deliverable, cash component included.
- The symbol. An adjusted series usually picks up a numeric suffix on its root,
XYZ1in place ofXYZ, so it quotes separately from the standard series and the two never mix on a screen.
The machinery is the same family used in how stock splits affect options and adjusted options after mergers, where the deliverable changes shape rather than shrinking in price.
Does the option holder receive the dividend?
No, in either case. A cash distribution is paid to holders of record of the shares on the record date. An option is a right to buy or sell shares, not a share, so nothing reaches the option holder as a holder. An adjustment preserves the terms of the contract across the session where the stock begins trading without the distribution attached, and it does that by moving the strike or the deliverable, never by paying anyone. Ex dividend dates and options walks through that timing in detail.
Early assignment: the ordinary dividend case
An ordinary dividend produces no contract change at all, so its whole effect lands in exercise decisions instead. Exercising a call early converts it into stock and gives up whatever time value remains in the option. Time value is the part of the premium above intrinsic value, the amount by which an option's price sits above what exercising it right now would be worth.
That remainder thins out as a call moves deeper in the money. The panel below measures it on one household dividend payer, Coca Cola (KO), across near dated calls over the past year of daily contract records.
The exact SQL behind every number
SELECT
multiIf(moneyness < 0, 'Out of the money',
moneyness < 0.02, '0% to 2% in',
moneyness < 0.05, '2% to 5% in',
moneyness < 0.10, '5% to 10% in',
'10% or more in') AS moneyness_bucket,
count() AS contracts,
round(avg(time_value), 2) AS avg_time_value_usd,
round(avg(delta), 2) AS avg_delta
FROM
(
SELECT
toFloat64(underlying_close) / toFloat64(strike_price) - 1 AS moneyness,
toFloat64(option_close)
- greatest(toFloat64(underlying_close)
- toFloat64(strike_price), 0) AS time_value,
delta AS delta
FROM global_markets.options_greeks
WHERE underlying_symbol = 'KO'
AND delta > 0
AND iv_converged = 1
AND volume > 0
AND strike_price > 0
AND days_to_expiry BETWEEN 5 AND 35
AND date >= today() - 400
AND date < today() - 3
)
GROUP BY moneyness_bucket
ORDER BY min(moneyness) ASCIn the Out of the money band, the average call carried $0.37 per share of time value. In the 10% or more in band, where average delta reaches 0.93, the same measurement comes out at $0.45. A delta near 1 means the contract tracks the stock almost one for one, and very little is left in it to give up.
When a dividend per share is larger than the time value left in a deep in the money call, early exercises cluster in the session before the ex dividend date, and the short side of those contracts receives assignment notices the next morning. That is the classic early assignment setup, covered in when short options get assigned early. The two cases run in opposite directions. A special dividend rewrites the contract and leaves exercise decisions alone. An ordinary dividend leaves the contract alone and rewrites exercise decisions.
What is it like to trade an adjusted contract?
Thin, and easy to misread. Two things follow from the adjustment itself.
- The series no longer tracks a round lot of stock on its own. Quotes reference the amended deliverable, and a calculator that assumes 100 shares of the underlying misprices it.
- New strikes and expirations keep being listed on the standard series rather than the adjusted root. Activity migrates there, and the adjusted root trades in a shrinking pool until its final expiration passes.
Quoted spreads widen with that pool. An exit that assumes the liquidity of the standard series is a different exercise on the adjusted one.
Full data notes
The distribution panels read the cash dividend feed's cadence field, which marks each payment as monthly, quarterly, semiannual, annual, or one time. One time is the flag that lines up with the special and extraordinary language in the adjustment rules, and it is the closest queryable proxy for it. Rows are deduplicated by ticker, ex dividend date, and cadence before counting.
Payment size is measured against the closing price on the ex dividend date itself, in US dollars only, and only where that close was at least one dollar, which keeps sub dollar names from printing enormous percentages. None of these panels reads OCC adjustment memos: they measure the population of distributions that adjustment decisions are drawn from.
The KO panel takes daily per contract records with converged implied volatility and non zero volume, 5 to 35 days to expiry, and positive delta, which is how calls are separated from puts. Time value is the contract's close minus its intrinsic value.
FAQ
Do special dividends adjust option contracts?
Sometimes. A special or extraordinary cash distribution is reviewed by an OCC adjustment panel, and when the panel adjusts, the standard treatment reduces every strike in the series by the cash paid per share. Ordinary recurring dividends are not adjusted for at any size.
Does an ordinary dividend change an option's strike price?
No. A cash dividend declared under a regular schedule, quarterly or otherwise, leaves every term of the contract untouched, strike price included. The expected dividend stream over the life of the contract already sits inside the option's price.
Do option holders get dividends?
No. Dividends are paid to holders of record of the shares. A call holder who wants an upcoming dividend has to exercise before the ex dividend date, which turns the option into stock in time to be on the record.
What does the 1 at the end of an option symbol mean?
A numeric suffix on the root marks an adjusted series, one whose strike or deliverable was amended after a corporate action. It quotes separately from the standard series on the same underlying and usually trades far less.
Why is an adjusted option harder to trade?
No new strikes or expirations are listed on the adjusted root, so the pool of participants shrinks toward its last expiration. Its quotes sit against a non standard deliverable, which fewer screens display correctly and fewer market makers quote tightly.
Every panel here ships with the SQL that produced it, so the cadence flags and the price basis are auditable line by line. To check how a particular cadence or size band behaves, ask the question in plain English on the Strasmore terminal.