Y. Yang, Y. Zheng and T. Hospedales. Updated: 2016/09/21. Queen Mary, University of London

Size: px
Start display at page:

Download "Y. Yang, Y. Zheng and T. Hospedales. Updated: 2016/09/21. Queen Mary, University of London"

Transcription

1 GATED NEURAL NETWORKS FOR OPTION PRICING ENFORCING SANITY IN A BLACK BOX MODEL Y. Yang, Y. Zheng and T. Hospedales Updated: 2016/09/21 Queen Mary, University of London

2 Overview ML for Option Pricing. With implications for: How do we know if/when a model is (sufficiently) sane? When is a horse more than just overfitting? How can one make ML robust to horses? Page. 1

3 OPTION PRICING

4 Problem Definition What is an option? OPTION: FORMAL DEFINITION A (call) option is a contract that gives the buyer the right, but not the obligation, to acquire the underlying asset (e.g., stock) at a specified price (called strike price) on a certain future date (called maturity date). Page. 3

5 Problem Definition (Cont.) Option: An Example At time t 0 (today), a company s stock is worth $100, and Bob buys a call option with strike price $110 and maturity date T 5 (five days later). After five days, If the company s stock price is $120, Bob will exercise the option to get the stock by paying the strike price $110. If he sells the stock immediately at $120, he will profit $10. If the company s stock price is below $110, Bob will not exercise the option and he has only lost the price paid for the option. Page. 4

6 Problem Definition (Cont.) OPTION PRICING Option Pricing is to answer how much should the mentioned call option contract be sold for at t 0? Page. 5

7 ECONOMETRICS V.S. MACHINE LEARNING

8 Different Approaches ECONOMETRICS (LET S TALK ABOUT LEVY PROCESS) I observed the price (dependent variable) and the relevant factors (independent variables) in the market. I made assumptions on these variables (which kind of stochastic process can describe it?) I figured out a formula Page. 7

9 Different Approaches (Cont.) MACHINE LEARNING (IT IS A REGRESSION PROBLEM) I observed the price (dependent variable) and the relevant factors (independent variables) in the market I feed them into a neural network (kernel machine, random forest) I got a model Page. 8

10 Different Approaches (Cont.) Claims by Machine Learning Researchers The trained model does the same job as an economist s formula produces estimated price given the same inputs, e.g., strike price, asset price, time-to-maturity, etc. It performs better in terms of smaller difference when the estimated price is compared to real market s price. Page. 9

11 Different Approaches (Cont.) QUESTIONS Do the machine learning methods really solve the problem? or they actually built a Potemkin village? Sadly, No Should I trust the outputs of block-box ML methods? Sadly, No Generally, How can I examine a machine learning method apart from reading its MSE? We ll give some examples. How to de-horse my model? We ll give some examples. Page. 10

12 AN ECONOMETRICALLY VALID OPTION PRICING MODEL

13 Notations correspond to the example at beginning At time t 0, a company s stock is worth $100, and Bob buys a call option with strike price $110 and maturity date T 5 (five days later). Value Meaning K 110 Strike Price S t 100 Underlying Asset Price at Time t m 1.1 Moneyness T 5 Future Date (when the option is ready to exercise) t 0 Current Data (when to price the option) τ 5 Time to Maturity S T? Underlying Asset Price at Time T (unknown at time t) Page. 12

14 Option pricing model that obeys no-arbitrage principle Aiming for ĉ(k, S t, τ) c. ĉ is the estimated price, c will be the true market price. General arbitrage free formula ĉ(k, S t, τ) e rτ max(0, S T K) f (S T S t, τ)ds T. 0 Page. 13

15 Option pricing model General arbitrage free formula ĉ(k, S t, τ) e rτ max(0, S T K) f (S T S t, τ)ds T 0 max(0, S 0 T K) f (S T S t, τ)ds T is the expected value of option at time T, so it has to be discounted at risk free rate r. e rτ is a discount factor. Page. 14

16 Option pricing model Core Part Core part c(k, S t, τ) 0 max(0, S T K) f (S T S t, τ)ds T max(0, S T K) is the potential revenue of having this option at time T f (S T S t, τ) is the probability density of that revenue => Integral term is in fact the expected revenue at time T. Page. 15

17 Why do we need rational option pricing? Simple ML solution w min ĉ w (K, S t, τ) c 2 2 Use your favourite kernel method / deep learner / etc. What does a sane model mean, and why do we need it? We want to explain the behaviour of the market, not just predict it. Option pricing is interrelated with other financial concepts and prediction tasks. (Some trading strategies depend on rational prediction strategies.) Page. 16

18 Why do we need rational option pricing? A low-mse option pricing model can be invalid / meaningless. c(k, S t, τ) max(0, S 0 T K) f (S T S t, τ)ds T E.g., 2 c p(s K 2 T S t, τ). Model second derivative: (risk neutral) distribution over future asset price. Second derivative must be non-negative (its a distribution). Doesn t hold for arbitrary regression models ĉ(k, S t, τ) Good regression model 0.01 Probability Density SP 500 Index E.g., This implied asset price distribution p(s T S t, τ) negative, and doesn t sum to 1. Page. 17

19 Option pricing model Rationality Checks c HAS TO PASS A NUMBER OF SANITY CHECKS c can not be an arbitrary function, it has to meet some conditions to be meaningful. ML models implicitly assume that model learns all these from data automatically unfortunately this hope is not true. Page. 18

20 Option pricing model Condition 1 English: "Asset Price CDF Constraint" c K 0 (C1) Why? c K K 0 f (S T S t, τ)ds T 1 and K 0 f (S T S t, τ)ds T is a cumulative distribution function P(S T K) thus its value can not be larger than one. Page. 19

21 Option pricing model Condition 2 English: "Asset Price (Risk Neutral) Distribution Constraint" 2 c K 2 0 (C2) Why? 2 c K 2 f (S T S t, τ) is a probability density function so its value can not be smaller than zero. Page. 20

