From Binomial to Black-Scholes-Merton

Slides:



Advertisements
Similar presentations
© 2002 South-Western Publishing 1 Chapter 6 The Black-Scholes Option Pricing Model.
Advertisements

Option Valuation The Black-Scholes-Merton Option Pricing Model
Spreads  A spread is a combination of a put and a call with different exercise prices.  Suppose that an investor buys simultaneously a 3-month put option.
Derivatives Inside Black Scholes
1 16-Option Valuation. 2 Pricing Options Simple example of no arbitrage pricing: Stock with known price: S 0 =$3 Consider a derivative contract on S:
© 2004 South-Western Publishing 1 Chapter 6 The Black-Scholes Option Pricing Model.
© 2002 South-Western Publishing 1 Chapter 6 The Black-Scholes Option Pricing Model.
Options and Speculative Markets Introduction to option pricing André Farber Solvay Business School University of Brussels.
Options and Speculative Markets Inside Black Scholes Professor André Farber Solvay Business School Université Libre de Bruxelles.
VALUING STOCK OPTIONS HAKAN BASTURK Capital Markets Board of Turkey April 22, 2003.
The Lognormal Distribution MGT 4850 Spring 2008 University of Lethbridge.
Chapter 5: Option Pricing Models: The Black-Scholes-Merton Model
Chapter 5: Option Pricing Models: The Black-Scholes-Merton Model
Derivatives Introduction to option pricing André Farber Solvay Business School University of Brussels.
Valuing Stock Options:The Black-Scholes Model
Black-Scholes Option Valuation
Option Pricing Models I. Binomial Model II. Black-Scholes Model (Non-dividend paying European Option) A. Black-Scholes Model is the Limit of the Binomial.
Copyright © 2001 by Harcourt, Inc. All rights reserved.1 Chapter 5: Option Pricing Models: The Black-Scholes Model [O]nce a model has been developed, we.
The Pricing of Stock Options Using Black- Scholes Chapter 12.
1 The Black-Scholes Model Chapter Pricing an European Call The Black&Scholes model Assumptions: 1.European options. 2.The underlying stock does.
Cross Section Pricing Intrinsic Value Options Option Price Stock Price.
Black Scholes Option Pricing Model Finance (Derivative Securities) 312 Tuesday, 10 October 2006 Readings: Chapter 12.
Analytical Option Pricing: Black-Scholes –Merton model; Option Sensitivities (Delta, Gamma, Vega, etc) Implied Volatility Finance 30233, Fall 2010 The.
Valuing Stock Options: The Black- Scholes Model Chapter 11.
11.1 Introduction to Futures and Options Markets, 3rd Edition © 1997 by John C. Hull The Pricing of Stock Options Using Black- Scholes Chapter 11.
Fundamentals of Futures and Options Markets, 7th Ed, Ch 13, Copyright © John C. Hull 2010 Valuing Stock Options: The Black-Scholes-Merton Model Chapter.
Option Pricing BA 543 Aoyang Long. Agenda Binomial pricing model Black—Scholes model.
Option Pricing Models: The Black-Scholes-Merton Model aka Black – Scholes Option Pricing Model (BSOPM)
Analytical Option Pricing Models: introduction and general concepts Finance 70520, Spring 2002 Risk Management & Financial Engineering The Neeley School.
Chapter 21 Principles of Corporate Finance Tenth Edition Valuing Options Slides by Matthew Will McGraw-Hill/Irwin Copyright © 2011 by the McGraw-Hill Companies,
13.1 Valuing Stock Options : The Black-Scholes-Merton Model Chapter 13.
1 The Black-Scholes Model Chapter 13 (7 th edition) Ch 12 (pre 7 th edition) + Appendix (all editions)
Dividends options on Futures (Black model)
Lecture 3. Option Valuation Methods  Genentech call options have an exercise price of $80 and expire in one year. Case 1 Stock price falls to $60 Option.
OPTIONS PRICING AND HEDGING WITH GARCH.THE PRICING KERNEL.HULL AND WHITE.THE PLUG-IN ESTIMATOR AND GARCH GAMMA.ENGLE-MUSTAFA – IMPLIED GARCH.DUAN AND EXTENSIONS.ENGLE.
1 Lec 13A: Black and Scholes OPM (Stock pays no dividends) (Hull,Ch 13) From Binomial model to Black-Scholes Suppose S 0 = 40, and r = 24%/yr (c.c.). Question:
. Option pricing. Options Pricing Presented by Rajesh Kumar Sr. Lecturer (Fin.)- Satya College of Engg. & Tech., Palwal. Visiting Faculty (Project finance)-
Chapter 14 The Black-Scholes-Merton Model
The Black- Scholes Formula
Hedging and Value-at-Risk (VaR)
From Binomial to Black-Scholes-Merton
Lec 13a Black & Scholes OPM
Option Pricing Model The Black-Scholes-Merton Model
Currency Options and Options Markets
The Pricing of Stock Options Using Black-Scholes Chapter 12
Binomial Trees in Practice
Chapter 12 Binomial Trees
Lognormal return simulation (Weiner process) Risk-neutral “drift”
DERIVATIVES: Valuation Methods and Some Extra Stuff
The Black-Scholes-Merton Model
Chapter 15 The Black-Scholes-Merton Model
VIII. ARBITRAGE AND HEDGING WITH OPTIONS
Valuing Stock Options: The Black-Scholes-Merton Model
Dividends options on Forwards/Futures (Black model)
Chapter 13 Binomial Trees
VIII. ARBITRAGE AND HEDGING WITH OPTIONS
Lognormal return simulation (Weiner process) Risk-neutral “drift”
Chapter Twenty One Option Valuation.
S.Mann, 2014.
From Binomial to Black-Scholes-Merton
Mathematical Credit Analysis
Applied Finance Lectures
S.Mann, 2015.
VIII. ARBITRAGE AND HEDGING WITH OPTIONS
Black-Scholes-Merton model assumptions
Chapter 15 The Black-Scholes-Merton Model
Théorie Financière Financial Options
Théorie Financière Financial Options
Valuing Stock Options:The Black-Scholes Model
Presentation transcript:

