Put Ratio Spread: Setup, Payoff Diagram, Greeks & Risk Management

M
MarketXLS Team
Published
Updated
Put ratio spread payoff diagram showing profit and loss zones with strike prices and breakeven point

Put ratio spread is a neutral-to-bearish options strategy that involves buying one put option at a higher strike price and selling two (or more) put options at a lower strike price, all with the same expiration date. The strategy is designed to profit from a moderate decline in the underlying stock — with maximum profit occurring when the stock settles exactly at the short strike at expiration. While the strategy offers a low-cost or even credit entry, it carries unlimited downside risk if the stock drops significantly below the lower strike. In this guide you will learn the complete mechanics of setting up a put ratio spread, how to calculate max profit and loss, how to analyze the Greeks, how to manage risk, and how to use MarketXLS options functions to build and monitor the strategy in Excel.


How the Put Ratio Spread Works

The put ratio spread (also called a put front spread or put ratio vertical spread) uses an unequal number of long and short puts to create a position that profits from a controlled, moderate decline in the underlying stock.

Standard 1:2 Put Ratio Spread Setup

LegActionStrikeQuantityPremium
Leg 1Buy 1 putHigher strike (A)1Debit (pay premium)
Leg 2Sell 2 putsLower strike (B)2Credit (receive premium)

Net cost: The premium received from selling two puts may partially or fully offset the cost of buying one put. This can result in a net debit (you pay), net credit (you receive), or even zero cost.

Entry Calculation

Net Debit = Premium Paid for Long Put − (2 × Premium Received for Each Short Put)

If the result is negative, you have a net credit entry.

MarketXLS Functions for Setup

Use MarketXLS to pull real-time option chain data for constructing the spread:

=QM_GetOptionChain("AAPL")

This returns the full option chain with all available strikes and expirations. From there, select your target strikes.

To get a specific option's price, first build the option symbol:

=OptionSymbol("AAPL", "2026-03-20", "P", 220)

This returns the standardized option symbol (e.g., @AAPL 260320P00220000). Then get the current price:

=QM_Last("@AAPL 260320P00220000")

For full Greeks and quotes on the entire chain:

=QM_GetOptionQuotesAndGreeks("AAPL")

Payoff Diagram and P&L Analysis

The put ratio spread has a distinctive payoff profile with three distinct zones.

P&L Zones

Stock Price at ExpirationOutcomeP&L
Above Strike A (higher strike)All puts expire worthlessLoss = net debit paid (or profit = net credit received)
At Strike ALong put is at-the-money, shorts are OTMSmall loss/gain depending on entry cost
Between Strike A and Strike BLong put is ITM, short puts are OTMIncreasing profit as price moves toward B
At Strike B (lower strike)Maximum profit — long put has full value, short puts expire worthlessMax Profit = (A − B) × 100 − Net Debit
Below Strike BAll puts are ITM — short puts create increasing lossesLoss increases dollar-for-dollar below breakeven
Far below Strike BUnlimited loss — two short puts overwhelm one long putLoss = (2 × short put loss) − long put gain − net credit

Maximum Profit Calculation

Max Profit = (Strike A − Strike B) × 100 − Net Debit Paid

If you entered for a net credit:

Max Profit = (Strike A − Strike B) × 100 + Net Credit Received

Maximum profit occurs when the stock closes exactly at Strike B at expiration.

Maximum Loss

The put ratio spread has unlimited downside risk. Below the breakeven point, losses increase without limit as the stock continues to fall.

Breakeven = Strike B − Max Profit per Share

Or equivalently:

Breakeven = Strike B − (Strike A − Strike B) + Net Debit per Share

Detailed P&L Example

Setup: Stock trading at $225. Buy 1 AAPL 220 put for $8.00. Sell 2 AAPL 200 puts for $3.00 each.

  • Net debit: $8.00 − (2 × $3.00) = $2.00 per share ($200 total)
  • Max profit: ($220 − $200) × 100 − $200 = $1,800
  • Breakeven: $200 − $18 = $182