22 Option pricing model Condition 3 English: "More costly to hedge far future" c τ 0 (C3) Why? This is intuitive: the longer you wait (larger τ), the higher chance that the underlying asset price will eventually be greater than the strike price. Thus the price should be non-decreasing with time to maturity. Page. 21

23 Option pricing model Condition 4 English: "Useless option has no value" lim K c(k, S t, τ) c(, S t, τ) 0 (C4) Why? If the strike price is infinity, the option price should be zero because the underlying asset price is always smaller than the strike price. There is no point in trading the option. Page. 22

24 Option pricing model Condition 5 English: "Market price for a trivial option" c(k, S t, 0) max(0, S t K) when τ 0 (C5) Why? When τ 0, the option is ready to execute immediately, so its price should be exactly max(0, S t K) since S t S T. Page. 23

25 Option pricing model Condition 6 English: "Boundary conditions to disallow arbitrage" max(0, S t K) c(k, S t, τ) S t (C6) Why? This boundary can be easily derived from put-call parity and payoff of the call option. Call option price can not exceed the underlying price, otherwise an investor can arbitrage by buying the stock and selling the option at same time and closing all positions when the option is expired. Page. 24

26 Can we meet these predictions? How can we make a ML model that meets these conditions for rational option pricing? c K 0 2 c c 0 K 2 τ 0 lim c(k, S t, τ) c(, S t, τ) 0 K c(k, S t, 0) max(0, S t K) when τ 0 max(0, S t K) c(k, S t, τ) S t Surely not that those horrible black box neural nets?! We claim a carefully designed NN can indeed do it. Page. 25

27 OUR PROPOSED MODELS

28 Single model - Graph y m? Page. 27

29 Single model We assume the pricing model is rescalable w.r.t. S t, i.e., c( K S t, 1, τ) c(k,s t,τ) S t and build a neural network model y(m, τ) for c( K S t, 1, τ). As m K S t, we have y(m, τ) c(m, 1, τ) Formula (Single Model) y(m, τ) J σ 1 ( b j me w j )σ 2 ( b j +τe w j )eŵ j. j 1 σ 1 (x) log(1 + e x ) (softplus function) and σ 2 (x) 1 1+e x (sigmoid function). J is the number of hidden neurons. Page. 28

30 Single model - Sanity Check We can verify that this model meets conditions C1-C3 since y m 2 y m 2 y τ J e w j σ 2 ( b j me w j )σ 2 ( b j + τe w j j )eŵ 0 j 1 J e 2 w j σ 2 ( b j me w j )σ 2 ( b j + τe w j j )eŵ 0 j 1 J e w j σ 1 ( b j me w j )σ 2 ( b j + τe w j j )eŵ 0 j 1 Page. 29

31 Single model - Sanity Check (Cont.) and the conditions C1, C2 and C3 can be rewritten as, c K S t y K 2 c K 2 S y m t m K S y t m 1 y S t m 0 2 y m K 2 y m m 2 K 1 2 y S t m 2 0 c τ S t y τ S y t τ 0 Condition C4 can be verified as m when K, and σ 1 ( b j me w j ) 0 when m. Therefore y 0 and then c S t y 0. This explains why there is no top layer bias term. => Take Home: Can enforce rationality (CDF, PDF, time & useless option constraints) through careful choice of activations Page. 30 & weight constraints.

32 Single model - Sanity Check (Cont.) CONDITION C5 ("TRIVIAL OPTION" CONSTRAINT). c(k, S t, 0) max(0, S t K) when τ 0 Hard to achieve by network architecture design. meet them by synthesising virtual option contracts with τ 0. τ e rτ S t K ĉ and c c y (expected) Table: Virtual Options for Condition C5 Page. 31

33 Single model - Sanity Check (Cont.) CONDITION C6 ("NO ARBITRAGE BOUNDARY CONDITIONS") max(0, S t K) c(k, S t, τ) S t Hard to achieve by network architecture design. Meet them by synthesising virtual option contracts with K 0. τ e rτ S t K ĉ and c c y (expected) Table: Virtual Options for Condition C6 Page. 32

34 Multi model From Single to Multi-model Single model meets constraints. But weak performance (MSE): It is insufficiently expressive (single model for all options). => Doesn t deal with the phase shifts, e.g., "deep out of money". We propose a multi model. It jointly trains a number of single pricing models, as well as a weighting model to softly switch them (cf mixture of experts). Page. 33

35 Multi model - Graph y y1 y2... yi w1 w2... wi... m? m? Page. 34

36 Multi model (Cont.) The single model s performance (MSE) is unsatisfactory as it is insufficiently expressive, so we propose a multi model. It jointly trains a number of single pricing models, as well as a weighting model to softly switch them (cf mixture of experts). The multi model s left-hand side has i 1... I single pricing models: LEFT-HAND SIDE y i (m, τ) J j 1 σ 1 ( b (i) j me w(i) j )σ 2 ( b (i) j + τe w(i) )eŵ(i) j j Page. 35

37 Multi model (Cont.) Its right-hand branch is a network with one K unit hidden layer, and the top layer has an I-way softmax activation function that provides a model selector for the left branch. RIGHT-HAND SIDE w i (m, τ) e K k 1 σ 2(mẆ 1,k +τẇ 2,k +ḃk)ẅ k,i + b i I i 1 e K k 1 σ 2(mẆ 1,k +τẇ 2,k +ḃk)ẅ k,i + b i Page. 36

38 Multi model (Cont.) Finally, the overall output y is the softmax weighted average of the I local option pricing models outputs. Due to the softmax activation, the sum of weights (w i s) is one. FINAL PREDICTION y(m, τ) I y i (m, τ)w i (m, τ). i 1 Page. 37

39 Multi model - Sanity Check The multi-network can still meet Conditions C1, C3-C6. Outstanding issue: multi-model breaks Condition C2 ("Asset Price Distribution Constraint") To alleviate this, we use the learning from hints trick. Enforcing 2 c K 2 0: a new loss term L P Q p 1 q 1 max(0, y m (m p,q, τ q ) y m (m p,q +, τ q )) Page. 38

