When Special Dividends Adjust Options
Time value left in KO calls as they move deeper in the moneyranking ·
2026-08-22 · 5×4
One time distributions by size, measured against the ex date closing priceranking ·
2026-08-22 · 6×3
How big each kind of cash distribution is, as a share of the stock priceranking ·
2026-08-22 · 5×4
One time cash distributions per calendar year, and their share of all payoutsranking ·
2026-08-22 · 9×3
Time value left in KO calls as they move deeper in the money
Time value left in KO calls as they move deeper in the money
| moneyness_bucket | contracts | avg_time_value_usd | avg_delta |
|---|---|---|---|
| Out of the money | 8872 | 0.37 | 0.18 |
| 0% to 2% in | 1688 | 1.03 | 0.63 |
| 2% to 5% in | 1810 | 0.65 | 0.79 |
| 5% to 10% in | 1200 | 0.47 | 0.88 |
| 10% or more in | 1209 | 0.46 | 0.93 |
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) ASC
More from this analysisWhen Special Dividends Adjust Options
One time cash distributions per calendar year, and their share of all payouts
ranking 9×3
→
One time distributions by size, measured against the ex date closing price
ranking 6×3
→
How big each kind of cash distribution is, as a share of the stock price
ranking 5×4
→
Near-the-money implied volatility into a cash close (ATVI, 2023)
series 83×4
→
See all 2,170 queries →