Stock PriceLong 220 Put Value2x Short 200 Put ValueNet P&L
$230$0$0-$200
$220$0$0-$200
$210$1,000$0+$800
$200$2,000$0+$1,800
$190$3,000-$2,000+$800
$182$3,800-$3,600$0 (breakeven)
$170$5,000-$6,000-$1,200
$150$7,000-$10,000-$3,200

Greeks Analysis for the Put Ratio Spread

Understanding the Greeks helps you manage the position throughout its life, not just at expiration.

Delta

The put ratio spread starts with a slightly negative to neutral Delta (depending on strike selection). As the stock approaches Strike B, Delta becomes increasingly negative — meaning the position gains value as the stock drops. Below Strike B, the position's effective Delta reverses to positive (losses accelerate as the stock drops further because the two short puts overwhelm the one long put).

Theta (Time Decay)

Theta generally works in your favor with a put ratio spread because you are net short options (2 sold vs. 1 bought). Time decay erodes the value of the short puts faster than the long put, assuming the stock is near or between the strikes.

However, if the stock drops well below Strike B, Theta becomes less helpful as the short puts gain significant intrinsic value.

Vega (Volatility Sensitivity)

The put ratio spread has a negative Vega position. Rising implied volatility hurts the position (because you are net short options), while falling implied volatility helps it.

Implication: This strategy works best in high-volatility environments where you expect volatility to decline — or at least not increase dramatically.

Gamma

Near expiration, Gamma becomes a significant risk. If the stock is near Strike B, small price changes can dramatically swing the P&L. This is especially dangerous in the last week before expiration.

Greeks Summary Table

GreekDirectionBest ScenarioWorst Scenario
DeltaSlightly negative initiallyStock drops to Strike BStock crashes far below B
ThetaPositive (net short options)Time passes near Strike BDeep ITM short puts
VegaNegativeIV decreasingIV spiking
GammaVariableStock stable near BStock at B near expiration

Setting Up the Put Ratio Spread in Excel

Step 1: Pull the Option Chain

=QM_GetOptionChain("AAPL")

Review available strikes and expirations. Select an expiration 30-60 days out for optimal theta decay.

Step 2: Select Your Strikes

Choose the higher strike (A) at-the-money or slightly out-of-the-money, and the lower strike (B) at your expected support level or target decline zone.

=OptionSymbol("AAPL", "2026-03-20", "P", 220)    ' Long put
=OptionSymbol("AAPL", "2026-03-20", "P", 200)    ' Short puts

Step 3: Get Current Prices and Greeks

=QM_Last("@AAPL 260320P00220000")     ' Long put price
=QM_Last("@AAPL 260320P00200000")     ' Short put price

For comprehensive Greeks on all options:

=QM_GetOptionQuotesAndGreeks("AAPL")

Step 4: Build the P&L Table

Create a column of stock prices at expiration (from well below Strike B to above Strike A) and calculate the P&L for each scenario:

=MAX(0, StrikeA - StockPrice) - 2*MAX(0, StrikeB - StockPrice) - NetDebit

Multiply by 100 for dollar P&L per contract.

Step 5: Monitor Position Greeks

Recalculate position Greeks daily by pulling updated option prices and Greeks from the option chain. Track Delta, Theta, and Vega to determine when adjustments are needed.


Risk Management Strategies

The put ratio spread's unlimited downside risk makes risk management critical. Here are proven approaches:

Strategy 1: Stop-Loss on the Underlying

Set a stop-loss exit trigger at or near the breakeven price. If the stock drops to your calculated breakeven, close the entire position.

Example: With a breakeven at $182, set a mental or automated alert at $185 (just above breakeven) to close the position before losses accelerate.

Strategy 2: Buy a Protective Put (Convert to Butterfly)

If the stock approaches the lower strike and you are concerned about continued decline, buy an additional put at a strike below B to cap the downside:

Before adjustment: Buy 1 × 220P, Sell 2 × 200P (put ratio spread — unlimited risk)

After adjustment: Buy 1 × 220P, Sell 2 × 200P, Buy 1 × 180P (put butterfly — capped risk)

The additional put costs premium but converts the unlimited risk position into a defined-risk butterfly.

Strategy 3: Roll the Short Puts Down