40 Multi model - Sanity Check (Cont.) Enforcing 2 c K 2 0: a new loss term L P Q p 1 q 1 max(0, y m (m p,q, τ q ) y m (m p,q +, τ q )) : a small number, e.g., Q: a number of unique time-to-maturity. P: number of pseudo data generated. => New loss pushes y (m, τ) to a monotonically increasing m function w.r.t. m, thus 2 y tends to be larger than zero. m 2 Page. 39

41 Benchmark We do something big 70 times larger dataset than previous studies. Our dataset 5,139 trading days 3,029,327 option contracts all actively traded call options call options converted from all actively traded put options carefully pre-processed Page. 40

42 Model Performance Figure: Test MAPE by Seasons: The shadowed parts correspond to the following events: Dot-com bubble (1998), global financial crisis (2008), and European debt crisis (2011). Page. 41

43 Model Performance (Cont.) Train Test MSE MAPE (%) MSE MAPE (%) PSSF MNN Single Multi BS VG Kou Jump Table: Quantitative comparison of pricing on 3 million contracts. Page. 42

44 Model Examination Beyond MSE/MAPE BEYOND MEAN SQUARED ERROR MSE/MAPE: Solved. But we care about more than this: We check f (x S t, τ). PDF for the asset price at time T given its price at time t (i.e., S t ) and time difference (i.e., τ T t). f (x S t, τ) has to be a valid probability density function (i) non-negative and (ii) integrate to one f (x S t, τ) should also be economically reasonable, e.g. asset price close to zero after τ 7 days should be unlikey. Page. 43

45 Model Examination Beyond MSE/MAPE (Cont.) Probability Density PSSF 10-4 PSSF MNN 8 Integral: Integral: Integral: SP 500 Index Probability Density SP 500 Index Probability Density SP 500 Index Figure: Neither PSSF nor MNN produces a valid distribution. Left: PSSF risk neural density for X-axis range [0, 2000]. Middle: PSSF risk neural density for X-axis range [400, 2000] (note the difference on Y-axis scale). Right: Risk neural density of MNN. Page. 44

46 Model Examination Beyond MSE/MAPE (Cont.) Probability Density Full model: With C5 C6, C2 With C5 C6, Without C Integral: 1.0 Integral: Probability Density Probability Density SP 500 Index 10 Without -4 C5 C6, With C2 4 Integral: SP 500 Index Probability Density SP 500 Index Without C5 C6, Without C Integral: SP 500 Index Figure: Implied distribution over future asset price. Top Left: Our multi model. Top Right: Without second derivative constraint (C2), we observe invalid negative values. Bottom Left: Without virtual options (conditions C5 and C6): we see density around zero which is senseless. Bottom Right: No derivative constraint or virtual options gives invalid and meaningless density. Page. 45

47 Discussion SUMMARY We can build high-accuracy neural networks that... Notes: Draw their conclusions in the way that we want....via meaningful internal representations. Make predictions with certain sanity guarantees. This was NOT an overfitting issue. Test-MSE good before we started. This was an intrinsic horse infestation, not a biased dataset. Page. 46

48 Discussion USEFUL TIPS Neural network model does not have to be a black-box. With attention, can be grey. Pay attention to the choice on activation functions Think about controlling the weight/bias terms Can softly enforce constraints through synthesising pseudo data. Page. 47

49 Discussion TYPES OF CONSTRAINTS Pin the model s behaviour at corner cases: lim K c(k, S t, τ) c(, S t, τ) 0 c(k, S t, 0) max(0, S t K) when τ 0 max(0, S t K) c(k, S t, τ) S t Constrain how the model uses inputs with semantics. c K 0 2 c c K 2 0 τ 0 Collection of constraints can have qualitative impact. E.g., internally encode PDFs. Page. 48

50 Discussion How do we know if/when a model is (sufficiently) sane? Domain knowledge may give you other requirements. But necessary sufficient. Not insane completely sane. When is a horse not just overfitting? Our constraints are inductive bias to improve generalisation, but also much more... When is it important to avoid horses? When your model/domain has other requirements. E.g., implying distributions. When you want to understand rather than just predict. (Not just academic. E.g., Certain specific trading strategies depend on knowing asset price distribution variance.) How can one make ML robust to horses? Insight to understand requirements and semantics. Careful engineering to meet them. Page. 49

51 THANK YOU.

arxiv: v1 [q-fin.cp] 14 Sep 2016

