When Covered Calls Trigger the Straddle Rules
Stock plus a short call is the statutory shape of a straddle. Learn when covered calls stay inside the qualified covered call exception and when they fail.
Yes, a covered call can be a straddle for US federal tax purposes. Stock you own plus a short call written against that stock is a pair of offsetting positions, which is what Internal Revenue Code section 1092 calls a straddle. An exception known as the qualified covered call keeps most ordinary covered call writing outside the regime, and the calls that fall outside it are the ones written deep in the money or with too little time left to run.
This page describes the mechanics of the US federal rules for teaching purposes. It is not tax advice and it does not describe any individual's situation. Code sections are cited throughout so the text stays checkable as dollar thresholds and rates move around it.
Why is a covered call a straddle?
Section 1092(c)(1) defines a straddle as offsetting positions in personal property, meaning positions where holding one substantially reduces the risk of loss on the other. Stock normally sits outside the definition of personal property. Section 1092(d)(3) pulls it back in: stock counts when it is part of a straddle that includes an option on that same stock. One hundred shares and one short call against them clear both halves of the test. The call caps the upside in the shares, the shares cover the call, and a dollar of pain on one leg lands as a dollar of relief on the other.
The first consequence is the loss deferral rule in section 1092(a). A loss on one leg is allowed at year end only to the extent it exceeds the unrecognized gain sitting in the offsetting leg you still hold. Take a purely hypothetical position: 100 shares bought at $10.00 with one call written against them. In December the shares are sold at $8.50 for a $150 loss while the short call still carries $40 of unrealized gain. Under the deferral rule, $110 of that loss lands this year and $40 waits for the next one.
Two quieter effects travel with it. Temporary regulations under section 1092(b) suspend the holding period of the stock while the straddle is open, which can keep shares from reaching the long term line. Section 263(g) requires interest and carrying charges on straddle positions to be capitalized into basis rather than deducted, which mostly touches shares held on margin. For the payoff mechanics of the position itself, see how covered calls work. The tax overlay sits on top of that payoff.
What is the qualified covered call exception?
Section 1092(c)(4) carves out the common case. A call written against stock you hold is a qualified covered call when all of these hold:
- You granted the call rather than bought it, and your gain or loss on it will be capital.
- It trades on a national securities exchange, or on another market designated by Treasury.
- It had more than 30 days to expiration on the day you wrote it.
- Its strike price is not below the lowest qualified benchmark, which is the statute's definition of deep in the money.
- You are not an options dealer writing in the ordinary course of business.
Stock plus a qualified covered call is not treated as a straddle, and the deferral and carrying charge rules above do not attach to the pair. Fail any one test and the pair is an ordinary straddle from the moment the call is written.
The benchmark test is the one with moving parts. The applicable stock price is the prior session's closing price, or the opening price on the day the call is written when that opening runs more than 110% above the prior close. The lowest qualified benchmark is then the highest listed strike price below that applicable stock price. Section 1092(c)(4) adjusts it twice: when the applicable stock price is $25 or less the benchmark drops to the highest strike below 85% of it, and when the call runs more than 90 days with a strike above $50 the benchmark steps down to the second highest strike below the applicable price. Those dollar figures live in the statute, so read the current text before leaning on the numbers here.
What counts as deep in the money here?
The phrase is narrower in the statute than it is on a broker screen. The lowest qualified benchmark is the highest listed strike below the applicable stock price, and only that one strike sits on the floor. Every listed strike beneath it fails the fourth test, including strikes a reader would call barely in the money.
Take a purely hypothetical chain with $5 strike spacing and a stock that closed at $212. The benchmark is $210. A call written at $205, or at $200, fails the test even though both look ordinary next to the $210 line. The deeper strike collects more premium, and its delta, the estimated move in the call's price for a $1 move in the stock, sits closer to 1, so the contract moves almost share for share with the shares it is written against. That near lockstep is the risk reduction section 1092 is written about. The option chain gives no hint of the step.
The 30 day clock in the third test catches writers the strike test never touches. A weekly covered call written on a Monday for Friday expiration cannot be a qualified covered call at any strike, whatever strike is chosen.
How does a covered call affect qualified dividends?
Qualified dividends are taxed at long term capital gains rates rather than ordinary rates, and qualification turns on a holding period: the shares must be held more than 60 days inside the 121 day window that opens 60 days before the ex dividend date. The counting rules are laid out in the qualified dividend holding period guide. Section 246(c)(4) is where a short call enters. Any period in which the holder's risk of loss is diminished does not count toward those 60 days. Regulations under section 246(c) leave an ordinary out of the money qualified covered call alone. A call that is in the money, or one that fails the qualified covered call tests, stops the clock for as long as it stays open.
The window is wider than most writers picture it. The panel below lists Coca Cola's ex dividend dates since late 2023 with the 121 day window each one opens.
| ex_date | ex_date_label | cash_amount | window_opens | window_closes |
|---|---|---|---|---|
| 2023-11-30 | Nov 30, 2023 | 0.46 | Oct 1, 2023 | Jan 29, 2024 |
| 2024-03-14 | Mar 14, 2024 | 0.485 | Jan 14, 2024 | May 13, 2024 |
| 2024-06-14 | Jun 14, 2024 | 0.485 | Apr 15, 2024 | Aug 13, 2024 |
| 2024-09-13 | Sep 13, 2024 | 0.485 | Jul 15, 2024 | Nov 12, 2024 |
| 2024-11-29 | Nov 29, 2024 | 0.485 | Sep 30, 2024 | Jan 28, 2025 |
| 2025-03-14 | Mar 14, 2025 | 0.51 | Jan 13, 2025 | May 13, 2025 |
| 2025-06-13 | Jun 13, 2025 | 0.51 | Apr 14, 2025 | Aug 12, 2025 |
| 2025-09-15 | Sep 15, 2025 | 0.51 | Jul 17, 2025 | Nov 14, 2025 |
| 2025-12-01 | Dec 1, 2025 | 0.51 | Oct 2, 2025 | Jan 30, 2026 |
| 2026-03-13 | Mar 13, 2026 | 0.53 | Jan 12, 2026 | May 12, 2026 |
| 2026-06-15 | Jun 15, 2026 | 0.53 | Apr 16, 2026 | Aug 14, 2026 |
| 2026-09-15 | Sep 15, 2026 | 0.53 | Jul 17, 2026 | Nov 14, 2026 |
The exact SQL behind every number
SELECT
toString(ex_dividend_date) AS ex_date,
formatDateTime(ex_dividend_date, '%b %e, %Y') AS ex_date_label,
round(toFloat64(max(cash_amount)), 4) AS cash_amount,
formatDateTime(ex_dividend_date - 60, '%b %e, %Y') AS window_opens,
formatDateTime(ex_dividend_date + 60, '%b %e, %Y') AS window_closes
FROM global_markets.stocks_dividends
WHERE ticker = 'KO'
AND ex_dividend_date >= '2023-10-01'
AND ex_dividend_date <= today()
GROUP BY ex_dividend_date
ORDER BY ex_dividend_dateKO has gone ex dividend 12 times since Nov 30, 2023, most recently on Sep 15, 2026 at $0.53 a share. That last window opened Jul 17, 2026 and runs through Nov 14, 2026. Four windows of 121 days each add up to more calendar than a year holds, so a quarterly payer leaves almost no stretch where a short in the money call has no dividend to touch. One unqualified call can cost the straddle exception and the dividend rate in the same quarter.
What happens once the straddle rules apply to a covered call?
Four mechanics attach to the pair at once.
- Losses on either leg defer at year end to the extent of unrecognized gain in the other, under section 1092(a).
- The stock's holding period is suspended while the straddle runs, under the temporary regulations to section 1092(b).
- Interest and carrying charges capitalize into basis rather than being deducted, under section 263(g).
- Closing a leg at a loss and reopening it inside 30 days meets section 1091 as well. The wash sale rule and options covers the overlap.
Strike selection is a tax decision alongside a premium decision. The deeper strike pays more premium and moves the position into a different regime, and a broker chain prints only the first half of that pair. The premium side of the trade off is worked through in the covered call return calculation.
FAQ
Are all covered calls straddles?
No. Stock plus a short call is offsetting positions under section 1092, and a call meeting the qualified covered call tests in section 1092(c)(4) takes the pair back out of the straddle rules. Those tests turn on the strike price and on having more than 30 days to expiration when the call is written.
What counts as deep in the money for a covered call?
A strike below the lowest qualified benchmark, which is generally the highest listed strike price below the applicable stock price. The applicable stock price is the prior session's close, with the day's opening price substituted when it runs more than 110% above that close. Only one listed strike below the stock price clears the test.
Does writing a covered call cost me qualified dividend treatment?
It can. Section 246(c)(4) stops the qualified dividend holding period clock during any period of diminished risk of loss, and an in the money call or an unqualified covered call is treated that way. An out of the money qualified covered call is left alone under the regulations.
Do the straddle rules apply to index options?
Index options are section 1256 contracts, marked to market at year end with 60/40 treatment. Pairing one with a stock position creates a mixed straddle carrying its own election rules. Why index options are taxed 60/40 covers the 1256 side.
Where are these rules written down?
Straddles sit in Internal Revenue Code section 1092, with the qualified covered call exception at 1092(c)(4) and the holding period effects in the temporary regulations under 1092(b). Capitalized carrying charges sit in section 263(g). Dividend holding periods sit in section 246(c) and its regulations.
Every panel on this page ships with the exact SQL that produced it. To line up a stock's ex dividend windows before writing a call, ask the question in plain English on the Strasmore terminal.