From Binomial to Black-Scholes-Merton Finance 30233, Fall 2017 The Neeley School S. Mann S.Mann, 2017

Historical Volatility Computation annualized standard deviation of asset rate of return 1) compute daily returns 2) calculate variance of daily returns 3) multiply daily variance by 252 to get annualized variance: s 2 4) take square root to get s or: 1) compute weekly returns 2) calculate variance 3) multiply weekly variance by 52 take square root Or: 1) Compute monthly returns 3) Multiply monthly variance by 12 4) take square root S.Mann, 2017

Calibrating Binomial Tree: 1) Set “up” and “down” factors to reflect volatility: U = 1 + s√T D = 1 - s√T Adjust so expected future price is forward price: E[S(T)] = S0 ( 1 + (r – d)T ) Simple form: U = 1 + (r – d)T + s√T D = 1 + (r – d)T - s√T Or, in continuous time (McDonald): U = exp((r – d)T + s√T) D = exp((r – d)T - s√T) See “Fin30233-F2017_Binomial Tutor.xls” (available on Mann’s course website)

S.Mann, 2017

S.Mann, 2017

VBA code for binomial European Call (for later reference) Function Binom(n, X) Binom = Application.Combin(n, X) * 0.5 ^ X * 0.5 ^ (n - X) End Function Function scm_bin_eur_call(S, X, rf, sigma, t, n) dt = t / n up = Exp((rf - (sigma ^ 2) / 2) * dt + sigma * Sqr(dt)) down = Exp((rf - (sigma ^ 2) / 2) * dt - sigma * Sqr(dt)) r = Exp(rf * dt) p = (r - down) / (up - down) q = 1 - p scm_bin_eur_call = 0 For Index = 0 To n scm_bin_eur_call = scm_bin_eur_call + Exp(-rf * t) * Application.Combin(n, Index) * p ^ Index * q ^ (n - Index) * Application.Max((S * up ^ Index) * (down ^ (n - Index)) - X, 0) Next Index Note: code in red has to be on one line for vba to compile the code

S.Mann, 2017

Black-Scholes-Merton model assumptions Asset pays no dividends European call No taxes or transaction costs Constant interest rate over option life Lognormal returns: ln(1+r ) ~ N (m , s) reflect limited liability -100% is lowest possible stable return variance over option life S.Mann, 2017

Simulated lognormal returns Lognormal simulation: visual basic subroutine : logreturns

Simulated lognormally distributed asset prices Lognormal price simulation: visual basic subroutine : lognormalprice) S.Mann, 2017

Black-Scholes-Merton Model (no dividends) C = S N(d1 ) - KZ(0,T) N(d2 ) ln (S/K) + (r + s2/2 )T d1 = s T d2 = d1 - s T N( x) = Standard Normal [~N(0,1)] Cumulative density function: N(x) = area under curve left of x; e.g., N(0) = .5 coding: (excel) N(x) = NormSdist(x) N(d1 ) = Call Delta (D) = call hedge ratio = change in call value for small change in asset value = slope of call: first derivative of call with respect to asset price S.Mann, 2017

S.Mann, 2017