arxiv: v1 [q-fin.cp] 14 Sep 2016 Gated Neural Networks for Option Pricing: Rationality by Design Yongxin Yang, Yu Zheng, Timothy M. Hospedales EECS, Queen Mary, University of London, Imperial Business School, Imperial College London {yongxin.yang,

More information

arxiv: v2 [q-fin.cp] 19 Nov 2016

arxiv: v2 [q-fin.cp] 19 Nov 2016 Gated Neural Networks for Option Pricing: Rationality by Design Yongxin Yang, Yu Zheng, Timothy M. Hospedales EECS, Queen Mary, University of London, Imperial Business School, Imperial College London yongxin.yang@qmul.ac.uk,

More information

Modeling of Price. Ximing Wu Texas A&M University

Modeling of Price. Ximing Wu Texas A&M University Modeling of Price Ximing Wu Texas A&M University As revenue is given by price times yield, farmers income risk comes from risk in yield and output price. Their net profit also depends on input price, but

More information

Which GARCH Model for Option Valuation? By Peter Christoffersen and Kris Jacobs

Which GARCH Model for Option Valuation? By Peter Christoffersen and Kris Jacobs Online Appendix Sample Index Returns Which GARCH Model for Option Valuation? By Peter Christoffersen and Kris Jacobs In order to give an idea of the differences in returns over the sample, Figure A.1 plots

More information

American options and early exercise

American options and early exercise Chapter 3 American options and early exercise American options are contracts that may be exercised early, prior to expiry. These options are contrasted with European options for which exercise is only

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

Boundary conditions for options

Boundary conditions for options Boundary conditions for options Boundary conditions for options can refer to the non-arbitrage conditions that option prices has to satisfy. If these conditions are broken, arbitrage can exist. to the

More information

MATH3075/3975 FINANCIAL MATHEMATICS TUTORIAL PROBLEMS

MATH3075/3975 FINANCIAL MATHEMATICS TUTORIAL PROBLEMS MATH307/37 FINANCIAL MATHEMATICS TUTORIAL PROBLEMS School of Mathematics and Statistics Semester, 04 Tutorial problems should be used to test your mathematical skills and understanding of the lecture material.

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

Lecture 4: Barrier Options

Lecture 4: Barrier Options Lecture 4: Barrier Options Jim Gatheral, Merrill Lynch Case Studies in Financial Modelling Course Notes, Courant Institute of Mathematical Sciences, Fall Term, 2001 I am grateful to Peter Friz for carefully

More information

The Black-Scholes PDE from Scratch

The Black-Scholes PDE from Scratch The Black-Scholes PDE from Scratch chris bemis November 27, 2006 0-0 Goal: Derive the Black-Scholes PDE To do this, we will need to: Come up with some dynamics for the stock returns Discuss Brownian motion

More information

Risk-neutral Binomial Option Valuation

Risk-neutral Binomial Option Valuation Risk-neutral Binomial Option Valuation Main idea is that the option price now equals the expected value of the option price in the future, discounted back to the present at the risk free rate. Assumes

More information

Point Estimation. Some General Concepts of Point Estimation. Example. Estimator quality

Point Estimation. Some General Concepts of Point Estimation. Example. Estimator quality Point Estimation Some General Concepts of Point Estimation Statistical inference = conclusions about parameters Parameters == population characteristics A point estimate of a parameter is a value (based

More information

The Recovery Theorem* Steve Ross

The Recovery Theorem* Steve Ross 2015 Award Ceremony and CFS Symposium: What Market Prices Tell Us 24 September 2015, Frankfurt am Main The Recovery Theorem* Steve Ross Franco Modigliani Professor of Financial Economics MIT Managing Partner

More information

From Discrete Time to Continuous Time Modeling

From Discrete Time to Continuous Time Modeling From Discrete Time to Continuous Time Modeling Prof. S. Jaimungal, Department of Statistics, University of Toronto 2004 Arrow-Debreu Securities 2004 Prof. S. Jaimungal 2 Consider a simple one-period economy

More information

Review for Quiz #2 Revised: October 31, 2015

Review for Quiz #2 Revised: October 31, 2015 ECON-UB 233 Dave Backus @ NYU Review for Quiz #2 Revised: October 31, 2015 I ll focus again on the big picture to give you a sense of what we ve done and how it fits together. For each topic/result/concept,

More information

Applying the Principles of Quantitative Finance to the Construction of Model-Free Volatility Indices

Applying the Principles of Quantitative Finance to the Construction of Model-Free Volatility Indices Applying the Principles of Quantitative Finance to the Construction of Model-Free Volatility Indices Christopher Ting http://www.mysmu.edu/faculty/christophert/ Christopher Ting : christopherting@smu.edu.sg

More information

CS364B: Frontiers in Mechanism Design Lecture #18: Multi-Parameter Revenue-Maximization

CS364B: Frontiers in Mechanism Design Lecture #18: Multi-Parameter Revenue-Maximization CS364B: Frontiers in Mechanism Design Lecture #18: Multi-Parameter Revenue-Maximization Tim Roughgarden March 5, 2014 1 Review of Single-Parameter Revenue Maximization With this lecture we commence the

More information

Derivative Instruments

Derivative Instruments Derivative Instruments Paris Dauphine University - Master I.E.F. (272) Autumn 2016 Jérôme MATHIS jerome.mathis@dauphine.fr (object: IEF272) http://jerome.mathis.free.fr/ief272 Slides on book: John C. Hull,

More information

Problem Set 4 Answers

Problem Set 4 Answers Business 3594 John H. Cochrane Problem Set 4 Answers ) a) In the end, we re looking for ( ) ( ) + This suggests writing the portfolio as an investment in the riskless asset, then investing in the risky

More information

Lecture 6: Option Pricing Using a One-step Binomial Tree. Thursday, September 12, 13

Lecture 6: Option Pricing Using a One-step Binomial Tree. Thursday, September 12, 13 Lecture 6: Option Pricing Using a One-step Binomial Tree An over-simplified model with surprisingly general extensions a single time step from 0 to T two types of traded securities: stock S and a bond

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

IEOR E4703: Monte-Carlo Simulation

IEOR E4703: Monte-Carlo Simulation IEOR E4703: Monte-Carlo Simulation Simulation Efficiency and an Introduction to Variance Reduction Methods Martin Haugh Department of Industrial Engineering and Operations Research Columbia University

More information

Corporate Finance, Module 21: Option Valuation. Practice Problems. (The attached PDF file has better formatting.) Updated: July 7, 2005

