Mihai Ion
  • Home
  • Research
  • Teaching
  • CV
  1. FIN 421
  2. Lectures
  3. L26: Risk management with options
  • Teaching
  • FIN 525
    • Lectures
      • L00: Jupyter basics
      • L01: Introduction
      • L02: Variables, types, operators
      • L03: Data structures
      • L04: Conditionals, loops
      • L05: Functions, packages
      • L06: Pandas intro
      • L07: Pandas I/O
      • L08: Pandas filtering
      • L09: Pandas data cleaning
      • L10: Merging, reshaping datasets
      • L11: Dates, lags, sorting
      • L12: Descriptive stats
      • L13: Conditional stats, outliers
      • L14: Conditional stats applied
      • L15: Linear regression intro
      • L16: Linear regression applications
      • L17: Panel regression intro
      • L18: Robust panel regression
      • L19: Robust timeseries regression
      • L20: Backtesting - data prep
      • L21: Backtesting - sumstats
      • L22: Backtesting -returns
      • L23: Backtesting - risk adjustment
  • FIN 421
    • Lectures
      • L01: Introduction
      • L02: Analyzing past returns
      • L03: Modeling future returns
      • L04: Portfolio theory intro
      • L05: Optimal capital allocation
      • L06: Tangency portfolios
      • L07_08: Optimal asset allocation
      • L09: Review
      • L10_11: Statistical models of returns
      • L12: CAPM
      • L13: Cost of equity
      • L14: Bond pricing
      • L15: Bond yields
      • L16: Bond risk
      • L17: Valuation data processing
      • L18_19: Multiples valuation
      • L20_21: Dividend discount models
      • L22_23: Discounted cash flow analysis
      • L24: Valuation sensitivity analysis
      • L25: Options intro
      • L26: Risk management with options

On this page

  • Risk management with options
  • Volatility bets with options

L26: Risk management with options

Risk management with options

Options can be used to increase the risk of your portfolio (in hopes of a higher return) as well as to decrease the risk of your portfolio (at the expense of a lower return). Below, we work through a couple of examples that show how this can be achieved.

Example 1: Using options to increase risk

This usually involves buying option on stocks instead of buying/shorting the stocks themselves.

To see the difference, consider the following two strategies:

  • Stategy A: invest $9000 in stock A by buying 100 shares at $90 each
  • Stategy B: Use the $9000 to buy 900 call options on stock A (trading at $10 an option). The strike price is $90 and the options expire in a year.

Calculate what your (%) return would be for each strategy, if the price a year from now is:

  • $75
  • $90
  • $105
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#

Example 2: Using options to decrease risk

You can limit your losses from buying a particular stock by also purchasing put options on that stock. This is called the protective put strategy.

To see how this works, consider the following two strategies:

  • Strategy A: buy one share of AMZN for $100
  • Strategy B: you buy one share of AMZN for $100 and a put option on AMZN that costs you an additional $5. The put option has a strike price of $95 and it expires in 3 months.

Q1: What is your % return for each strategy, if the price of AMZN 3 months from now is:

  • $0
  • $95
  • $105
  • $150
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#

Q2: Draw the payoff and profit for this protective put, as functions of the price of AMZN

#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#

Volatility bets with options

You can use options to trade based on your opinions about volatility. Below are two examples that show you how this would work.

Example 3: Betting on volatility

You buy a call option on stock X for $10 an option and you also buy a put option on stock X for $5 an option. Both options have strike price of $100. For what values of the price of the underlying asset X would you make a positive profit? Draw the payoff and profit of this strategy as a function of the underlying stock price.

#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#

Example 4: Betting against volatility

You sell a call option on stock X for $10 an option and you also sell a put option on stock X for $5 an option. Both options have strike price of $100. For what values of the price of the underlying asset X would you make a positive profit? Draw the payoff and profit of this strategy as a function of the underlying stock price.

#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#