Trading Strategies On Python Options 1721480977
Trading Strategies On Python Options 1721480977
Abstract
We would like to firstly thank Zura Kakushadze and Juan Andrés Serur for their work on 151
trading strategies and also the inspiration that this paper gave us. The aim of our work is to
reproduce these strategies in Python and have a clear view on the P&L of each strategy. You can
find the Python implementation on: Chenjie’s Github Trading strategies. For more mathematical
and trading description details, please refer to Zura Kakushadze and Juan Andrés Serur ’s work
on 151 trading strategies.
This first edition contains all options linked trading strategies with numerical and python imple-
mentation of P&L. Other strategies on other products would be implemented in further editions.
introduction
conventional notation of our paper
• ST is the stock price at expiration.
• S0 is the initial stock price.
Capital Gain Strategy: A capital gain strategy is designed to profit from significant movements in
the price of the underlying asset, whether up or down. These strategies typically involve buying op-
tions, which have a limited downside (the premium paid) and unlimited upside potential. The goal is to
achieve a substantial increase in the value of the options as the underlying asset’s price moves favorably.
Net Credit Strategy: A net credit strategy involves selling options to collect premium income.
The initial cash inflow from selling the options creates a net credit. These strategies are often designed
to profit from a neutral or sideways market, where the underlying asset’s price is not expected to move
significantly.
Income Strategy: An income strategy focuses on generating regular income through the collec-
tion of premiums by writing (selling) options. These strategies are typically employed by traders who
expect the underlying asset’s price to remain within a certain range. Income strategies are designed
to take advantage of time decay and the fact that most options expire worthless.
1
Contents
1 Options Strategies 4
1.1 Strategy: Covered Call . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
1.2 Strategy: Covered Put . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
1.3 Strategy: Protective Put . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
1.4 Strategy: Protective Call . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
1.5 Strategy: Bull Call Spread . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
1.6 Strategy: Bull Put Spread . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
1.7 Strategy: Bear Call Spread . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
1.8 Strategy: Bear Put Spread . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
1.9 Strategy: Long Synthetic Forward . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
1.10 Strategy: Short Synthetic Forward . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
1.11 Strategy: Long Combo . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
1.12 Strategy: Short Combo . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
1.13 Strategy: Bull Call Ladder . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
1.14 Strategy: Bull Put Ladder . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
1.15 Strategy: Bear Call Ladder . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18
1.16 Strategy: Bear Put Ladder . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19
1.17 Strategy: Calendar Call Spread . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20
1.18 Strategy: Calendar Put Spread . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
1.19 Strategy: Diagonal Call Spread . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 24
1.20 Strategy: Diagonal Put Spread . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26
1.21 Strategy: Long Straddle . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28
1.22 Strategy: Long Strangle . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29
1.23 Strategy: Long Guts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 30
1.24 Strategy: Short Straddle . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31
1.25 Strategy: Short Strangle . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32
1.26 Strategy: Short Guts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33
1.27 Strategy: Long Call Synthetic Straddle . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34
1.28 Strategy: Long Put Synthetic Straddle . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35
1.29 Strategy: Short Call Synthetic Straddle . . . . . . . . . . . . . . . . . . . . . . . . . . . 36
1.30 Strategy: Short Put Synthetic Straddle . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
1.31 Strategy: Covered Short Straddle . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38
1.32 Strategy: Covered Short Strangle . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39
1.33 Strategy: Strap . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40
1.34 Strategy: Strip . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
1.35 Strategy: Call Ratio Backspread . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 42
1.36 Strategy: Put Ratio Backspread . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43
1.37 Strategy: Ratio Call Spread . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44
1.38 Strategy: Ratio Put Spread . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45
1.39 Strategy: Long Call Butterfly . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 46
1.40 Strategy: Modified Call Butterfly . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
1.41 Strategy: Long Put Butterfly . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48
1.42 Strategy: Modified Put Butterfly . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49
1.43 Strategy: Short Call Butterfly . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 50
1.44 Strategy: Short Put Butterfly . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51
1.45 Strategy: Long Iron Butterfly . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52
1.46 Strategy: Short Iron Butterfly . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
1.47 Strategy: Long Call Condor . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54
1.48 Strategy: Short Call Condor . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
1.49 Strategy: Long Put Condor . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56
1.50 Strategy: Short Put Condor . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 57
1.51 Strategy: Long Iron Condor . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58
1.52 Strategy: Short Iron Condor . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59
1.53 Strategy: Long Box . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
1.54 Strategy: Collar . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 61
2
1.55 Strategy: Bullish Short Seagull Spread . . . . . . . . . . . . . . . . . . . . . . . . . . . . 62
1.56 Strategy: Bullish Long Seagull Spread . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63
1.57 Strategy: Bearish Short Seagull Spread . . . . . . . . . . . . . . . . . . . . . . . . . . . . 64
1.58 Strategy: Bearish Long Seagull Spread . . . . . . . . . . . . . . . . . . . . . . . . . . . . 65
3
1 Options Strategies
1.1 Strategy: Covered Call
Key Components
• Stock Purchase: Buy the underlying stock at the current price S0 .
• Call Option Writing: Sell a call option with a strike price K and receive a premium C.
4
1.2 Strategy: Covered Put
Key Components
• Stock Shorting: Short the underlying stock at the current price S0 .
• Put Option Writing: Sell a put option with a strike price K and receive a premium C.
P&L
5
1.3 Strategy: Protective Put
Key Components
• Stock Purchase: Buy the underlying stock at the current price S0 .
• Put Option Purchase: Buy a put option with a strike price K ≤ S0 and pay a premium D.
P&L
6
1.4 Strategy: Protective Call
Key Components
• Stock Shorting: Short the underlying stock at the current price S0 .
• Call Option Purchase: Buy a call option with a strike price K ≥ S0 and pay a premium D.
P&L
7
1.5 Strategy: Bull Call Spread
Key Components
• Long Call Option: Buy a call option with a strike price K1 and pay a premium D.
• Short Call Option: Sell a call option with a higher strike price K2 and receive a premium.
8
1.6 Strategy: Bull Put Spread
Key Components
• Long Put Option: Buy an OTM put option with a strike price K1 and pay a premium.
• Short Put Option: Sell an OTM put option with a higher strike price K2 and receive a premium
C.
9
1.7 Strategy: Bear Call Spread
Key Components
• Long Call Option: Buy an OTM call option with a strike price K1 and pay a premium.
• Short Call Option: Sell an OTM call option with a lower strike price K2 and receive a premium
C.
10
1.8 Strategy: Bear Put Spread
Key Components
• Long Put Option: Buy a close to ATM put option with a strike price K1 and pay a premium
D.
• Short Put Option: Sell an OTM put option with a lower strike price K2 and receive a premium.
11
1.9 Strategy: Long Synthetic Forward
Key Components
• Long Call Option: Buy an ATM call option with a strike price K = S0 and pay a premium
H.
• Short Put Option: Sell an ATM put option with a strike price K = S0 and receive a premium.
12
1.10 Strategy: Short Synthetic Forward
Key Components
• Long Put Option: Buy an ATM put option with a strike price K = S0 and pay a premium H.
• Short Call Option: Sell an ATM call option with a strike price K = S0 and receive a premium.
13
1.11 Strategy: Long Combo
Key Components
• Long Call Option: Buy an OTM call option with a strike price K1 and pay a premium H.
• Short Put Option: Sell an OTM put option with a strike price K2 and receive a premium.
14
1.12 Strategy: Short Combo
Key Components
• Long Put Option: Buy an OTM put option with a strike price K1 and pay a premium H.
• Short Call Option: Sell an OTM call option with a strike price K2 and receive a premium.
15
1.13 Strategy: Bull Call Ladder
Key Components
• Long Call Option: Buy a close to ATM call option with a strike price K1 and pay a premium
H.
• Short Call Option 1: Sell an OTM call option with a strike price K2 and receive a premium.
• Short Call Option 2: Sell another OTM call option with a higher strike price K3 and receive
a premium.
16
1.14 Strategy: Bull Put Ladder
Key Components
• Short Put Option: Sell a close to ATM put option with a strike price K1 and receive a
premium.
• Long Put Option 1: Buy an OTM put option with a lower strike price K2 and pay a premium.
• Long Put Option 2: Buy another OTM put option with a lower strike price K3 and pay a
premium.
17
1.15 Strategy: Bear Call Ladder
Key Components
• Short Call Option: Sell a close to ATM call option with a strike price K1 and receive a
premium.
• Long Call Option 1: Buy an OTM call option with a higher strike price K2 and pay a premium.
• Long Call Option 2: Buy another OTM call option with a higher strike price K3 and pay a
premium.
18
1.16 Strategy: Bear Put Ladder
Key Components
• Long Put Option 1: Buy a close to ATM put option with a strike price K1 and pay a premium
H.
• Short Put Option: Sell an OTM put option with a lower strike price K2 and receive a premium.
• Short Put Option 2: Sell another OTM put option with a lower strike price K3 and receive a
premium.
19
1.17 Strategy: Calendar Call Spread
Key Components
• Long Call Option: Buy a close to ATM call option with a strike price K and TTM T ′ and
pay a premium D.
• Short Call Option: Sell a call option with the same strike price K and shorter TTM T < T ′
and receive a premium.
Parameters Used
For our example, we use the following parameters:
20
Total PnL Calculation
The total profit or loss (PnL) for the Calendar Call Spread at the expiration of the short call option
is given by:
21
1.18 Strategy: Calendar Put Spread
Key Components
• Long Put Option: Buy a close to ATM put option with a strike price K and TTM T ′ and pay
a premium D.
• Short Put Option: Sell a put option with the same strike price K and shorter TTM T < T ′
and receive a premium.
Parameters Used
For our example, we use the following parameters:
22
Total PnL Calculation
The total profit or loss (PnL) for the Calendar Put Spread at the expiration of the short put option is
given by:
23
1.19 Strategy: Diagonal Call Spread
Key Components
• Long Call Option: Buy a deep ITM call option with a strike price K1 and TTM T ′ and pay
a premium D.
• Short Call Option: Sell an OTM call option with a higher strike price K2 and shorter TTM
T < T ′ and receive a premium.
Parameters Used
For our example, we use the following parameters:
24
Total PnL Calculation
The total profit or loss (PnL) for the Diagonal Call Spread at the expiration of the short call option
is given by:
25
1.20 Strategy: Diagonal Put Spread
Key Components
• Long Put Option: Buy a deep ITM put option with a strike price K1 and TTM T ′ and pay a
premium D.
• Short Put Option: Sell an OTM put option with a lower strike price K2 and shorter TTM
T < T ′ and receive a premium.
Parameters Used
For our example, we use the following parameters:
26
Total PnL Calculation
The total profit or loss (PnL) for the Diagonal Put Spread at the expiration of the short put option is
given by:
PnL Diagram
To visualize the PnL of the Diagonal Put Spread strategy, we plot the PnL against different underlying
prices at expiration.
27
1.21 Strategy: Long Straddle
Key Components
• Long Call Option: Buy an ATM call option with a strike price K and pay a premium D.
• Long Put Option: Buy an ATM put option with a strike price K and pay a premium D.
• Sup = K + D
• Sdown = K − D
28
1.22 Strategy: Long Strangle
Key Components
• Long Call Option: Buy an OTM call option with a strike price K1 and pay a premium D.
• Long Put Option: Buy an OTM put option with a strike price K2 and pay a premium D.
• Sup = K1 + D
• Sdown = K2 − D
29
1.23 Strategy: Long Guts
Key Components
• Long Call Option: Buy an ITM call option with a strike price K1 and pay a premium D.
• Long Put Option: Buy an ITM put option with a strike price K2 and pay a premium D.
• Sup = K1 + D
• Sdown = K2 − D
30
1.24 Strategy: Short Straddle
Key Components
• Short Call Option: Sell an ATM call option with a strike price K and receive a premium C.
• Short Put Option: Sell an ATM put option with a strike price K and receive a premium C.
• Sup = K + C
• Sdown = K − C
• Max Profit = C
• Max Loss = unlimited
• Current stock price (S0 ): 50
31
1.25 Strategy: Short Strangle
Key Components
• Short Call Option: Sell an OTM call option with a strike price K1 and receive a premium C.
• Short Put Option: Sell an OTM put option with a strike price K2 and receive a premium C.
• Sup = K1 + C
• Sdown = K2 − C
• Max Profit = C
• Max Loss = unlimited
• Current stock price (S0 ): 50
32
1.26 Strategy: Short Guts
Key Components
• Short Call Option: Sell an ITM call option with a strike price K1 and receive a premium C.
• Short Put Option: Sell an ITM put option with a strike price K2 and receive a premium C.
• Sup = K1 + C
• Sdown = K2 − C
33
1.27 Strategy: Long Call Synthetic Straddle
Key Components
• Short Stock: Short the underlying stock.
• Long Call Options: Buy two ATM call options with a strike price K and pay a premium D.
• Sup = 2 × K − S0 + D
• Sdown = S0 − D
34
1.28 Strategy: Long Put Synthetic Straddle
Key Components
• Long Stock: Buy the underlying stock.
• Long Put Options: Buy two ATM put options with a strike price K and pay a premium D.
• Sup = S0 + D
• Sdown = 2 × K − S0 − D
35
1.29 Strategy: Short Call Synthetic Straddle
Key Components
• Long Stock: Buy the underlying stock.
• Short Call Options: Sell two ATM call options with a strike price K and receive a premium
C.
• Sup = 2 × K − S0 + C
• Sdown = S0 − C
• Max Profit = K − S0 + C
• Max Loss = unlimited
36
1.30 Strategy: Short Put Synthetic Straddle
Key Components
• Short Stock: Short the underlying stock.
• Short Put Options: Sell two ATM put options with a strike price K and receive a premium
C.
• Sup = S0 + C
• Sdown = 2 × K − S0 − C
• Max Profit = S0 − K + C
• Max Loss = unlimited
37
1.31 Strategy: Covered Short Straddle
Key Components
• Long Stock: Buy the underlying stock.
• Short Call Option: Sell an ATM call option with a strike price K and receive a premium C.
• Short Put Option: Sell an ATM put option with a strike price K and receive a premium C.
• Sup = 21 (S0 + K − C)
• Max Profit = K − S0 + C
• Max Loss = S0 + K − C
• Current stock price (S0 ): 50
38
1.32 Strategy: Covered Short Strangle
Key Components
• Long Stock: Buy the underlying stock.
• Short Call Option: Sell an ATM call option with a strike price K and receive a premium C.
• Short Put Option: Sell an OTM put option with a strike price K ′ and receive a premium C.
• Max Profit = K − S0 + C
• Max Loss = S0 + K ′ − C
• Current stock price (S0 ): 50
• Strike price for call (K): 50
39
1.33 Strategy: Strap
Key Components
• Long Call Options: Buy two ATM call options with a strike price K and pay a premium D.
• Long Put Option: Buy an ATM put option with a strike price K and pay a premium D.
• Sup = K + D
2
• Sdown = K − D
40
1.34 Strategy: Strip
Key Components
• Long Call Option: Buy an ATM call option with a strike price K and pay a premium D.
• Long Put Options: Buy two ATM put options with a strike price K and pay a premium D.
• Sup = K + D
• Sdown = K − D
2
41
1.35 Strategy: Call Ratio Backspread
Key Components
• Short Call Options: Sell NS close to ATM call options with a strike price K1 and receive a
premium H.
• Long Call Options: Buy NL OTM call options with a strike price K2 and pay a premium H.
• Sdown = K1 + H
NS
42
1.36 Strategy: Put Ratio Backspread
Key Components
• Short Put Options: Sell NS close to ATM put options with a strike price K1 and receive a
premium H.
• Long Put Options: Buy NL OTM put options with a strike price K2 and pay a premium H.
• Sup = K1 + H
NS
• Max Profit = NL × K2 − NS × K1 − H
• Max Loss = NS × (K1 − K2 ) + H
43
1.37 Strategy: Ratio Call Spread
Key Components
• Short Call Options: Sell NS close to ATM call options with a strike price K1 and receive a
premium H.
• Long Call Options: Buy NL ITM call options with a strike price K2 and pay a premium H.
• Sup = K2 + H
NL
44
1.38 Strategy: Ratio Put Spread
Key Components
• Short Put Options: Sell NS close to ATM put options with a strike price K1 and receive a
premium H.
• Long Put Options: Buy NL OTM put options with a strike price K2 and pay a premium H.
• Sup = K1 + H
NS
45
1.39 Strategy: Long Call Butterfly
Key Components
• Long Call Options: Buy an OTM call option with a strike price K1 and pay a premium D.
• Short Call Options: Sell two ATM call options with a strike price K2 and receive a premium
D.
• Long Call Options: Buy an ITM call option with a strike price K3 and pay a premium D.
• Sup = K1 − D
• Sdown = K3 + D
• Max Profit = κ − D
• Max Loss = D
46
1.40 Strategy: Modified Call Butterfly
Key Components
• Long Call Options: Buy an OTM call option with a strike price K1 and pay a premium D.
• Short Call Options: Sell two ATM call options with a strike price K2 and receive a premium
D.
• Long Call Options: Buy an ITM call option with a strike price K3 and pay a premium D.
• S∗ = K3 + D
• Max Profit = K2 − K3 − D
• Max Loss = D
• D = 2 (Premium paid)
47
1.41 Strategy: Long Put Butterfly
Key Components
• Long Put Options: Buy an OTM put option with a strike price K1 and pay a premium D.
• Short Put Options: Sell two ATM put options with a strike price K2 and receive a premium
D.
• Long Put Options: Buy an ITM put option with a strike price K3 and pay a premium D.
• Sup = K3 − D
• Sdown = K1 + D
• Max Profit = κ − D
• Max Loss = D
48
1.42 Strategy: Modified Put Butterfly
Key Components
• Long Put Options: Buy an OTM put option with a strike price K1 and pay a premium H.
• Short Put Options: Sell two ATM put options with a strike price K2 and receive a premium
H.
• Long Put Options: Buy an ITM put option with a strike price K3 and pay a premium H.
• Sdown = 2 × K2 − K3 + H
• Max Profit = K3 − K2 − H
• Max Loss = 2 × K2 − K1 − K3 + H
• H = 5 (Premium paid)
49
1.43 Strategy: Short Call Butterfly
Key Components
• Short ITM Call Option: Sell a call option with a strike price K1 .
• Long ATM Call Options: Buy two ATM call options with a strike price K2 .
• Short OTM Call Option: Sell a call option with a strike price K3 .
50
1.44 Strategy: Short Put Butterfly
Key Components
• Short ITM Put Option: Sell a put option with a strike price K1 .
• Long ATM Put Options: Buy two ATM put options with a strike price K2 .
• Short OTM Put Option: Sell a put option with a strike price K3 .
51
1.45 Strategy: Long Iron Butterfly
Key Components
• Long OTM Put Option: Buy a put option with a strike price K1 .
• Short ATM Put Option: Sell a put option with a strike price K2 .
• Short ATM Call Option: Sell a call option with a strike price K2 .
• Long OTM Call Option: Buy a call option with a strike price K3 .
• All strikes are equidistant: K3 - K2 = K2 - K1 =κ.
52
1.46 Strategy: Short Iron Butterfly
Key Components
• Short OTM Put Option: Sell a put option with a strike price K1 .
• Long ATM Put Option: Buy a put option with a strike price K2 .
• Long ATM Call Option: Buy a call option with a strike price K2 .
• Short OTM Call Option: Sell a call option with a strike price K3 .
• All strikes are equidistant: K3 - K2 = K2 - K1 =κ.
53
1.47 Strategy: Long Call Condor
Key Components
• Long ITM Call Option: Buy a call with a strike price K1 .
• Short ITM Call Option: Sell a call option with a strike price K2 .
• Short OTM Call Option: Sell a call option with a strike price K3 .
• Long OTM Call Option: Buy a call option with a strike price K4 .
• All strikes are equidistant: K4 - K3 = K3 - K2 = K2 - K1 =κ.
54
1.48 Strategy: Short Call Condor
Key Components
• Short ITM Call Option: Sell a call with a strike price K1 .
• Long ITM Call Option: Buy a call option with a strike price K2 .
• Long OTM Call Option: Buy a call option with a strike price K3 .
• Short OTM Call Option: Sell a call option with a strike price K4 .
• All strikes are equidistant: K4 - K3 = K3 - K2 = K2 - K1 =κ.
55
1.49 Strategy: Long Put Condor
Key Components
• Long OTM Put Option: Buy a put with a strike price K1 .
• Short OTM Put Option: Sell a put option with a strike price K2 .
• Short ITM Put Option: Sell a put option with a strike price K3 .
• Long ITM Put Option: Buy a put option with a strike price K4 .
• All strikes are equidistant: K4 - K3 = K3 - K2 = K2 - K1 =κ.
56
1.50 Strategy: Short Put Condor
Key Components
• Short OTM Put Option: Sell a put with a strike price K1 .
• Long OTM Put Option: Buy a put option with a strike price K2 .
• Long ITM Put Option: Buy a put option with a strike price K3 .
• Short ITM Put Option: Sell a put option with a strike price K4 .
• All strikes are equidistant: K4 - K3 = K3 - K2 = K2 - K1 =κ.
57
1.51 Strategy: Long Iron Condor
Key Components
• Long OTM Put Option: Buy a put with a strike price K1 .
• Short OTM Put Option: Sell a put option with a strike price K2 .
• Short OTM Call Option: Sell a call option with a strike price K3 .
• Long OTM Call Option: Buy a call option with a strike price K4 .
• All strikes are equidistant: K4 - K3 = K3 - K2 = K2 - K1 =κ.
58
1.52 Strategy: Short Iron Condor
Key Components
• Short OTM Put Option: Sell a put with a strike price K1 .
• Long OTM Put Option: Buy a put option with a strike price K2 .
• Long OTM Call Option: Buy a call option with a strike price K3 .
• Short OTM Call Option: Sell a call option with a strike price K4 .
• All strikes are equidistant: K4 - K3 = K3 - K2 = K2 - K1 =κ.
59
1.53 Strategy: Long Box
Key Components
• Long ITM Put Option: Buy a put with a strike price K1 .
• Short OTM Put Option: Sell a put option with a strike price K2 .
• Long ITM Call Option: Buy a call option with a strike price K2 .
• Short OTM Call Option: Sell a call option with a strike price K1 .
• Condition: (K2 + D) ≤ K1
60
1.54 Strategy: Collar
Key Components
• Long Stock: Buy the stock with a price S0 .
• Long OTM Put Option: Buy a put option with a strike price K1 .
• Short OTM Call Option: Sell a call option with a strike price K2 .
• Condition: K1 ¡ K2
61
1.55 Strategy: Bullish Short Seagull Spread
Key Components
• Short OTM Put Option: Sell a put option with a strike price K1 .
• Long ATM Call Option: Buy a call option with a strike price K2 .
• Short OTM Call Option: Sell a call option with a strike price K3 .
62
1.56 Strategy: Bullish Long Seagull Spread
Key Components
• Long OTM Put Option: Buy a put option with a strike price K1 .
• Short ATM Put Option: Sell a put option with a strike price K2 .
• Long OTM Call Option: Buy a call option with a strike price K3 .
63
1.57 Strategy: Bearish Short Seagull Spread
Key Components
• Short OTM Put Option: Sell a put option with a strike price K1 .
• Long ATM Put Option: Buy a put option with a strike price K2 .
• Short OTM Call Option: Sell a call option with a strike price K3 .
64
1.58 Strategy: Bearish Long Seagull Spread
Key Components
• Long OTM Put Option: Buy a put option with a strike price K1 .
• Short ATM Call Option: Sell a call option with a strike price K2 .
• Long OTM Call Option: Buy a call option with a strike price K3 .
65
References
Kakushadze, Zura and Serur, Juan Andrés, 151 Trading Strategies (August 17, 2018)
Z. Kakushadze and J.A. Serur. 151 Trading Strategies. Cham, Switzerland: Palgrave Macmillan, an
imprint of Springer Nature, 1st Edition (2018), XX, 480 pp; ISBN 978-3-030-02791-9
Available at SSRN: https://ssrn.com/abstract=3247865
66