Corporate Finance, Module 21: Option Valuation. Practice Problems. (The attached PDF file has better formatting.) Updated: July 7, 2005 Corporate Finance, Module 21: Option Valuation Practice Problems (The attached PDF file has better formatting.) Updated: July 7, 2005 {This posting has more information than is needed for the corporate

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

Introduction Random Walk One-Period Option Pricing Binomial Option Pricing Nice Math. Binomial Models. Christopher Ting.

Introduction Random Walk One-Period Option Pricing Binomial Option Pricing Nice Math. Binomial Models. Christopher Ting. Binomial Models Christopher Ting Christopher Ting http://www.mysmu.edu/faculty/christophert/ : christopherting@smu.edu.sg : 6828 0364 : LKCSB 5036 October 14, 2016 Christopher Ting QF 101 Week 9 October

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 217 Instructor: Dr. Sateesh Mane c Sateesh R. Mane 217 13 Lecture 13 November 15, 217 Derivation of the Black-Scholes-Merton

More information

Machine Learning and Option Implied Information

Machine Learning and Option Implied Information Imperial College London Doctoral Thesis Machine Learning and Option Implied Information Author: Yu Zheng Supervisor: Prof. Michaelides Alexander A thesis submitted in fulfillment of the requirements for

More information

Optimal Incentive Contract with Costly and Flexible Monitoring

Optimal Incentive Contract with Costly and Flexible Monitoring Optimal Incentive Contract with Costly and Flexible Monitoring Anqi Li 1 Ming Yang 2 1 Department of Economics, Washington University in St. Louis 2 Fuqua School of Business, Duke University January 2016

More information

Risk Management Using Derivatives Securities

Risk Management Using Derivatives Securities Risk Management Using Derivatives Securities 1 Definition of Derivatives A derivative is a financial instrument whose value is derived from the price of a more basic asset called the underlying asset.

More information

Optimal Investment for Generalized Utility Functions

Optimal Investment for Generalized Utility Functions Optimal Investment for Generalized Utility Functions Thijs Kamma Maastricht University July 05, 2018 Overview Introduction Terminal Wealth Problem Utility Specifications Economic Scenarios Results Black-Scholes

More information

Definition 9.1 A point estimate is any function T (X 1,..., X n ) of a random sample. We often write an estimator of the parameter θ as ˆθ.

Definition 9.1 A point estimate is any function T (X 1,..., X n ) of a random sample. We often write an estimator of the parameter θ as ˆθ. 9 Point estimation 9.1 Rationale behind point estimation When sampling from a population described by a pdf f(x θ) or probability function P [X = x θ] knowledge of θ gives knowledge of the entire population.

More information

Financial Derivatives Section 5

Financial Derivatives Section 5 Financial Derivatives Section 5 The Black and Scholes Model Michail Anthropelos anthropel@unipi.gr http://web.xrh.unipi.gr/faculty/anthropelos/ University of Piraeus Spring 2018 M. Anthropelos (Un. of

More information

International Journal of Computer Engineering and Applications, Volume XII, Issue II, Feb. 18, ISSN

International Journal of Computer Engineering and Applications, Volume XII, Issue II, Feb. 18,   ISSN Volume XII, Issue II, Feb. 18, www.ijcea.com ISSN 31-3469 AN INVESTIGATION OF FINANCIAL TIME SERIES PREDICTION USING BACK PROPAGATION NEURAL NETWORKS K. Jayanthi, Dr. K. Suresh 1 Department of Computer

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

Edgeworth Binomial Trees

Edgeworth Binomial Trees Mark Rubinstein Paul Stephens Professor of Applied Investment Analysis University of California, Berkeley a version published in the Journal of Derivatives (Spring 1998) Abstract This paper develops a

More information

How Much Should You Pay For a Financial Derivative?

How Much Should You Pay For a Financial Derivative? City University of New York (CUNY) CUNY Academic Works Publications and Research New York City College of Technology Winter 2-26-2016 How Much Should You Pay For a Financial Derivative? Boyan Kostadinov

More information

Much of what appears here comes from ideas presented in the book:

Much of what appears here comes from ideas presented in the book: Chapter 11 Robust statistical methods Much of what appears here comes from ideas presented in the book: Huber, Peter J. (1981), Robust statistics, John Wiley & Sons (New York; Chichester). There are many

More information

A Non-Parametric Technique of Option Pricing

A Non-Parametric Technique of Option Pricing 1 A Non-Parametric Technique of Option Pricing In our quest for a proper option-pricing model, we have so far relied on making assumptions regarding the dynamics of the underlying asset (more or less realistic)

More information

Validating TIP$TER Can You Trust Its Math?

Validating TIP$TER Can You Trust Its Math? Validating TIP$TER Can You Trust Its Math? A Series of Tests Introduction: Validating TIP$TER involves not just checking the accuracy of its complex algorithms, but also ensuring that the third party software

More information

JEM034 Corporate Finance Winter Semester 2017/2018

JEM034 Corporate Finance Winter Semester 2017/2018 JEM034 Corporate Finance Winter Semester 2017/2018 Lecture #5 Olga Bychkova Topics Covered Today Risk and the Cost of Capital (chapter 9 in BMA) Understading Options (chapter 20 in BMA) Valuing Options

More information

International Journal of Computer Engineering and Applications, Volume XII, Issue II, Feb. 18, ISSN

International Journal of Computer Engineering and Applications, Volume XII, Issue II, Feb. 18,   ISSN International Journal of Computer Engineering and Applications, Volume XII, Issue II, Feb. 18, www.ijcea.com ISSN 31-3469 AN INVESTIGATION OF FINANCIAL TIME SERIES PREDICTION USING BACK PROPAGATION NEURAL

More information

CSE 312 Winter Learning From Data: Maximum Likelihood Estimators (MLE)

CSE 312 Winter Learning From Data: Maximum Likelihood Estimators (MLE) CSE 312 Winter 2017 Learning From Data: Maximum Likelihood Estimators (MLE) 1 Parameter Estimation Given: independent samples x1, x2,..., xn from a parametric distribution f(x θ) Goal: estimate θ. Not

More information

FE610 Stochastic Calculus for Financial Engineers. Stevens Institute of Technology

FE610 Stochastic Calculus for Financial Engineers. Stevens Institute of Technology FE610 Stochastic Calculus for Financial Engineers Lecture 13. The Black-Scholes PDE Steve Yang Stevens Institute of Technology 04/25/2013 Outline 1 The Black-Scholes PDE 2 PDEs in Asset Pricing 3 Exotic

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

A NOVEL DECISION TREE APPROACH FOR OPTION PRICING USING A CLUSTERING BASED LEARNING ALGORITHM

A NOVEL DECISION TREE APPROACH FOR OPTION PRICING USING A CLUSTERING BASED LEARNING ALGORITHM A NOVEL DECISION TREE APPROACH FOR OPTION PRICING USING A CLUSTERING BASED LEARNING ALGORITHM J. K. R. Sastry, K. V. N. M. Ramesh and J. V. R. Murthy KL University, JNTU Kakinada, India E-Mail: drsastry@kluniversity.in

More information

Financial Economics Field Exam January 2008

Financial Economics Field Exam January 2008 Financial Economics Field Exam January 2008 There are two questions on the exam, representing Asset Pricing (236D = 234A) and Corporate Finance (234C). Please answer both questions to the best of your

More information

Section 0: Introduction and Review of Basic Concepts

Section 0: Introduction and Review of Basic Concepts Section 0: Introduction and Review of Basic Concepts Carlos M. Carvalho The University of Texas McCombs School of Business mccombs.utexas.edu/faculty/carlos.carvalho/teaching 1 Getting Started Syllabus

More information

MASM006 UNIVERSITY OF EXETER SCHOOL OF ENGINEERING, COMPUTER SCIENCE AND MATHEMATICS MATHEMATICAL SCIENCES FINANCIAL MATHEMATICS.

MASM006 UNIVERSITY OF EXETER SCHOOL OF ENGINEERING, COMPUTER SCIENCE AND MATHEMATICS MATHEMATICAL SCIENCES FINANCIAL MATHEMATICS. MASM006 UNIVERSITY OF EXETER SCHOOL OF ENGINEERING, COMPUTER SCIENCE AND MATHEMATICS MATHEMATICAL SCIENCES FINANCIAL MATHEMATICS May/June 2006 Time allowed: 2 HOURS. Examiner: Dr N.P. Byott This is a CLOSED

More information

Department of Mathematics. Mathematics of Financial Derivatives

Department of Mathematics. Mathematics of Financial Derivatives Department of Mathematics MA408 Mathematics of Financial Derivatives Thursday 15th January, 2009 2pm 4pm Duration: 2 hours Attempt THREE questions MA408 Page 1 of 5 1. (a) Suppose 0 < E 1 < E 3 and E 2

More information

ALGORITHMIC TRADING STRATEGIES IN PYTHON

ALGORITHMIC TRADING STRATEGIES IN PYTHON 7-Course Bundle In ALGORITHMIC TRADING STRATEGIES IN PYTHON Learn to use 15+ trading strategies including Statistical Arbitrage, Machine Learning, Quantitative techniques, Forex valuation methods, Options

More information

Chapter 17. Options and Corporate Finance. Key Concepts and Skills

Chapter 17. Options and Corporate Finance. Key Concepts and Skills Chapter 17 Options and Corporate Finance Prof. Durham Key Concepts and Skills Understand option terminology Be able to determine option payoffs and profits Understand the major determinants of option prices

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

Help Session 2. David Sovich. Washington University in St. Louis

Help Session 2. David Sovich. Washington University in St. Louis Help Session 2 David Sovich Washington University in St. Louis TODAY S AGENDA 1. Refresh the concept of no arbitrage and how to bound option prices using just the principle of no arbitrage 2. Work on applying

More information

FINANCIAL OPTION ANALYSIS HANDOUTS

FINANCIAL OPTION ANALYSIS HANDOUTS FINANCIAL OPTION ANALYSIS HANDOUTS 1 2 FAIR PRICING There is a market for an object called S. The prevailing price today is S 0 = 100. At this price the object S can be bought or sold by anyone for any

More information

Machine Learning and Options Pricing: A Comparison of Black-Scholes and a Deep Neural Network in Pricing and Hedging DAX 30 Index Options

Machine Learning and Options Pricing: A Comparison of Black-Scholes and a Deep Neural Network in Pricing and Hedging DAX 30 Index Options Machine Learning and Options Pricing: A Comparison of Black-Scholes and a Deep Neural Network in Pricing and Hedging DAX 30 Index Options Student Number: 484862 Department of Finance Aalto University School

More information

Option Pricing with Aggregation of Physical Models and Nonparametric Learning

Option Pricing with Aggregation of Physical Models and Nonparametric Learning Option Pricing with Aggregation of Physical Models and Nonparametric Learning Jianqing Fan Princeton University With Loriano Mancini http://www.princeton.edu/ jqfan May 16, 2007 0 Outline Option pricing

More information

Anurag Sodhi University of North Carolina at Charlotte

Anurag Sodhi University of North Carolina at Charlotte American Put Option pricing using Least squares Monte Carlo method under Bakshi, Cao and Chen Model Framework (1997) and comparison to alternative regression techniques in Monte Carlo Anurag Sodhi University

More information

About Black-Sholes formula, volatility, implied volatility and math. statistics.

About Black-Sholes formula, volatility, implied volatility and math. statistics. About Black-Sholes formula, volatility, implied volatility and math. statistics. Mark Ioffe Abstract We analyze application Black-Sholes formula for calculation of implied volatility from point of view

More information

Predicting Foreign Exchange Arbitrage

Predicting Foreign Exchange Arbitrage Predicting Foreign Exchange Arbitrage Stefan Huber & Amy Wang 1 Introduction and Related Work The Covered Interest Parity condition ( CIP ) should dictate prices on the trillion-dollar foreign exchange

More information

Understanding and Solving Societal Problems with Modeling and Simulation

Understanding and Solving Societal Problems with Modeling and Simulation Understanding and Solving Societal Problems with Modeling and Simulation Lecture 12: Financial Markets I: Risk Dr. Heinrich Nax & Matthias Leiss Dr. Heinrich Nax & Matthias Leiss 13.05.14 1 / 39 Outline

More information

Real Options. Katharina Lewellen Finance Theory II April 28, 2003

Real Options. Katharina Lewellen Finance Theory II April 28, 2003 Real Options Katharina Lewellen Finance Theory II April 28, 2003 Real options Managers have many options to adapt and revise decisions in response to unexpected developments. Such flexibility is clearly

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

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

Practice of Finance: Advanced Corporate Risk Management

Practice of Finance: Advanced Corporate Risk Management MIT OpenCourseWare http://ocw.mit.edu 15.997 Practice of Finance: Advanced Corporate Risk Management Spring 2009 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms.

More information

Black-Scholes Option Pricing

Black-Scholes Option Pricing Black-Scholes Option Pricing The pricing kernel furnishes an alternate derivation of the Black-Scholes formula for the price of a call option. Arbitrage is again the foundation for the theory. 1 Risk-Free

More information

NOTES ON THE BANK OF ENGLAND OPTION IMPLIED PROBABILITY DENSITY FUNCTIONS

NOTES ON THE BANK OF ENGLAND OPTION IMPLIED PROBABILITY DENSITY FUNCTIONS 1 NOTES ON THE BANK OF ENGLAND OPTION IMPLIED PROBABILITY DENSITY FUNCTIONS Options are contracts used to insure against or speculate/take a view on uncertainty about the future prices of a wide range

More information

FINANCIAL MATHEMATICS WITH ADVANCED TOPICS MTHE7013A

FINANCIAL MATHEMATICS WITH ADVANCED TOPICS MTHE7013A UNIVERSITY OF EAST ANGLIA School of Mathematics Main Series UG Examination 2016 17 FINANCIAL MATHEMATICS WITH ADVANCED TOPICS MTHE7013A Time allowed: 3 Hours Attempt QUESTIONS 1 and 2, and THREE other

More information

Consumption-Savings Decisions and State Pricing

Consumption-Savings Decisions and State Pricing Consumption-Savings Decisions and State Pricing Consumption-Savings, State Pricing 1/ 40 Introduction We now consider a consumption-savings decision along with the previous portfolio choice decision. These

More information

M3F22/M4F22/M5F22 EXAMINATION SOLUTIONS

M3F22/M4F22/M5F22 EXAMINATION SOLUTIONS M3F22/M4F22/M5F22 EXAMINATION SOLUTIONS 2016-17 Q1: Limited liability; bankruptcy; moral hazard. Limited liability. All business transactions involve an exchange of goods or services between a willing

More information

Option Pricing using Neural Networks

Option Pricing using Neural Networks Option Pricing using Neural Networks Technical Report by Norbert Fogarasi (Jan 2004) 1. Introduction Among nonparametric option pricing techniques, probably the most fertile area for empirical research

More information

15 Week 5b Mutual Funds

15 Week 5b Mutual Funds 15 Week 5b Mutual Funds 15.1 Background 1. It would be natural, and completely sensible, (and good marketing for MBA programs) if funds outperform darts! Pros outperform in any other field. 2. Except for...

More information

Global Financial Management. Option Contracts

Global Financial Management. Option Contracts Global Financial Management Option Contracts Copyright 1997 by Alon Brav, Campbell R. Harvey, Ernst Maug and Stephen Gray. All rights reserved. No part of this lecture may be reproduced without the permission

More information

FINITE SAMPLE DISTRIBUTIONS OF RISK-RETURN RATIOS

FINITE SAMPLE DISTRIBUTIONS OF RISK-RETURN RATIOS Available Online at ESci Journals Journal of Business and Finance ISSN: 305-185 (Online), 308-7714 (Print) http://www.escijournals.net/jbf FINITE SAMPLE DISTRIBUTIONS OF RISK-RETURN RATIOS Reza Habibi*

More information

Option Properties Liuren Wu

Option Properties Liuren Wu Option Properties Liuren Wu Options Markets (Hull chapter: 9) Liuren Wu ( c ) Option Properties Options Markets 1 / 17 Notation c: European call option price. C American call price. p: European put option

More information

ECON FINANCIAL ECONOMICS

ECON FINANCIAL ECONOMICS ECON 337901 FINANCIAL ECONOMICS Peter Ireland Boston College Fall 2017 These lecture notes by Peter Ireland are licensed under a Creative Commons Attribution-NonCommerical-ShareAlike 4.0 International

More information

The Black-Scholes Equation

The Black-Scholes Equation The Black-Scholes Equation MATH 472 Financial Mathematics J. Robert Buchanan 2018 Objectives In this lesson we will: derive the Black-Scholes partial differential equation using Itô s Lemma and no-arbitrage

More information

Week 2 Quantitative Analysis of Financial Markets Hypothesis Testing and Confidence Intervals

Week 2 Quantitative Analysis of Financial Markets Hypothesis Testing and Confidence Intervals Week 2 Quantitative Analysis of Financial Markets Hypothesis Testing and Confidence Intervals Christopher Ting http://www.mysmu.edu/faculty/christophert/ Christopher Ting : christopherting@smu.edu.sg :

More information

CS 237: Probability in Computing

CS 237: Probability in Computing CS 237: Probability in Computing Wayne Snyder Computer Science Department Boston University Lecture 12: Continuous Distributions Uniform Distribution Normal Distribution (motivation) Discrete vs Continuous

More information

Attempt QUESTIONS 1 and 2, and THREE other questions. Do not turn over until you are told to do so by the Invigilator.

Attempt QUESTIONS 1 and 2, and THREE other questions. Do not turn over until you are told to do so by the Invigilator. UNIVERSITY OF EAST ANGLIA School of Mathematics Main Series UG Examination 2016 17 FINANCIAL MATHEMATICS MTHE6026A Time allowed: 3 Hours Attempt QUESTIONS 1 and 2, and THREE other questions. Notes are

More information

SINCE the seminal work by Black and Scholes [8], option

SINCE the seminal work by Black and Scholes [8], option 626 IEEE TRANSACTIONS ON NEURAL NETWORKS, VOL. 20, NO. 4, APRIL 2009 Option Pricing With Modular Neural Networks Nikola Gradojevic, Ramazan Gençay, and Dragan Kukolj, Senior Member, IEEE Abstract This

More information

Math 5760/6890 Introduction to Mathematical Finance

Math 5760/6890 Introduction to Mathematical Finance Math 5760/6890 Introduction to Mathematical Finance Instructor: Jingyi Zhu Office: LCB 335 Telephone:581-3236 E-mail: zhu@math.utah.edu Class web page: www.math.utah.edu/~zhu/5760_12f.html What you should

More information

Lecture 4: Forecasting with option implied information

Lecture 4: Forecasting with option implied information Lecture 4: Forecasting with option implied information Prof. Massimo Guidolin Advanced Financial Econometrics III Winter/Spring 2016 Overview A two-step approach Black-Scholes single-factor model Heston

More information

Forwards, Futures, Options and Swaps

Forwards, Futures, Options and Swaps Forwards, Futures, Options and Swaps A derivative asset is any asset whose payoff, price or value depends on the payoff, price or value of another asset. The underlying or primitive asset may be almost

More information

Path-dependent inefficient strategies and how to make them efficient.

Path-dependent inefficient strategies and how to make them efficient. Path-dependent inefficient strategies and how to make them efficient. Illustrated with the study of a popular retail investment product Carole Bernard (University of Waterloo) & Phelim Boyle (Wilfrid Laurier

More information

SYSM 6304: Risk and Decision Analysis Lecture 6: Pricing and Hedging Financial Derivatives

SYSM 6304: Risk and Decision Analysis Lecture 6: Pricing and Hedging Financial Derivatives SYSM 6304: Risk and Decision Analysis Lecture 6: Pricing and Hedging Financial Derivatives M. Vidyasagar Cecil & Ida Green Chair The University of Texas at Dallas Email: M.Vidyasagar@utdallas.edu October

More information

Probability. An intro for calculus students P= Figure 1: A normal integral

Probability. An intro for calculus students P= Figure 1: A normal integral Probability An intro for calculus students.8.6.4.2 P=.87 2 3 4 Figure : A normal integral Suppose we flip a coin 2 times; what is the probability that we get more than 2 heads? Suppose we roll a six-sided

More information

Datasets to use and avoid in quantitative portfolios

Datasets to use and avoid in quantitative portfolios Datasets to use and avoid in quantitative portfolios Ankit Awasthi Quantitative Portfolio Manager, qplum www.qplum.co/events Disclosures: qplum LLC is a registered investment adviser. Information presented

More information

Point Estimation. Stat 4570/5570 Material from Devore s book (Ed 8), and Cengage

Point Estimation. Stat 4570/5570 Material from Devore s book (Ed 8), and Cengage 6 Point Estimation Stat 4570/5570 Material from Devore s book (Ed 8), and Cengage Point Estimation Statistical inference: directed toward conclusions about one or more parameters. We will use the generic

More information

Employee Reload Options: Pricing, Hedging, and Optimal Exercise

Employee Reload Options: Pricing, Hedging, and Optimal Exercise Employee Reload Options: Pricing, Hedging, and Optimal Exercise Philip H. Dybvig Washington University in Saint Louis Mark Loewenstein Boston University for a presentation at Cambridge, March, 2003 Abstract

More information

Option Pricing by Fuzzy Logic Based Signal Processing

Option Pricing by Fuzzy Logic Based Signal Processing Option Pricing by Fuzzy Logic Based Signal Processing Dragan Kukolj *, Senior Member, IEEE, and Nikola Gradojevic *,** * Faculty of Technical Sciences, Novi Sad, Serbia; ** Faculty of Business Administration,

More information

Hull, Options, Futures, and Other Derivatives, 9 th Edition

Hull, Options, Futures, and Other Derivatives, 9 th Edition P1.T4. Valuation & Risk Models Hull, Options, Futures, and Other Derivatives, 9 th Edition Bionic Turtle FRM Study Notes By David Harper, CFA FRM CIPM and Deepa Sounder www.bionicturtle.com Hull, Chapter

More information

STOCHASTIC CALCULUS AND BLACK-SCHOLES MODEL

STOCHASTIC CALCULUS AND BLACK-SCHOLES MODEL STOCHASTIC CALCULUS AND BLACK-SCHOLES MODEL YOUNGGEUN YOO Abstract. Ito s lemma is often used in Ito calculus to find the differentials of a stochastic process that depends on time. This paper will introduce

More information

Appendix: Basics of Options and Option Pricing Option Payoffs

Appendix: Basics of Options and Option Pricing Option Payoffs Appendix: Basics of Options and Option Pricing An option provides the holder with the right to buy or sell a specified quantity of an underlying asset at a fixed price (called a strike price or an exercise

More information

Merton s Jump Diffusion Model. David Bonnemort, Yunhye Chu, Cory Steffen, Carl Tams

Merton s Jump Diffusion Model. David Bonnemort, Yunhye Chu, Cory Steffen, Carl Tams Merton s Jump Diffusion Model David Bonnemort, Yunhye Chu, Cory Steffen, Carl Tams Outline Background The Problem Research Summary & future direction Background Terms Option: (Call/Put) is a derivative

More information

Equity Option Valuation Practical Guide

Equity Option Valuation Practical Guide Valuation Practical Guide John Smith FinPricing Equity Option Introduction The Use of Equity Options Equity Option Payoffs Valuation Practical Guide A Real World Example Summary Equity Option Introduction

More information

The accuracy of the escrowed dividend model on the value of European options on a stock paying discrete dividend

The accuracy of the escrowed dividend model on the value of European options on a stock paying discrete dividend A Work Project, presented as part of the requirements for the Award of a Master Degree in Finance from the NOVA - School of Business and Economics. Directed Research The accuracy of the escrowed dividend

More information

DRAFT. 1 exercise in state (S, t), π(s, t) = 0 do not exercise in state (S, t) Review of the Risk Neutral Stock Dynamics

DRAFT. 1 exercise in state (S, t), π(s, t) = 0 do not exercise in state (S, t) Review of the Risk Neutral Stock Dynamics Chapter 12 American Put Option Recall that the American option has strike K and maturity T and gives the holder the right to exercise at any time in [0, T ]. The American option is not straightforward

More information

Lecture Note: Monitoring, Measurement and Risk. David H. Autor MIT , Fall 2003 November 13, 2003

Lecture Note: Monitoring, Measurement and Risk. David H. Autor MIT , Fall 2003 November 13, 2003 Lecture Note: Monitoring, Measurement and Risk David H. Autor MIT 14.661, Fall 2003 November 13, 2003 1 1 Introduction So far, we have toyed with issues of contracting in our discussions of training (both

More information

Economic Risk and Decision Analysis for Oil and Gas Industry CE School of Engineering and Technology Asian Institute of Technology

Economic Risk and Decision Analysis for Oil and Gas Industry CE School of Engineering and Technology Asian Institute of Technology Economic Risk and Decision Analysis for Oil and Gas Industry CE81.98 School of Engineering and Technology Asian Institute of Technology January Semester Presented by Dr. Thitisak Boonpramote Department

More information