Black-Scholes Call and Put Equation and Comparative Static Parameterizations

Size: px
Start display at page:

Download "Black-Scholes Call and Put Equation and Comparative Static Parameterizations"

Transcription

1 Option Greeks Latest Version: November 14, 2017 This Notebook describes how to use Mathematica to perform generate graphs of the so-called option "Greeks". Suggestions concerning ways to improve this notebook, both in terms of its programming or content, are quite welcome and should be sent to James R. Garven, Ph.D. Frank S. Groner Memorial Chair of Finance Professor of Finance & Insurance Department of Finance, Insurance and Real Estate Hankamer School of Business Foster Baylor University One Bear Place #98004 Waco, TK Tel: (254) Black-Scholes Call and Put Equation and Comparative Static Parameterizations We start by coding the inputs for the Black-Scholes call and put option equations and comparative statics:

2 2 Option_Greeks.nb We start by coding the inputs for the Black-Scholes call and put option equations and comparative statics: In[1]:= d1[s_, K_, r_, t_, q_, σ_] := ((r - q)*t + Log[S/K])/(σ*Sqrt[t]) + (σ*sqrt[ d2[s_, K_, r_, t_, q_, σ_] := d1[s, K, r, t, q, σ] - σ*sqrt[t]; minusd1[s_, K_, r_, t_, q_, σ_] := d1[s, K, r, t, q, σ]*(-1); minusd2[s_, K_, r_, t_, q_, σ_] := d2[s, K, r, t, q, σ]*(-1); Normsdist[K_] := 1/2*(1 + Erf[K/Sqrt[2]]); BlackScholesCall[S_, K_, r_, t_, q_, σ_] := S*Exp[-q*t]*Normsdist[d1[S BlackScholesPut[S_, K_, r_, t_, q_, σ_] := K*Exp[-r*t]*Normsdist[minu dcdk[s_, K_, r_, t_, q_, σ_] := -Exp[-r*t]*Normsdist[d2[S, K, r, t, q, σ]]; dputdk[s_, K_, r_, t_, q_, σ_] := Exp[-r*t]*Normsdist[minusd2[S, K, r, t dcalldr[s_, K_, r_, t_, q_, σ_] := t*k*exp[-r*t]normsdist[d2[s, K, r, t, q, dputdr[s_, K_, r_, t_, q_, σ_] := -t*k*exp[-r*t]normsdist[minusd2[s, K nd1[s_, K_, r_, t_, q_, σ_] := Exp[-.5*d1[S, K, r, t, q, σ]^2]/sqrt[2*π]; nd1minus[s_, K_, r_, t_, q_, σ_] := Exp[-.5*minusd1[S, K, r, t, q, σ]^2]/s nd2[s_, K_, r_, t_, q_, σ_] := Exp[-.5*d2[S, K, r, t, q, σ]^2]/sqrt[2*π]; gamma[s_, K_, r_, t_, q_, σ_] := nd1[s, K, r, t, q, σ]/s*σ/sqrt[t]; exercisegamma[s_, K_, r_, t_, q_, σ_] := Exp[-r*t]nd2[S, K, r, t, q, σ]/s*σ calltheta[s_, K_, r_, t_, q_, σ_] := -r*k*exp[-r*t]normsdist[d2[s, K, r, t puttheta[s_, K_, r_, t_, q_, σ_] := r*k*exp[-r*t]normsdist[minusd2[s, K vega[s_, K_, r_, t_, q_, σ_] := S*nd1[S, K, r, t, q, σ]*sqrt[t]; putvega[s_, K_, r_, t_, q_, σ_] := S*nd1minus[S, K, r, t, q, σ]*sqrt[t]; Thus S_ corresponds to the current value of the underlying, K_ corresponds to the strike price, r_ corresponds to the interest rate, t_ corresponds to the time to expiration, q_ corresponds to the dividend rate, and σ_ corresponds to volatility. The base case values for the option parameters will be S_ = 50, K_ = 50, r_ = 5%, t_ = 1 year, q_ = 0, and _=30% (these are the parameter values used in Hull (2009), pp.

3 Option_Greeks.nb 3 parameters will be S_ = 50, K_ = 50, r_ = 5%, t_ = 1 year, q_ = 0, and σ_=30% (these are the parameter values used in Hull (2009), pp ). Relationship between Option Deltas and the price of the underlying First, we test the relationship between the call option delta and the price of the underlying: In[21]:= Plot[Normsdist[d1[underlying, 50, 0.05`, 1, 0, 0.3`]], {underlying, 0, 100}, PlotLabel "Call Delta as a Function of Stock Price", Out[21]=

4 4 Option_Greeks.nb As one would intuitively expect, as the price of the underlying increases, then the hedge ratio converges toward 1. This makes sense because if the option is in-the-money, then the ratio of changes in the option value with respect to changes in the value of the underlying become highly positively correlated. On the other hand, as the price of the underlying diminishes, then the value of the option becomes much less correlated with the value of the underlying; hence the (near zero) hedge ratio in such cases. One can intuitively infer the "Gamma" for the call option visually by noting that Gamma = 2 C S 2 ; i.e., it measures how the hedge ratio changes as the price of the underlying varies. Gamma has a very small value for options which are either deeply out-of-the-money or deeply in-the-money (note that the slope is quite flat in these cases), but for options that are near the money, Gamma is highly sensitive to changes in the price of the underlying asset. Next, we test the relationship between the put hedge ratio and the price of the underlying: In[22]:= Plot[-Normsdist[-d1[underlying, 50, 0.05`, 1, 0, 0.3`]], {underlying, 0, 100}, PlotLabel "Put Delta as a Function of Stock Price",

5 Option_Greeks.nb 5 Out[22]= Not surprisingly, the graph for the put looks very much like the graph for the call, except the y axis values are negative. Of course, we expect this since delta for the put option (-N(-d 1 )) is equal to the call option's delta (N(d 1 )) minus 1! Here, the hedge ratio for the put option converges toward 0 for deeply out-of-the-money puts (i.e., when the price of the underlying is high), and toward -1 for deeply The same point made concerning Gamma for call options applies to put options; i.e., Gamma has a very small value for options which are either deeply out-of-the-money or deeply in-the-money (note that the slope is quite flat in these cases), but for options that are near the money, gamma is highly sensitive to changes in the price of the underlying asset. Gamma for the call is the same as Gamma for the put; i.e., 2 C = 2 P = S 2 S 2 n(d 1 ) / Sσ t. Here's the graph for Gamma:

6 6 Option_Greeks.nb In[23]:= Plot[gamma[underlying, 50, 0.05`, 1, 0, 0.3`], {underlying, 0, 100}, PlotLabel "Gamma as a Function of Stock Price", Out[23]= Here, Gamma (for both the call and put) is maximized at a stock price slightly above $40.

7 Option_Greeks.nb 7 Relationship between dc/dk and dp/dk and the price of the underlying In[24]:= Plot[dcdk[underlying, 50, 0.05`, 1, 0, 0.3`], {underlying, 0, 100}, PlotLabel "dc/dk as a Function of Stock Price", Out[24]=

8 8 Option_Greeks.nb In[25]:= Plot[dputdk[underlying, 50, 0.05`, 1, 0, 0.3`], {underlying, 0, 100}, PlotLabel "dp/dk as a Function of Stock Price", Out[25]= As in the case of the option Gammas, we find that the sensitivity of the option price with respect to changes in the exercise price is particularly high for near the money options but rather insensitive in the case of out-of-the-money options. Also, note that the net difference between P C and K K is equal to e-rt. Since 2 C K S = 2 P K S = e-rt n(d 2 ) / Sσ "gamma" as follows: t, we can draw the graph for this

9 Option_Greeks.nb 9 In[26]:= Plot[exercisegamma[underlying, 50, 0.05`, 1, 0, 0.3`], {underlying, 0, 100}, PlotLabel "'Exercise Gamma' as a Function of Stock Price", Out[26]= The graph for this "exercise price gamma" looks similar to Gamma, but its value is maximized at a higher stock price.

10 10 Option_Greeks.nb Relationship between Option Rhos and the price of the underlying In[27]:= Plot[dcalldr[underlying, 50, 0.05`, 1, 0, 0.3`], {underlying, 0, 100}, PlotLabel "Call Rho as a Function of Stock Price", Out[27]=

11 Option_Greeks.nb 11 In[28]:= Plot[dputdr[underlying, 50, 0.05`, 1, 0, 0.3`], {underlying, 0, 100}, PlotLabel "Put Rho as a Function of Stock Price", Out[28]=

12 12 Option_Greeks.nb Relationship between Option Thetas and the price of the underlying In[29]:= Plot[calltheta[underlying, 50, 0.05`, 1, 0, 0.3`], {underlying, 0, 100}, PlotLabel "Call Theta as a Function of Stock Price", Out[29]= Theta is always negative for a call option. This is because, as time passes with all else remaining the same, the call option becomes less valuable. However, the rate at which this occurs depends upon the moneyness of the option. The variation of theta with stock price for a call option is shown above. When the stock price is very low, theta is close to zero. For an at the money call option, theta is large and negative. As the stock price becomes larger, theta converges in value

13 Option_Greeks.nb 13 is close to zero. For an at the money call option, theta is large and negative. As the stock price becomes larger, theta converges in value toward -re -rt KN(d 2 ) (the other term vanishes since n(d 1 ) 0! In[30]:= Plot[puttheta[underlying, 50, 0.05`, 1, 0, 0.3`], {underlying, 0, 100}, PlotLabel "Put Theta as a Function of Stock Price", Out[30]= The pattern for the put theta is similar to the pattern for the call theta, only here we find that when the stock price is very low, theta is strongly positive. This is because with the passage of time, the odds of a large move to a high price diminishes. However, as we go toward being at the money, theta turns negative, and converges toward zero as the stock price becomes very high. Next, let s examine how the rate of time decay is related to the passage of time for an at-the-money (ATM) call option:

14 14 Option_Greeks.nb Next, let s examine how the rate of time decay is related to the passage of time for an at-the-money (ATM) call option: In[31]:= Plot[calltheta[50, 50, 0.05`, t, 0, 0.3`], {t,.25, 2}, PlotLabel "Call Theta as a Function of Time, ATM option", Out[31]= The above graph shows that the call option s theta becomes more negative with the passage of time. Thus, the rate at which time decay occurs is faster for short lived options than it is for longer lived options. Furthermore, the rate at which time decay changes with the passage of time is increasing, which implies that short-lived options (particularly options that are near or in the money) will lose value most rapidly as the expiration date draws close. Next, let s examine how the rate of time decay is related to the passage of time for the put option; first consider at-the-money (ATM) put (where the current stock price is $50):

15 Option_Greeks.nb 15 sage of time for the put option; first consider at-the-money (ATM) put (where the current stock price is $50): In[32]:= Plot[puttheta[50, 50, 0.05`, t, 0, 0.3`], {t,.25, 2}, PlotLabel "Put Theta as a Function of Time, ATM option", Out[32]= The pattern for the ATM put theta is very similar to the pattern for the ATM call theta, only somewhat less attenuated. However, since the put theta is positive for deeply in-the-money (ITM) puts, let s draw the same graph for an ITM put (where the current stock price is $30):

16 16 Option_Greeks.nb In[33]:= Plot[puttheta[30, 50, 0.05`, t, 0, 0.3`], {t,.25, 2}, PlotLabel "Put Theta as a Function of Time, ATM option", Out[33]= Here, the pattern for the ITM put theta is the reverse of the ATM put theta. Specifically, rather than decay with the passage of time, the ITM put theta expands with the passage of time. The reason for this is that as the time to maturity decreases, this makes it much more likely that the put will end up expiring in the money.

17 Option_Greeks.nb 17 Relationship between Option Vegas and the price of the underlying In[34]:= Plot[vega[underlying, 50, 0.05`, 1, 0, 0.3`], {underlying, 0, 100}, PlotLabel "Option Vegas as a Function of Stock Price", Out[34]=

Math 181 Lecture 15 Hedging and the Greeks (Chap. 14, Hull)

Math 181 Lecture 15 Hedging and the Greeks (Chap. 14, Hull) Math 181 Lecture 15 Hedging and the Greeks (Chap. 14, Hull) One use of derivation is for investors or investment banks to manage the risk of their investments. If an investor buys a stock for price S 0,

More information

OPTIONS & GREEKS. Study notes. An option results in the right (but not the obligation) to buy or sell an asset, at a predetermined

OPTIONS & GREEKS. Study notes. An option results in the right (but not the obligation) to buy or sell an asset, at a predetermined OPTIONS & GREEKS Study notes 1 Options 1.1 Basic information An option results in the right (but not the obligation) to buy or sell an asset, at a predetermined price, and on or before a predetermined

More information

FIN FINANCIAL INSTRUMENTS SPRING 2008

FIN FINANCIAL INSTRUMENTS SPRING 2008 FIN-40008 FINANCIAL INSTRUMENTS SPRING 2008 The Greeks Introduction We have studied how to price an option using the Black-Scholes formula. Now we wish to consider how the option price changes, either

More information

Lecture Quantitative Finance Spring Term 2015

Lecture Quantitative Finance Spring Term 2015 and Lecture Quantitative Finance Spring Term 2015 Prof. Dr. Erich Walter Farkas Lecture 06: March 26, 2015 1 / 47 Remember and Previous chapters: introduction to the theory of options put-call parity fundamentals

More information

The Greek Letters Based on Options, Futures, and Other Derivatives, 8th Edition, Copyright John C. Hull 2012

The Greek Letters Based on Options, Futures, and Other Derivatives, 8th Edition, Copyright John C. Hull 2012 The Greek Letters Based on Options, Futures, and Other Derivatives, 8th Edition, Copyright John C. Hull 2012 Introduction Each of the Greek letters measures a different dimension to the risk in an option

More information

Naked & Covered Positions

Naked & Covered Positions The Greek Letters 1 Example A bank has sold for $300,000 a European call option on 100,000 shares of a nondividend paying stock S 0 = 49, K = 50, r = 5%, σ = 20%, T = 20 weeks, μ = 13% The Black-Scholes

More information

Evaluating Options Price Sensitivities

Evaluating Options Price Sensitivities Evaluating Options Price Sensitivities Options Pricing Presented by Patrick Ceresna, CMT CIM DMS Montréal Exchange Instructor Disclaimer 2016 Bourse de Montréal Inc. This document is sent to you on a general

More information

Fin 4200 Project. Jessi Sagner 11/15/11

Fin 4200 Project. Jessi Sagner 11/15/11 Fin 4200 Project Jessi Sagner 11/15/11 All Option information is outlined in appendix A Option Strategy The strategy I chose was to go long 1 call and 1 put at the same strike price, but different times

More information

last problem outlines how the Black Scholes PDE (and its derivation) may be modified to account for the payment of stock dividends.

last problem outlines how the Black Scholes PDE (and its derivation) may be modified to account for the payment of stock dividends. 224 10 Arbitrage and SDEs last problem outlines how the Black Scholes PDE (and its derivation) may be modified to account for the payment of stock dividends. 10.1 (Calculation of Delta First and Finest

More information

Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 2017 Instructor: Dr. Sateesh Mane.

Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 2017 Instructor: Dr. Sateesh Mane. Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 2017 Instructor: Dr. Sateesh Mane c Sateesh R. Mane 2017 9 Lecture 9 9.1 The Greeks November 15, 2017 Let

More information

OPTION POSITIONING AND TRADING TUTORIAL

OPTION POSITIONING AND TRADING TUTORIAL OPTION POSITIONING AND TRADING TUTORIAL Binomial Options Pricing, Implied Volatility and Hedging Option Underlying 5/13/2011 Professor James Bodurtha Executive Summary The following paper looks at a number

More information

Trading Options for Potential Income in a Volatile Market

Trading Options for Potential Income in a Volatile Market Trading Options for Potential Income in a Volatile Market Dan Sheridan Sheridan Mentoring & Brian Overby TradeKing TradeKing is a member of FINRA & SIPC Disclaimer Options involve risks and are not suitable

More information

Hedging with Options

Hedging with Options School of Education, Culture and Communication Tutor: Jan Röman Hedging with Options (MMA707) Authors: Chiamruchikun Benchaphon 800530-49 Klongprateepphol Chutima 80708-67 Pongpala Apiwat 808-4975 Suntayodom

More information

Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 2017 Instructor: Dr. Sateesh Mane.

Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 2017 Instructor: Dr. Sateesh Mane. Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 2017 Instructor: Dr. Sateesh Mane c Sateesh R. Mane 2017 20 Lecture 20 Implied volatility November 30, 2017

More information

Options, Futures, and Other Derivatives, 7th Edition, Copyright John C. Hull

Options, Futures, and Other Derivatives, 7th Edition, Copyright John C. Hull Derivatives, 7th Edition, Copyright John C. Hull 2008 1 The Greek Letters Chapter 17 Derivatives, 7th Edition, Copyright John C. Hull 2008 2 Example A bank has sold for $300,000 000 a European call option

More information

P&L Attribution and Risk Management

P&L Attribution and Risk Management P&L Attribution and Risk Management Liuren Wu Options Markets (Hull chapter: 15, Greek letters) Liuren Wu ( c ) P& Attribution and Risk Management Options Markets 1 / 19 Outline 1 P&L attribution via the

More information

The Black-Scholes Model

The Black-Scholes Model The Black-Scholes Model Inputs Spot Price Exercise Price Time to Maturity Rate-Cost of funds & Yield Volatility Process The Black Box Output "Fair Market Value" For those interested in looking inside the

More information

MATH 476/567 ACTUARIAL RISK THEORY FALL 2016 PROFESSOR WANG. Homework 3 Solution

MATH 476/567 ACTUARIAL RISK THEORY FALL 2016 PROFESSOR WANG. Homework 3 Solution MAH 476/567 ACUARIAL RISK HEORY FALL 2016 PROFESSOR WANG Homework 3 Solution 1. Consider a call option on an a nondividend paying stock. Suppose that for = 0.4 the option is trading for $33 an option.

More information

Definition Pricing Risk management Second generation barrier options. Barrier Options. Arfima Financial Solutions

Definition Pricing Risk management Second generation barrier options. Barrier Options. Arfima Financial Solutions Arfima Financial Solutions Contents Definition 1 Definition 2 3 4 Contenido Definition 1 Definition 2 3 4 Definition Definition: A barrier option is an option on the underlying asset that is activated

More information

How to Trade Options Using VantagePoint and Trade Management

How to Trade Options Using VantagePoint and Trade Management How to Trade Options Using VantagePoint and Trade Management Course 3.2 + 3.3 Copyright 2016 Market Technologies, LLC. 1 Option Basics Part I Agenda Option Basics and Lingo Call and Put Attributes Profit

More information

covered warrants uncovered an explanation and the applications of covered warrants

covered warrants uncovered an explanation and the applications of covered warrants covered warrants uncovered an explanation and the applications of covered warrants Disclaimer Whilst all reasonable care has been taken to ensure the accuracy of the information comprising this brochure,

More information

Sample Term Sheet. Warrant Definitions. Risk Measurement

Sample Term Sheet. Warrant Definitions. Risk Measurement INTRODUCTION TO WARRANTS This Presentation Should Help You: Understand Why Investors Buy s Learn the Basics about Pricing Feel Comfortable with Terminology Table of Contents Sample Term Sheet Scenario

More information

Asset-or-nothing digitals

Asset-or-nothing digitals School of Education, Culture and Communication Division of Applied Mathematics MMA707 Analytical Finance I Asset-or-nothing digitals 202-0-9 Mahamadi Ouoba Amina El Gaabiiy David Johansson Examinator:

More information

The Black-Scholes Model

The Black-Scholes Model IEOR E4706: Foundations of Financial Engineering c 2016 by Martin Haugh The Black-Scholes Model In these notes we will use Itô s Lemma and a replicating argument to derive the famous Black-Scholes formula

More information

The Black-Scholes-Merton Model

The Black-Scholes-Merton Model Normal (Gaussian) Distribution Probability Density 0.5 0. 0.15 0.1 0.05 0 1.1 1 0.9 0.8 0.7 0.6? 0.5 0.4 0.3 0. 0.1 0 3.6 5. 6.8 8.4 10 11.6 13. 14.8 16.4 18 Cumulative Probability Slide 13 in this slide

More information

OPTIONS CALCULATOR QUICK GUIDE

OPTIONS CALCULATOR QUICK GUIDE OPTIONS CALCULATOR QUICK GUIDE Table of Contents Introduction 3 Valuing options 4 Examples 6 Valuing an American style non-dividend paying stock option 6 Valuing an American style dividend paying stock

More information

Greek parameters of nonlinear Black-Scholes equation

Greek parameters of nonlinear Black-Scholes equation International Journal of Mathematics and Soft Computing Vol.5, No.2 (2015), 69-74. ISSN Print : 2249-3328 ISSN Online: 2319-5215 Greek parameters of nonlinear Black-Scholes equation Purity J. Kiptum 1,

More information

Trading Options for Potential Income in a Volatile Market

Trading Options for Potential Income in a Volatile Market Trading Options for Potential Income in a Volatile Market Dan Sheridan Sheridan Mentoring & Brian Overby TradeKing TradeKing is a member of FINRA & SIPC October 19 & 20, 2011 Disclaimer Options involve

More information

Financial Sensitivity

Financial Sensitivity Financial Sensitivity Alex Yang FinPricing http://www.finpricing.com Financial Sensitivity Definition Delta Definition Vega Definition Gamma Definition Theta Definition Curvature Definition Option Sensitivity

More information

FINANCE 2011 TITLE: 2013 RISK AND SUSTAINABLE MANAGEMENT GROUP WORKING PAPER SERIES

FINANCE 2011 TITLE: 2013 RISK AND SUSTAINABLE MANAGEMENT GROUP WORKING PAPER SERIES 2013 RISK AND SUSTAINABLE MANAGEMENT GROUP WORKING PAPER SERIES FINANCE 2011 TITLE: Managing Option Trading Risk with Greeks when Analogy Making Matters AUTHOR: Schools of Economics and Political Science

More information

Lecture 9: Practicalities in Using Black-Scholes. Sunday, September 23, 12

Lecture 9: Practicalities in Using Black-Scholes. Sunday, September 23, 12 Lecture 9: Practicalities in Using Black-Scholes Major Complaints Most stocks and FX products don t have log-normal distribution Typically fat-tailed distributions are observed Constant volatility assumed,

More information

Mathematics of Finance Final Preparation December 19. To be thoroughly prepared for the final exam, you should

Mathematics of Finance Final Preparation December 19. To be thoroughly prepared for the final exam, you should Mathematics of Finance Final Preparation December 19 To be thoroughly prepared for the final exam, you should 1. know how to do the homework problems. 2. be able to provide (correct and complete!) definitions

More information

Derivatives Analysis & Valuation (Futures)

Derivatives Analysis & Valuation (Futures) 6.1 Derivatives Analysis & Valuation (Futures) LOS 1 : Introduction Study Session 6 Define Forward Contract, Future Contract. Forward Contract, In Forward Contract one party agrees to buy, and the counterparty

More information

Hedging. MATH 472 Financial Mathematics. J. Robert Buchanan

Hedging. MATH 472 Financial Mathematics. J. Robert Buchanan Hedging MATH 472 Financial Mathematics J. Robert Buchanan 2018 Introduction Definition Hedging is the practice of making a portfolio of investments less sensitive to changes in market variables. There

More information

2 f. f t S 2. Delta measures the sensitivityof the portfolio value to changes in the price of the underlying

2 f. f t S 2. Delta measures the sensitivityof the portfolio value to changes in the price of the underlying Sensitivity analysis Simulating the Greeks Meet the Greeks he value of a derivative on a single underlying asset depends upon the current asset price S and its volatility Σ, the risk-free interest rate

More information

Valuing Put Options with Put-Call Parity S + P C = [X/(1+r f ) t ] + [D P /(1+r f ) t ] CFA Examination DERIVATIVES OPTIONS Page 1 of 6

Valuing Put Options with Put-Call Parity S + P C = [X/(1+r f ) t ] + [D P /(1+r f ) t ] CFA Examination DERIVATIVES OPTIONS Page 1 of 6 DERIVATIVES OPTIONS A. INTRODUCTION There are 2 Types of Options Calls: give the holder the RIGHT, at his discretion, to BUY a Specified number of a Specified Asset at a Specified Price on, or until, a

More information

Advanced Corporate Finance. 5. Options (a refresher)

Advanced Corporate Finance. 5. Options (a refresher) Advanced Corporate Finance 5. Options (a refresher) Objectives of the session 1. Define options (calls and puts) 2. Analyze terminal payoff 3. Define basic strategies 4. Binomial option pricing model 5.

More information

Implied Volatility Surface

Implied Volatility Surface Implied Volatility Surface Liuren Wu Zicklin School of Business, Baruch College Options Markets (Hull chapter: 16) Liuren Wu Implied Volatility Surface Options Markets 1 / 1 Implied volatility Recall the

More information

Copyright 2018 Craig E. Forman All Rights Reserved. Trading Equity Options Week 2

Copyright 2018 Craig E. Forman All Rights Reserved. Trading Equity Options Week 2 Copyright 2018 Craig E. Forman All Rights Reserved www.tastytrader.net Trading Equity Options Week 2 Disclosure All investments involve risk and are not suitable for all investors. The past performance

More information

Option Selection With Bill Corcoran

Option Selection With Bill Corcoran Presents Option Selection With Bill Corcoran I am not a registered broker-dealer or investment adviser. I will mention that I consider certain securities or positions to be good candidates for the types

More information

UCLA Anderson School of Management Daniel Andrei, Option Markets 232D, Fall MBA Midterm. November Date:

UCLA Anderson School of Management Daniel Andrei, Option Markets 232D, Fall MBA Midterm. November Date: UCLA Anderson School of Management Daniel Andrei, Option Markets 232D, Fall 2013 MBA Midterm November 2013 Date: Your Name: Your Equiz.me email address: Your Signature: 1 This exam is open book, open notes.

More information

TEACHING NOTE 98-04: EXCHANGE OPTION PRICING

TEACHING NOTE 98-04: EXCHANGE OPTION PRICING TEACHING NOTE 98-04: EXCHANGE OPTION PRICING Version date: June 3, 017 C:\CLASSES\TEACHING NOTES\TN98-04.WPD The exchange option, first developed by Margrabe (1978), has proven to be an extremely powerful

More information

CHAPTER 9. Solutions. Exercise The payoff diagrams will look as in the figure below.

CHAPTER 9. Solutions. Exercise The payoff diagrams will look as in the figure below. CHAPTER 9 Solutions Exercise 1 1. The payoff diagrams will look as in the figure below. 2. Gross payoff at expiry will be: P(T) = min[(1.23 S T ), 0] + min[(1.10 S T ), 0] where S T is the EUR/USD exchange

More information

A Brief Analysis of Option Implied Volatility and Strategies. Zhou Heng. University of Adelaide, Adelaide, Australia

A Brief Analysis of Option Implied Volatility and Strategies. Zhou Heng. University of Adelaide, Adelaide, Australia Economics World, July-Aug. 2018, Vol. 6, No. 4, 331-336 doi: 10.17265/2328-7144/2018.04.009 D DAVID PUBLISHING A Brief Analysis of Option Implied Volatility and Strategies Zhou Heng University of Adelaide,

More information

Market risk measurement in practice

Market risk measurement in practice Lecture notes on risk management, public policy, and the financial system Allan M. Malz Columbia University 2018 Allan M. Malz Last updated: October 23, 2018 2/32 Outline Nonlinearity in market risk Market

More information

The Black-Scholes Model

The Black-Scholes Model The Black-Scholes Model Liuren Wu Options Markets (Hull chapter: 12, 13, 14) Liuren Wu ( c ) The Black-Scholes Model colorhmoptions Markets 1 / 17 The Black-Scholes-Merton (BSM) model Black and Scholes

More information

LECTURE 12. Volatility is the question on the B/S which assumes constant SD throughout the exercise period - The time series of implied volatility

LECTURE 12. Volatility is the question on the B/S which assumes constant SD throughout the exercise period - The time series of implied volatility LECTURE 12 Review Options C = S e -δt N (d1) X e it N (d2) P = X e it (1- N (d2)) S e -δt (1 - N (d1)) Volatility is the question on the B/S which assumes constant SD throughout the exercise period - The

More information

Advanced Equity Derivatives This course can also be presented in-house for your company or via live on-line webinar

Advanced Equity Derivatives This course can also be presented in-house for your company or via live on-line webinar Advanced Equity Derivatives This course can also be presented in-house for your company or via live on-line webinar The Banking and Corporate Finance Training Specialist Course Objectives The broad objectives

More information

Top Five Things You Should Know Before Buying an Option

Top Five Things You Should Know Before Buying an Option Top Five Things You Should Know Before Buying an Option Disclaimers Options involve risks and are not suitable for all investors. Prior to buying or selling options, an investor must receive a copy of

More information

Option Pricing. Simple Arbitrage Relations. Payoffs to Call and Put Options. Black-Scholes Model. Put-Call Parity. Implied Volatility

Option Pricing. Simple Arbitrage Relations. Payoffs to Call and Put Options. Black-Scholes Model. Put-Call Parity. Implied Volatility Simple Arbitrage Relations Payoffs to Call and Put Options Black-Scholes Model Put-Call Parity Implied Volatility Option Pricing Options: Definitions A call option gives the buyer the right, but not the

More information

MANAGING OPTIONS POSITIONS MARCH 2013

MANAGING OPTIONS POSITIONS MARCH 2013 MANAGING OPTIONS POSITIONS MARCH 2013 AGENDA INTRODUCTION OPTION VALUATION & RISK MEASURES THE GREEKS PRE-TRADE RICH VS. CHEAP ANALYSIS SELECTING TERM STRUCTURE PORTFOLIO CONSTRUCTION CONDITIONAL RISK

More information

The objective of Part One is to provide a knowledge base for learning about the key

The objective of Part One is to provide a knowledge base for learning about the key PART ONE Key Option Elements The objective of Part One is to provide a knowledge base for learning about the key elements of forex options. This includes a description of plain vanilla options and how

More information

Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Spring 2018 Instructor: Dr. Sateesh Mane.

Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Spring 2018 Instructor: Dr. Sateesh Mane. Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Spring 218 Instructor: Dr. Sateesh Mane c Sateesh R. Mane 218 19 Lecture 19 May 12, 218 Exotic options The term

More information

Implied Volatility Surface

Implied Volatility Surface Implied Volatility Surface Liuren Wu Zicklin School of Business, Baruch College Fall, 2007 Liuren Wu Implied Volatility Surface Option Pricing, Fall, 2007 1 / 22 Implied volatility Recall the BSM formula:

More information

Global Journal of Engineering Science and Research Management

Global Journal of Engineering Science and Research Management THE GREEKS & BLACK AND SCHOLE MODEL TO EVALUATE OPTIONS PRICING & SENSITIVITY IN INDIAN OPTIONS MARKET Dr. M. Tulasinadh*, Dr.R. Mahesh * Assistant Professor, Dept of MBA KBN College-PG Centre, Vijayawada

More information

Completeness and Hedging. Tomas Björk

Completeness and Hedging. Tomas Björk IV Completeness and Hedging Tomas Björk 1 Problems around Standard Black-Scholes We assumed that the derivative was traded. How do we price OTC products? Why is the option price independent of the expected

More information

.5 M339W/389W Financial Mathematics for Actuarial Applications University of Texas at Austin Sample In-Term Exam 2.5 Instructor: Milica Čudina

.5 M339W/389W Financial Mathematics for Actuarial Applications University of Texas at Austin Sample In-Term Exam 2.5 Instructor: Milica Čudina .5 M339W/389W Financial Mathematics for Actuarial Applications University of Texas at Austin Sample In-Term Exam 2.5 Instructor: Milica Čudina Notes: This is a closed book and closed notes exam. Time:

More information

Advanced Equity Derivatives

Advanced Equity Derivatives Advanced Equity Derivatives This course can be presented in-houseor via webinar for you on a date of your choosing The Banking and Corporate Finance Training Specialist Course Overview This programme has

More information

Of Option Trading PRESENTED BY: DENNIS W. WILBORN

Of Option Trading PRESENTED BY: DENNIS W. WILBORN Of Option Trading PRESENTED BY: DENNIS W. WILBORN Disclaimer U.S. GOVERNMENT REQUIRED DISCLAIMER COMMODITY FUTURES TRADING COMMISSION FUTURES AND OPTIONS TRADING HAS LARGE POTENTIAL REWARDS, BUT ALSO LARGE

More information

Understanding Options Gamma to Boost Returns. Maximizing Gamma. The Optimum Options for Accelerated Growth

Understanding Options Gamma to Boost Returns. Maximizing Gamma. The Optimum Options for Accelerated Growth Understanding Options Gamma to Boost Returns Maximizing Gamma The Optimum Options for Accelerated Growth Enhance Your Option Trading Returns by Maximizing Gamma Select the Optimum Options for Accelerated

More information

Finance 527: Lecture 31, Options V3

Finance 527: Lecture 31, Options V3 Finance 527: Lecture 31, Options V3 [John Nofsinger]: This is the third video for the options topic. And the final topic is option pricing is what we re gonna talk about. So what is the price of an option?

More information

TradeOptionsWithMe.com

TradeOptionsWithMe.com TradeOptionsWithMe.com 1 of 18 Option Trading Glossary This is the Glossary for important option trading terms. Some of these terms are rather easy and used extremely often, but some may even be new to

More information

Constructive Sales and Contingent Payment Options

Constructive Sales and Contingent Payment Options Constructive Sales and Contingent Payment Options John F. Marshall, Ph.D. Marshall, Tucker & Associates, LLC www.mtaglobal.com Alan L. Tucker, Ph.D. Lubin School of Business Pace University www.pace.edu

More information

CHAPTER 10 OPTION PRICING - II. Derivatives and Risk Management By Rajiv Srivastava. Copyright Oxford University Press

CHAPTER 10 OPTION PRICING - II. Derivatives and Risk Management By Rajiv Srivastava. Copyright Oxford University Press CHAPTER 10 OPTION PRICING - II Options Pricing II Intrinsic Value and Time Value Boundary Conditions for Option Pricing Arbitrage Based Relationship for Option Pricing Put Call Parity 2 Binomial Option

More information

GlobalView Software, Inc.

GlobalView Software, Inc. GlobalView Software, Inc. MarketView Option Analytics 10/16/2007 Table of Contents 1. Introduction...1 2. Configuration Settings...2 2.1 Component Selection... 2 2.2 Edit Configuration Analytics Tab...

More information

UCLA Anderson School of Management Daniel Andrei, Derivative Markets MGMTMFE 406, Winter MFE Final Exam. March Date:

UCLA Anderson School of Management Daniel Andrei, Derivative Markets MGMTMFE 406, Winter MFE Final Exam. March Date: UCLA Anderson School of Management Daniel Andrei, Derivative Markets MGMTMFE 406, Winter 2018 MFE Final Exam March 2018 Date: Your Name: Your email address: Your Signature: 1 This exam is open book, open

More information

Chapter 9 - Mechanics of Options Markets

Chapter 9 - Mechanics of Options Markets Chapter 9 - Mechanics of Options Markets Types of options Option positions and profit/loss diagrams Underlying assets Specifications Trading options Margins Taxation Warrants, employee stock options, and

More information

Timely, insightful research and analysis from TradeStation. Options Toolkit

Timely, insightful research and analysis from TradeStation. Options Toolkit Timely, insightful research and analysis from TradeStation Options Toolkit Table of Contents Important Information and Disclosures... 3 Options Risk Disclosure... 4 Prologue... 5 The Benefits of Trading

More information

International Mathematical Forum, Vol. 6, 2011, no. 5, Option on a CPPI. Marcos Escobar

International Mathematical Forum, Vol. 6, 2011, no. 5, Option on a CPPI. Marcos Escobar International Mathematical Forum, Vol. 6, 011, no. 5, 9-6 Option on a CPPI Marcos Escobar Department for Mathematics, Ryerson University, Toronto Andreas Kiechle Technische Universitaet Muenchen Luis Seco

More information

Sensex Realized Volatility Index (REALVOL)

Sensex Realized Volatility Index (REALVOL) Sensex Realized Volatility Index (REALVOL) Introduction Volatility modelling has traditionally relied on complex econometric procedures in order to accommodate the inherent latent character of volatility.

More information

Pricing Options on Dividend paying stocks, FOREX, Futures, Consumption Commodities

Pricing Options on Dividend paying stocks, FOREX, Futures, Consumption Commodities Pricing Options on Dividend paying stocks, FOREX, Futures, Consumption Commodities The Black-Scoles Model The Binomial Model and Pricing American Options Pricing European Options on dividend paying stocks

More information

Option Trading and Positioning Professor Bodurtha

Option Trading and Positioning Professor Bodurtha 1 Option Trading and Positioning Pooya Tavana Option Trading and Positioning Professor Bodurtha 5/7/2011 Pooya Tavana 2 Option Trading and Positioning Pooya Tavana I. Executive Summary Financial options

More information

The Black-Scholes Model

The Black-Scholes Model The Black-Scholes Model Liuren Wu Options Markets Liuren Wu ( c ) The Black-Merton-Scholes Model colorhmoptions Markets 1 / 18 The Black-Merton-Scholes-Merton (BMS) model Black and Scholes (1973) and Merton

More information

K = 1 = -1. = 0 C P = 0 0 K Asset Price (S) 0 K Asset Price (S) Out of $ In the $ - In the $ Out of the $

K = 1 = -1. = 0 C P = 0 0 K Asset Price (S) 0 K Asset Price (S) Out of $ In the $ - In the $ Out of the $ Page 1 of 20 OPTIONS 1. Valuation of Contracts a. Introduction The Value of an Option can be broken down into 2 Parts 1. INTRINSIC Value, which depends only upon the price of the asset underlying the option

More information

Financial Markets & Risk

Financial Markets & Risk Financial Markets & Risk Dr Cesario MATEUS Senior Lecturer in Finance and Banking Room QA259 Department of Accounting and Finance c.mateus@greenwich.ac.uk www.cesariomateus.com Session 3 Derivatives Binomial

More information

Volatility Smiles and Yield Frowns

Volatility Smiles and Yield Frowns Volatility Smiles and Yield Frowns Peter Carr NYU IFS, Chengdu, China, July 30, 2018 Peter Carr (NYU) Volatility Smiles and Yield Frowns 7/30/2018 1 / 35 Interest Rates and Volatility Practitioners and

More information

GLOSSARY OF COMMON DERIVATIVES TERMS

GLOSSARY OF COMMON DERIVATIVES TERMS Alpha The difference in performance of an investment relative to its benchmark. American Style Option An option that can be exercised at any time from inception as opposed to a European Style option which

More information

Derivative Securities

Derivative Securities Derivative Securities he Black-Scholes formula and its applications. his Section deduces the Black- Scholes formula for a European call or put, as a consequence of risk-neutral valuation in the continuous

More information

B. Combinations. 1. Synthetic Call (Put-Call Parity). 2. Writing a Covered Call. 3. Straddle, Strangle. 4. Spreads (Bull, Bear, Butterfly).

B. Combinations. 1. Synthetic Call (Put-Call Parity). 2. Writing a Covered Call. 3. Straddle, Strangle. 4. Spreads (Bull, Bear, Butterfly). 1 EG, Ch. 22; Options I. Overview. A. Definitions. 1. Option - contract in entitling holder to buy/sell a certain asset at or before a certain time at a specified price. Gives holder the right, but not

More information

Derivation and Comparative Statics of the Black-Scholes Call and Put Option Pricing Formulas

Derivation and Comparative Statics of the Black-Scholes Call and Put Option Pricing Formulas Derivation and Comparative Statics of the Black-Scholes Call and Put Option Pricing Formulas James R. Garven Latest Revision: February 27, 2012 Abstract This paper provides an alternative derivation of

More information

P2.T5. Market Risk Measurement & Management. Bionic Turtle FRM Practice Questions Sample

P2.T5. Market Risk Measurement & Management. Bionic Turtle FRM Practice Questions Sample P2.T5. Market Risk Measurement & Management Bionic Turtle FRM Practice Questions Sample Hull, Options, Futures & Other Derivatives By David Harper, CFA FRM CIPM www.bionicturtle.com HULL, CHAPTER 20: VOLATILITY

More information

Problems; the Smile. Options written on the same underlying asset usually do not produce the same implied volatility.

Problems; the Smile. Options written on the same underlying asset usually do not produce the same implied volatility. Problems; the Smile Options written on the same underlying asset usually do not produce the same implied volatility. A typical pattern is a smile in relation to the strike price. The implied volatility

More information

Manage Complex Option Portfolios: Simplifying Option Greeks Part II

Manage Complex Option Portfolios: Simplifying Option Greeks Part II Manage Complex Option Portfolios: Simplifying Option Greeks Part II Monday, 11 th September 7:30 PM IST 2:00 PM GMT 10:00 AM EST A Pioneer Algo Trading Training Institute Streamlined Investment Management

More information

Dynamic Relative Valuation

Dynamic Relative Valuation Dynamic Relative Valuation Liuren Wu, Baruch College Joint work with Peter Carr from Morgan Stanley October 15, 2013 Liuren Wu (Baruch) Dynamic Relative Valuation 10/15/2013 1 / 20 The standard approach

More information

Appendix A Financial Calculations

Appendix A Financial Calculations Derivatives Demystified: A Step-by-Step Guide to Forwards, Futures, Swaps and Options, Second Edition By Andrew M. Chisholm 010 John Wiley & Sons, Ltd. Appendix A Financial Calculations TIME VALUE OF MONEY

More information

Principal Component Analysis of the Volatility Smiles and Skews. Motivation

Principal Component Analysis of the Volatility Smiles and Skews. Motivation Principal Component Analysis of the Volatility Smiles and Skews Professor Carol Alexander Chair of Risk Management ISMA Centre University of Reading www.ismacentre.rdg.ac.uk 1 Motivation Implied volatilities

More information

Lecture 18. More on option pricing. Lecture 18 1 / 21

Lecture 18. More on option pricing. Lecture 18 1 / 21 Lecture 18 More on option pricing Lecture 18 1 / 21 Introduction In this lecture we will see more applications of option pricing theory. Lecture 18 2 / 21 Greeks (1) The price f of a derivative depends

More information

Options: How About Wealth & Income?

Options: How About Wealth & Income? Options: How About Wealth & Income? Disclaimer U.S. GOVERNMENT REQUIRED DISCLAIMER COMMODITY FUTURES TRADING COMMISSION FUTURES AND OPTIONS TRADING HAS LARGE POTENTIAL REW ARDS, BUT ALS O LARGE POTENTIAL

More information

Implied Liquidity Towards stochastic liquidity modeling and liquidity trading

Implied Liquidity Towards stochastic liquidity modeling and liquidity trading Implied Liquidity Towards stochastic liquidity modeling and liquidity trading Jose Manuel Corcuera Universitat de Barcelona Barcelona Spain email: jmcorcuera@ub.edu Dilip B. Madan Robert H. Smith School

More information

Volatility Trade Design

Volatility Trade Design Volatility Trade Design J. Scott Chaput* Louis H. Ederington** May 2002 * Assistant Professor of Finance ** Oklahoma Bankers Professor of Finance University of Otago Michael F. Price College of Business

More information

A study on parameters of option pricing: The Greeks

A study on parameters of option pricing: The Greeks International Journal of Academic Research and Development ISSN: 2455-4197, Impact Factor: RJIF 5.22 www.academicsjournal.com Volume 2; Issue 2; March 2017; Page No. 40-45 A study on parameters of option

More information

Derivative Securities Fall 2012 Final Exam Guidance Extended version includes full semester

Derivative Securities Fall 2012 Final Exam Guidance Extended version includes full semester Derivative Securities Fall 2012 Final Exam Guidance Extended version includes full semester Our exam is Wednesday, December 19, at the normal class place and time. You may bring two sheets of notes (8.5

More information

The Four Basic Options Strategies

The Four Basic Options Strategies Cohen_ch01.qxd 1/12/05 10:26 PM Page 1 1 The Four Basic Options Strategies Introduction The easiest way to learn options is with pictures so that you can begin to piece together strategies step-by-step.

More information

The Ultimate Options Course How Options Are Priced

The Ultimate Options Course How Options Are Priced The Ultimate Options Course How Options Are Priced Kerry W. Given, Ph.D. (Dr. Duke) Parkwood Capital, LLC 2011 Parkwood Capital, LLC. All Rights Reserved. Disclosures and Disclaimers Buying and selling

More information

Homework Set 6 Solutions

Homework Set 6 Solutions MATH 667-010 Introduction to Mathematical Finance Prof. D. A. Edwards Due: Apr. 11, 018 P Homework Set 6 Solutions K z K + z S 1. The payoff diagram shown is for a strangle. Denote its option value by

More information

Volatility Smiles and Yield Frowns

Volatility Smiles and Yield Frowns Volatility Smiles and Yield Frowns Peter Carr NYU CBOE Conference on Derivatives and Volatility, Chicago, Nov. 10, 2017 Peter Carr (NYU) Volatility Smiles and Yield Frowns 11/10/2017 1 / 33 Interest Rates

More information

Lecture #29: The Greeks

Lecture #29: The Greeks Statistics 441 (Fall 014) November 14, 014 Prof. Michael Kozdron Lecture #9: he Greeks Recall that if V (0,S 0 )denotesthefairrice(attime0)ofaeuroeancallotionwithstrike rice E and exiry date, then the

More information

Credit Risk and Underlying Asset Risk *

Credit Risk and Underlying Asset Risk * Seoul Journal of Business Volume 4, Number (December 018) Credit Risk and Underlying Asset Risk * JONG-RYONG LEE **1) Kangwon National University Gangwondo, Korea Abstract This paper develops the credit

More information

Black-Scholes. 3.1 Digital Options

Black-Scholes. 3.1 Digital Options 3 Black-Scholes In this chapter, we will study the value of European digital and share digital options and standard European puts and calls under the Black-Scholes assumptions. We will also explain how

More information

Mathematics of Financial Derivatives

Mathematics of Financial Derivatives Mathematics of Financial Derivatives Lecture 8 Solesne Bourguin bourguin@math.bu.edu Boston University Department of Mathematics and Statistics Table of contents 1. The Greek letters (continued) 2. Volatility

More information