If the stock drops below Strike B, roll the two short puts to a lower strike by buying them back and selling two new puts at a lower price. This pushes the breakeven lower and gives the trade more room.

Strategy 4: Time-Based Exit

Set a maximum holding period (e.g., close the position with 7-10 days until expiration regardless of where the stock is). This avoids the dangerous Gamma acceleration that occurs in the final days before expiration.

Strategy 5: Partial Position Closure

If you reach a significant portion of maximum profit (e.g., 50-75%), close the position early rather than waiting for the stock to land exactly at Strike B at expiration.


When to Use the Put Ratio Spread

Market OutlookSuitabilityWhy
Moderately bearish✅ IdealMaximum profit at the short strike — moderate decline
Strongly bearish❌ AvoidUnlimited risk below breakeven
Neutral to slightly bearish✅ GoodLow cost or credit entry, profits from modest decline
Bullish❌ AvoidBoth legs lose value; limited loss but still a loss
High IV, expecting decline✅ ExcellentNegative Vega benefits from IV contraction
Low IV, expecting volatility increase❌ AvoidRising IV hurts the net-short position

Comparison: Put Ratio Spread vs. Similar Strategies

StrategyRiskRewardCostBest For
Put Ratio Spread (1:2)Unlimited downsideLimited (at short strike)Low / creditModerate decline + IV contraction
Bear Put SpreadLimited (defined)LimitedNet debitConfident bearish view with defined risk
Long PutLimited (premium paid)Substantial (to zero)Full premiumStrong bearish conviction
Put ButterflyLimited (defined)Limited (at middle strike)LowPrecise target price expectation
Put Ratio Backspread (2:1)LimitedUnlimited downside profitNet credit/small debitExpecting large downward move
Short StraddleUnlimited both directionsLimited (premium)CreditExpecting very low volatility

Variations of the Put Ratio Spread

1:3 Put Ratio Spread

Buy 1 put at Strike A, sell 3 puts at Strike B. This increases the initial credit (or reduces the debit) but amplifies the unlimited downside risk. Use this only when you are highly confident the stock will not crash.

Skip-Strike Put Ratio Spread

Instead of consecutive strikes, use strikes with a wider gap. For example, buy the 220 put and sell two 190 puts. This widens the profit zone but moves the maximum profit point further from the current price.

Calendar Put Ratio Spread

Buy a longer-dated put at Strike A and sell two shorter-dated puts at Strike B. This adds a time dimension — the short puts decay faster, potentially allowing you to roll into a new short position after the first expiration.


Pricing and Options Analysis Tools

MarketXLS provides comprehensive options analysis functions as part of its Excel add-in. To access =QM_GetOptionChain(), =OptionSymbol(), =QM_Last(), =QM_GetOptionQuotesAndGreeks(), and the full library of 1,100+ functions, visit the MarketXLS pricing page to choose the plan that fits your options trading needs.


Frequently Asked Questions

What is the maximum profit on a put ratio spread?

Maximum profit occurs when the stock price equals the short strike at expiration. The formula is: Max Profit = (Long Strike − Short Strike) × 100 − Net Debit Paid. If you entered for a net credit, add the credit to the intrinsic value spread.

Is the put ratio spread a good strategy for beginners?

The put ratio spread is generally not recommended for beginners due to its unlimited downside risk. It requires active monitoring and the ability to implement risk management adjustments. Beginners should consider defined-risk alternatives like bear put spreads or put butterflies before attempting ratio spreads.

How do I choose the right strikes for a put ratio spread?

Select the long put (Strike A) at-the-money or slightly out-of-the-money. Select the short put (Strike B) at a price level you believe will act as support — a level you expect the stock to reach but not fall below significantly. Technical analysis levels, moving averages, and Fibonacci retracement levels can help identify appropriate short strikes.

What happens if the stock drops far below the short strike?

If the stock drops well below the short strike, the two short puts generate losses that overwhelm the gains from the single long put. Losses increase approximately dollar-for-dollar below the breakeven price, with no cap. This is why risk management (stop-losses, converting to a butterfly, or rolling) is essential.

How does implied volatility affect the put ratio spread?

