How Ex-Dividend Dates Dey Affect Options
How ex-dividend dates dey affect options: why ordinary dividends no dey move strikes, when to exercise a call early, and how liquid option greeks just glide through the ex-date.
For most option holders an ex-dividend date no dey change almost anything. The dividend wey dey come don already dey inside the price of the option through the forward price of the stock, and the greeks pass through the ex-date without any jump. But one sharp exception dey, and e dey run the opposite way of wetin most people dey expect: the person wey hold in-the-money American call sometimes suppose exercise am one day before the ex-date so dat e go capture the dividend. This post go walk through both, using one real SPY option around im June 2026 ex-date.
Do stock options dey adjust for dividends?
Ordinary cash dividends no dey change the terms of a listed option. The strike price remain where e be, the contract size remain where e be, and the option holder no receive anything from the dividend directly. That non-adjustment na exactly why the ex-date matter for calls at all: since dem no make the option whole for the payout, any call holder wey want the dividend suppose own the shares, and dat one mean say make e exercise before the ex-date.
The exception na one special dividend. For any special or non-recurring cash distribution, the Options Clearing Corporation generally dey adjust the contract, dem dey lower the strike by the special amount on the ex-date. Ordinary dividends dey on their own; special ones na the clearinghouse dey handle am.
Ex-dividend dates don already dey priced in, so the greeks just dey glide through
SPY dey pay dividend roughly every quarter, near $1.90 per share lately.
The exact SQL behind every number
SELECT
toString(ex_dividend_date) AS ex_date,
round(cash_amount, 3) AS dividend_usd
FROM global_markets.stocks_dividends
WHERE ticker = 'SPY'
AND ex_dividend_date BETWEEN '2025-01-01' AND '2026-06-30'
ORDER BY ex_dividend_dateSPY go ex-dividend on one $1.904 dividend on 2026-06-18. The market fit see one dividend coming weeks before, and e don already dey inside the option price through the forward: one ordinary dividend dey make calls slightly cheaper and puts slightly richer pass wetin one no-dividend world go set dem. On the ex-date the stock go open lower by about the dividend, but one correctly priced option no go lurch, since dem expect that drop all along. One liquid near-the-money SPY call and put go show am directly.
The exact SQL behind every number
SELECT date,
round(anyIf(delta, position(ticker, 'C00740') > 0), 3) AS call_delta,
round(anyIf(delta, position(ticker, 'P00740') > 0), 3) AS put_delta
FROM global_markets.options_greeks
WHERE ticker IN ('O:SPY260717C00740000', 'O:SPY260717P00740000')
AND date BETWEEN '2026-06-11' AND '2026-06-24'
AND implied_volatility > 0.02
GROUP BY date
ORDER BY dateThe call delta drift from 0.535 to 0.494 across the two weeks as e track SPY, and the put delta mirror am (the two sum to about one in absolute value on every session: 0.535 against -0.467 at the start). Across the ex-date itself the call delta sit at 0.634 one day before and 0.619 on the ex-date: basically no change. No discontinuity dey on the ex-date, and none dey inside the other greeks either. For the holder of any liquid option, the ex-dividend date just pass without any event.
When e go worth to exercise one call early?
Here na the one real decision wey the ex-date dey force. One in-the-money American call carry two kain value: intrinsic value (how far in the money e be) and time value (everything else). To exercise early na to turn the option into stock, and dat one allow you collect the upcoming dividend, but you go pay for am with the time value wey you throw away by exercising. The rule follow straight from that trade: exercise one in-the-money call early for one dividend only when the time value wey remain dey less than the dividend.
One worked example go make am concrete. Make we say one stock dey trade for $50 and e dey pay one $1.00 dividend tomorrow, and you hold one $40-strike call with two days remaining. Im intrinsic value na $10 and the time value wey remain na $0.15. If you exercise today you go capture the $1.00 dividend and you go give up $0.15 of time value: clear gain. If you hold am instead you go miss the dividend. Change the time value to $1.50 and the math go reverse: keeping the option dey worth pass the dividend, and you no go exercise.
Whether that threshold cross or no depend on the dividend size, and SPY own one small. The panel take the day before SPY ex-date and measure the time value wey remain inside deep in-the-money calls (at least $25 of intrinsic value), dem group dem by how long dem get to run.
The exact SQL behind every number
SELECT
multiIf(dte <= 9, '3 to 9 days', dte <= 16, '10 to 16 days', '17 to 45 days') AS days_to_expiry,
count() AS contracts,
round(median(time_value), 2) AS median_time_value,
round(100.0 * countIf(time_value < 1.904) / count(), 0) AS pct_below_dividend
FROM (
SELECT option_close - greatest(underlying_close - strike_price, 0) AS time_value,
(expiration_date - toDate('2026-06-17')) AS dte
FROM global_markets.options_greeks
WHERE date = '2026-06-17'
AND option_type = 'C'
AND underlying_symbol = 'SPY'
AND underlying_close - strike_price >= 25
AND expiration_date > toDate('2026-06-17')
AND expiration_date <= toDate('2026-08-01')
AND implied_volatility > 0.02
)
GROUP BY days_to_expiry
ORDER BY min(dte)Even one day before the ex-date, the median deep in-the-money call still hold $3.89 of time value at 3 to 9 days out, wey rise to $5.92 at 17 to 45 days: all of dem well above the $1.904 dividend. Only 14% of the near-dated group get time value wey dey less than the dividend. For one low-yield name like SPY, early exercise only pay for the shortest expiries and the deepest strikes. On one higher-yield stock dem dey cross the threshold far more often, and dat one na why the writer of one covered call on one dividend payer dey watch the day before the ex-date sharp sharp: dem fit assign one in-the-money short call early to one holder wey dey reach for the dividend.
How often early exercise dey actually optimal across the whole market
The SPY table above na one underlying on one ex-date. The same test dey run across the entire market at the same time. June 30, 2026 carry one of the biggest ex-dividend waves for the month; here na every optionable payer for that day, with each in-the-money call dem check on June 29 — the last day wey the exercise decision exist:
The exact SQL behind every number
WITH divs AS (
SELECT ticker, max(cash_amount) AS dividend
FROM global_markets.stocks_dividends
WHERE ex_dividend_date = toDate('2026-06-30') AND cash_amount > 0
GROUP BY ticker
)
SELECT count(DISTINCT g.underlying_symbol) AS underlyings_measured,
count() AS itm_calls_measured,
countIf(g.option_close - (g.underlying_close - g.strike_price) < d.dividend) AS exercise_optimal,
round(100.0 * countIf(g.option_close - (g.underlying_close - g.strike_price) < d.dividend) / count(), 1) AS pct_optimal
FROM global_markets.options_greeks g
INNER JOIN divs d ON g.underlying_symbol = d.ticker
WHERE g.date = toDate('2026-06-29')
AND g.option_type = 'C'
AND g.underlying_close - g.strike_price > 0
AND g.expiration_date > toDate('2026-06-30')
AND g.implied_volatility > 0.02 AND g.iv_convergedAcross 85 underlyings wey go ex-dividend that day, 613 in-the-money calls get live end-of-day marks — and 30% of dem carry less time value pass the dividend wey dem about to forfeit. The rule no be one curiosity; on one heavy ex-date, roughly one ITM call out of three na contract wey im holder suppose exercise or exit.
The exact SQL behind every number
WITH divs AS (
SELECT ticker, max(cash_amount) AS dividend
FROM global_markets.stocks_dividends
WHERE ex_dividend_date = toDate('2026-06-30') AND cash_amount > 0
GROUP BY ticker
)
SELECT g.underlying_symbol AS ticker,
round(any(d.dividend), 2) AS dividend,
count() AS itm_calls,
countIf(g.option_close - (g.underlying_close - g.strike_price) < d.dividend) AS exercise_optimal
FROM global_markets.options_greeks g
INNER JOIN divs d ON g.underlying_symbol = d.ticker
WHERE g.date = toDate('2026-06-29') AND g.option_type = 'C'
AND g.underlying_close - g.strike_price > 0
AND g.expiration_date > toDate('2026-06-30')
AND g.implied_volatility > 0.02 AND g.iv_converged
GROUP BY g.underlying_symbol
HAVING exercise_optimal > 0
ORDER BY exercise_optimal DESC
LIMIT 10The names wey dey top share one profile: steady payers with deep, liquid chains — USB alone get 32 of im 64 in-the-money calls inside exercise-or-exit territory against im $0.52 payment. High-yield names with small absolute dividends dey show too: the test dey compare the dividend to the time value, and deep-in-the-money calls near expiry no carry almost any.
Wetin about put options?
Puts dey sit on the comfortable side of the ex-date. The expected drop inside the stock dey make one put more valuable, and that value don already dey inside the price before the ex-date arrive, so the put no go jump when the stock go ex. No dividend-driven reason dey to exercise one put early either; early exercise of one put na question about interest rates, no be dividends. The whole options story of dividend na the call side.
FAQ
Do stock options dey adjust for dividends?
Ordinary cash dividends no dey adjust listed option terms: the strike and contract size no change, and holders no receive anything from the dividend. Special, non-recurring dividends na the exception, and na there the Options Clearing Corporation go lower the strike by the special amount.
I suppose exercise my call before the ex-dividend date?
Only when the call dey in the money and the time value wey remain dey less than the dividend. If you exercise early you go capture the dividend but you go forfeit the time value, so the trade only make sense when the dividend na the larger of the two. That one dey most common on higher-yield stocks and for short-dated, deep in-the-money calls.
Do call options lose value on the ex-dividend date?
No be as one jump. The expected drop inside the stock don already dey inside the call price before the ex-date, so one liquid call delta and price go pass through the date smooth. Across SPY June ex-date im near-the-money call delta hold at 0.634 one day before and 0.619 on the date.
Do dividends dey make put options more expensive?
Yes. One dividend wey dey come dey lower the forward price of the stock, and dat one dey lift put values and trim call values versus one stock wey no dey pay anything. The effect don already dey priced in before the ex-date, dem no apply am on the date.
Wetin be early assignment risk on one covered call?
If you don write one in-the-money call against stock wey you own, im holder fit exercise the day before one ex-date so dat e go claim the dividend, and dem go assign your shares away just before you suppose collect am. The risk dey biggest when the call time value don fall below the dividend.
Every panel above na one stored, inspectable query. Open the SQL under any chart to audit am, or pull the greeks for any contract and any ex-dividend date on the Strasmore terminal.