Straddle vs Strangle: Break-Evens and Margin
Straddle vs strangle, compared on the four things most guides skip: break-even math, margin on the short side, probability of profit, and expected move.
Straddle vs strangle comes down to one choice: whether the two option legs sit on the same strike or on two different strikes. A long straddle buys a call and a put at the same strike, costs more, and starts paying on a smaller move. A long strangle buys a call above the current price and a put below it, costs less, and needs a bigger move before it returns anything.
What is the difference between a straddle and a strangle?
Both are two-leg, direction-neutral positions: a call and a put on the same underlying with the same expiration, paying off on the size of a move rather than its direction. The strikes are the only structural difference. A straddle uses one, normally the strike nearest the current price (at the money). A strangle uses two, a call strike above the price and a put strike below it, and the distance between them is the strangle's width.
That width sets everything else: the cost, the break-evens, the move required, the capital a seller posts, and the odds of finishing in profit. The definitions take a paragraph. The four items below are what the comparison actually turns on.
How do you calculate the break-even on a straddle or strangle?
Total premium means both legs added together, since a buyer pays for both. Every break-even here starts at a strike and is then adjusted by that total.
- Long straddle, upside: the strike plus the total premium.
- Long straddle, downside: the strike minus the total premium.
- Long strangle, upside: the call strike plus the total premium.
- Long strangle, downside: the put strike minus the total premium.
Work it through on a hypothetical stock at $100. The at-the-money straddle costs $8.00 for the pair, putting break-evens at $108 and $92, an 8% move in either direction. The 95/105 strangle costs $4.00 for the pair, putting break-evens at $109 and $91, a 9% move in either direction. Half the cost, one extra percentage point of required move on each side. Max loss on a long position is the premium paid, taken in full only if the underlying finishes exactly at the straddle's strike or anywhere between the strangle's two strikes. Max profit is open-ended above and capped below only by a price of zero.
Widen the strangle further and both effects grow together. A 90/110 pair on that same $100 stock costs less than the 95/105 and needs a bigger move again. At no width does the cheaper structure also become the easier one, and that is the trade the whole comparison rests on. Option prices are quoted per share, so multiply by 100 for one contract.
What do short straddles and short strangles tie up in capital?
Sell the same structures and everything inverts. A short straddle collects the combined premium at one strike; a short strangle collects less at two. Max profit for either seller is the credit received, kept whole only if the underlying settles exactly at the strike for the straddle, or anywhere between the strikes for the strangle. Max loss is undefined above and bounded only by zero below, since neither structure owns a long option capping the tail.
Capital works differently from a defined-risk spread. Brokers generally do not add the two naked requirements together, since only one side can be assigned against the seller at expiration. The requirement is computed on the tested side: the larger of the two single-leg requirements, with the other leg's premium added on. A strangle's out-of-the-money strikes usually carry a smaller single-side requirement than an at-the-money straddle's of the same size, and the number is not fixed at entry, since it recalculates as the underlying travels toward one strike. Exact formulas vary by broker and account type.
Which has the higher probability of profit?
Wider break-evens cut in opposite directions for the two sides of the trade. For a seller, the strangle's break-evens sit further from the money, so more outcomes finish inside them, and the credit collected is smaller. Higher odds of keeping something, less of it to keep. For a buyer, the identical fact reads as a penalty: the cheaper structure needs the larger move.
No one can hand a trader the odds of a future move. What data can show is how often a move of each size has already happened. The panel below takes every 21-session window in SPY since 2011, roughly a calendar month each, and measures the share that finished at least a given distance from where it started.
The exact SQL behind every number
WITH
daily AS
(
SELECT
date,
max(toFloat64(close)) AS close_px
FROM global_markets.stocks_daily_aggs
WHERE ticker = 'SPY'
AND date >= '2011-01-01'
AND date < '2026-07-01'
GROUP BY date
),
spans AS
(
SELECT
close_px,
leadInFrame(close_px, 21)
OVER (ORDER BY date ASC ROWS BETWEEN CURRENT ROW AND UNBOUNDED FOLLOWING) AS close_fwd
FROM daily
)
SELECT
concat(toString(threshold), '% or more') AS move_size,
round(100 * countIf(abs(100 * (close_fwd - close_px) / close_px) >= threshold)
/ count(), 1) AS share_of_windows_pct
FROM spans
ARRAY JOIN [2, 3, 4, 5, 6, 8, 10, 12] AS threshold
WHERE close_fwd > 0
GROUP BY threshold
ORDER BY threshold62.4% of those windows finished 2% or more away from their starting point, and 1.4% reached 12% or more. Set that curve beside a break-even distance and the choice stops being a matter of taste. The 8% the hypothetical straddle above needs and the 9% its 95/105 strangle needs sit on very different parts of it, and the gap between those two points is what a seller is paid for and a buyer pays up for.
Straddle vs strangle: matching the width to the expected move
Here is the rule that makes the two structures comparable. Measure each one's break-even distance against the expected move implied by IV, the one standard deviation range the option market is already pricing for that expiration. Implied volatility is quoted annualized, so scaling it to an expiration means multiplying by the square root of the time left.
The exact SQL behind every number
SELECT
underlying_symbol AS symbol,
round(100 * avg(implied_volatility), 1) AS implied_vol_pct,
round(100 * avg(implied_volatility)
* sqrt(avg(days_to_expiry) / 365), 2) AS expected_move_pct
FROM global_markets.options_greeks
WHERE date =
(
SELECT max(date)
FROM global_markets.options_greeks
WHERE underlying_symbol = 'SPY'
AND date >= today() - 90
AND iv_converged = 1
AND volume > 0
)
AND underlying_symbol IN ('SPY', 'QQQ', 'AAPL', 'MSFT', 'NVDA', 'KO')
AND iv_converged = 1
AND volume > 0
AND days_to_expiry BETWEEN 20 AND 45
AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.05
GROUP BY underlying_symbol
ORDER BY expected_move_pct DESCOn the most recent chain, NVDA priced the widest one-month expected move in the group at 12.57%, on an implied volatility of 42.1%. SPY priced the narrowest, 3.9%. A fixed dollar width is a different proposition on each of them.
Divide a break-even distance by the expected move and both structures land on one scale. Break-evens 8% out against a 6% expected move come to 1.3 expected moves. A strangle 9% out on the same name comes to 1.5. Neither number forecasts anything. Both let a trader line up an at-the-money straddle on one name against a wide strangle on another, which dollar prices alone cannot do.
Earnings sharpens all of it. Implied volatility usually climbs into a scheduled event and drops once the number is public, the effect covered in IV crush, and both long structures own volatility, so both give value back at that moment. Earnings moves the option greeks on both legs at once. A long straddle or strangle held through a report pays only when the realized move clears the break-even distance priced in advance.
What vega and time decay look like on each
Both long structures own two options, so both gain value when implied volatility rises (long vega) and lose a little with each day that passes (short theta). Width scales both of those exposures.
An at-the-money pair carries more vega than a pair struck the same distance either side of it, since a single option's vega peaks near the money and falls away as the strike moves out. Time decay follows the same shape: the at-the-money pair gives up more per day in absolute terms, and it has more premium to give up. The straddle is the higher-octane version of the same idea on both counts. The option greeks behave identically on the two legs; width simply scales them, and vega is the measure that separates the two structures most.
FAQ
Is a straddle or a strangle cheaper?
The strangle, at the same expiration and size. Both of its legs are out of the money, so both carry less premium than the at-the-money pair a straddle buys. That saving is paid for with wider break-evens.
Which has the higher probability of profit, a straddle or a strangle?
For a seller, the short strangle: its break-evens sit further out, so more outcomes finish inside them, at a smaller credit. For a buyer the ranking flips, since the long straddle needs the smaller move to reach its break-even, at a higher cost.
How do you calculate the break-even on a strangle?
Add both premiums to get the total cost, then add that total to the call strike for the upside break-even and subtract it from the put strike for the downside. A 95/105 strangle costing $4.00 breaks even at $109 and $91.
Does a short strangle require less capital than a short straddle?
Usually, at the same size. The requirement is calculated on the tested side rather than by summing both naked legs, and out-of-the-money strikes carry a smaller single-side requirement than at-the-money strikes. Both stay undefined-risk, and the formula varies by broker.
Every panel here carries the SQL that produced it, one expander away. To price these structures on a name you follow, ask for it in plain English on the Strasmore terminal.