Since the put ratio spread is net short options, it has negative Vega. Rising implied volatility increases the value of the short puts more than the long put, hurting the position. Conversely, declining implied volatility benefits the position. This strategy works best when you expect volatility to stay flat or decrease.

Can I adjust a put ratio spread if the trade goes against me?

Yes. Common adjustments include: (1) buying an additional put below Strike B to convert to a butterfly and cap downside risk, (2) rolling the short puts to lower strikes to widen the profit zone, (3) closing the entire position at a predetermined loss level, or (4) closing the short puts and keeping the long put if you become strongly bearish.


Conclusion

The put ratio spread is a sophisticated options strategy that offers attractive risk-reward characteristics for traders with a moderately bearish outlook. By buying one put at a higher strike and selling two puts at a lower strike, the strategy can be entered at low cost or even a credit — with maximum profit achieved when the stock declines to the short strike at expiration.

The trade-off is unlimited downside risk, which makes active risk management non-negotiable. Using MarketXLS options functions — =QM_GetOptionChain() to scan available options, =OptionSymbol() to build option symbols, =QM_Last() to price each leg, and =QM_GetOptionQuotesAndGreeks() to monitor Greeks — you can set up, analyze, and manage put ratio spreads entirely within Excel.

The strategy is best suited for experienced options traders who can monitor positions daily, have a clear thesis on the expected price range, and are prepared to implement adjustments when necessary.

Ready to analyze options strategies in Excel? Get started with MarketXLS and access real-time option chains, Greeks, and 1,100+ Excel functions for options analysis.


Disclaimer

None of the content published on marketxls.com constitutes a recommendation that any particular security, portfolio of securities, transaction, or investment strategy is suitable for any specific person. The author is not offering any professional advice of any kind. The reader should consult a professional financial advisor to determine their suitability for any strategies discussed herein. Options involve risk and are not suitable for all investors. The article is written for educational purposes only. Past performance does not guarantee future results.

Important Disclaimer

The information provided in this article is for educational and informational purposes only and should not be construed as investment advice, a recommendation, or an offer to buy or sell any securities. MarketXLS is a financial data platform and is not a registered investment advisor, broker-dealer, or financial planner. Always conduct your own research and consult with a qualified financial professional before making any investment decisions. Past performance is not indicative of future results. Trading and investing involve substantial risk of loss.

#1 Excel Solution for Investors

Get Market data in Excel easy to use formulas

  • Real-time Live Streaming Option Prices & Greeks in your Excel
  • Historical (intraday) Options data in your Excel
  • All US Stocks and Index options are included
  • Real-time Option Order Flow
  • Real-time prices and data on underlying stocks and indices
  • Works on Windows, MAC or even online
  • Implement MarketXLS formulas in your Excel sheets and make them come alive
  • Save hours of time, streamline your option trading workflows
  • Easy to use with formulas and pre-made templates
Call: 1-877-778-8358
Ankur Mohan MarketXLS
Welcome! I'm Ankur, the founder and CEO of MarketXLS. With more than ten years of experience, I have assisted over 2,500 customers in developing personalized investment research strategies and monitoring systems using Excel.

I invite you to book a demo with me or my team to save time, enhance your investment research, and streamline your workflows.
Implement "your own" investment strategies in Excel with thousands of MarketXLS functions and templates.
MarketXLS provides all the tools I need for in-depth stock analysis. It's user-friendly and constantly improving. A must-have for serious investors.

John D.

Financial Analyst

I have been using MarketXLS for the last 6+ years and they really enhanced the product every year and now in the journey of bringing in AI...

Kirubakaran K.

Investment Professional

MarketXLS is a powerful tool for financial modeling. It integrates seamlessly with Excel and provides real-time data.

David L.

Financial Analyst

I have used lots of stock and option information services. This is the only one which gives me what I need inside Excel.

Lloyd L.

Professional Trader

Meet The Ultimate Excel Solution for Investors

Live Streaming Prices in your Excel
All historical (intraday) data in your Excel
Real time option greeks and analytics in your Excel
Leading data service for Investment Managers, RIAs, Asset Managers
Easy to use with formulas and pre-made sheets