Numerical Methods for Pricing American Put Options

Total Page:16

File Type:pdf, Size:1020Kb

Numerical Methods for Pricing American Put Options Numerical Methods for Pricing American Put Options Daniil Kolesnikov Master's Thesis to obtain the degree in Actuarial Science and Mathematical Finance University of Amsterdam Faculty of Economics and Business Amsterdam School of Economics Author: Daniil Kolesnikov Student nr: 10604189 Email: [email protected] Date: April 23, 2015 Supervisor: Prof. Dr. Roger Laeven Second reader: Andrei Lalu Statement of Originality This document is written by Student Daniil Kolesnikov who declares to take full responsibility for the contents of this document. I declare that the text and the work presented in this document is original and that no sources other than those mentioned in the text and its references have been used in creating it. The Faculty of Economics and Business is responsible solely for the supervi- sion of completion of the work, not for the contents. Pricing of American Put Options | Daniil Kolesnikov iii Abstract This thesis considers the models for pricing American put options. The models applied are the binomial tree model, the Monte-Carlo least squares simulation method and the decomposition method. The first two methods are widely known while the latter one is is not so commonly applied. It was first used by Kim (1990) and it allows to decompose the value of the American put option into a corresponding European put option price and the early exercise premium. The thesis presents the numerical solution of the Kim equation using quadrature for- mulas and involves Newton-Raphson iteration to compute the optimal exercise boundaries at each time step. All three models are fitted to the real data and the results are compared to determine the most efficient method. The sensitivity of the models to particular parameter choices is analyzed and examined. Keywords American put option, Binomial tree, Black-Scholes, Decomposition method, Early exercise bound- ary, Integral equations, Least-squares method, Monte-Carlo simulation, Volatility Contents Preface vii Introduction 1 1 Numerical Approaches for Pricing American Options 3 1.1 Binomial Tree Model . .3 1.2 Monte-Carlo model (LSM) . .5 1.3 Decomposition Method . .6 2 Practical Implementation 12 2.1 Data Description . 12 2.2 Binomial Tree Model . 14 2.3 Least-Square Monte-Carlo Model (LSM) . 15 2.4 Decomposition method . 15 3 Results 16 3.1 Review of Results. 16 3.2 Sensitivity analysis . 19 Conclusion 22 APPENDICES 23 A Derivation of equation (1.3) 23 B Proof of equation (1.30) 25 C Risk-free interest rates 26 D Code Listings 28 D.1 MATLAB Binomial Tree Method Code . 28 D.2 MATLAB Least-Square Method Code . 29 D.3 Wolfram Mathematica Decomposition Method Code . 31 Bibliography 33 iv List of Tables 2.1 Option contract specifications . 12 2.2 Option contracts average prices for moneyness/maturity categories (in $) . 13 3.1 Option contracts standard errors of estimate in binomial tree model . 16 3.2 Errors relative to real option prices in binomial tree model . 17 3.3 Option contracts standard errors of estimate in LSM . 17 3.4 Errors relative to real option prices in LSM . 18 3.5 Option contracts standard errors of estimate in Decomposition method . 18 3.6 Errors relative to real option prices in Decomposition method . 18 3.7 Overall relative error excluding out-of-the-money options for all methods . 19 3.8 Option contracts standard errors of estimate in LSM with a linear regression . 20 3.9 Relative change in errors between simple regression and Laguerre polynomials in the LSM pricing approach. 20 v List of Figures 2.1 Daily Yahoo! Inc. returns 20/12/13 - 19/12/14. Source: Yahoo! Finance. 14 3.1 Critical stock price B(t) for an option with T = 345, K = 55 and S0 = 44:05. 19 vi Preface I wish to express my sincere gratitude to my supervisors Professor Dr. Roger Laeven and Andrei Lalu. I am thankful to them for sharing their expertise and their valuable guidance. I am also grateful to my wife and my parents for help, moral support and encour- agement. vii viii Daniil Kolesnikov | Pricing of American Put Options Introduction An American put option is a derivative contract that gives its holder the right to sell an asset for a certain price prior to and including the maturity date. Most of the options traded on exchanges are American style (Hull, 2012). These types of derivatives can be found in all financial markets: individual equity, equity index, currency, energy, agriculture, precious metals, credit, insurance, etc. The option contract trading volume has increased by 3.1% from 2013 to 2014 resulting in 9.7 billion contracts traded. Furthermore, individual equity is the largest category with the volume of options traded, around 6.5 billion in 2014.1 While it is never optimal for an American call option contract on non-dividend paying stock to be exercised prior to maturity, hence can be priced as a European call, no closed form solution exists for American put, except for perpetual put on a non-dividend paying stock. Not only the valuation but the optimal exercise of the American options is one of the most puzzling problems in derivatives finance and it continues to be of a great interest to finance theorists. One of the most famous and influential works on option pricing was written by Fischer Black and Myron Scholes in 1973, which discusses the existence of unique and rational price for European options. The work is based on the assumption of a continuous change of the underlying asset following a geometric Brownian motion with a drift. The work was refined by Merton the same year to show that Black-Scholes equation can be applied to American style options on non-dividend paying stock, but the closed form solution for American put does not exist. Another common approach to pricing options was proposed by Cox, Ross and Rubinstein in 1978, known as a binomial tree model. The model relies on a discretization of the various price paths for the underlying asset to find the value of the option. It is widely used due to it simplicity and applicability. A paper concerning American put pricing was written by Brennan and Schwartz (1977) which applied a finite difference method to valuate the options. The method approximates the differential equations that describe the development of the option price by a set of difference equations. The price of the American put option is obtained after these equations are solved iteratively. One of the most recent methods which uses Monte-Carlo simulation for American-style options was developed by Longstaff and Schwartz (2001). The idea is to simulate the underlying asset's price paths and using backward induction at each discrete tilmestep to determine by using regressions the value of continuation and based on this, decide whether it is optimal to exercise or not by comparing value of continuation and the immediate exercise value. There are other models available to price American put options, but one is of a particular interest. It was first proposed by Kim (1990). He suggests the decomposition of the American put into a European put and early exercise premium. The European part is calculated using Black-Scholes model and the early exercise premium is computed as an integral containing the critical stock price (the price below 1According to FIA Annual Volume Survey. 1 2 Daniil Kolesnikov | Pricing of American Put Options which the option should be exercised). Only a few papers implemented a numerical solution to evaluate the integral and that is done in this paper. This method is of great interest because unlike many other methods it provides the boundary for optimal exercise during the life of the option. This thesis provides the solution to two problems: applying the appropriate models for the pricing of American put options and evaluating the performance of these models by analyzing and comparing the pricing results. Hence, answering to the main question of this thesis: \How well do the option pricing models reproduce the American put option market price and which of the methods is the most efficient?" In order to implement this research the performance of three models was examined using a sample of American put options on Yahoo!Inc. non-dividend paying stocks by fitting the prices of these options during a one-month period. The models applied are the binomial tree model, the least squares Monte-Carlo model and the decomposition model. While the first two are commonly used the latter is infrequently applied which makes this research relevant and up-to-date. The structure of this thesis is as follows: the first chapter contains the literature review of the existing option pricing models as well as theoretical specifications. The second chapter is dedicated to the practical implementation of the models and justification of the choices made. The third chapter contains the results and their analysis, including the analyses of the models' sensitivity to the choices made earlier. Finally, in the last chapter the conclusion is provided. Chapter 1 Numerical Approaches for Pricing American Options This chapter contains a literature review. It includes the detailed overview of the existing pricing models for American put options, different sections of this chapter describe different methods. 1.1 Binomial Tree Model One of the most popular and useful methods for computing option prices is the binomial option pricing model that was initially proposed by Cox, Ross and Rubinstein (1979). The basic idea of this model is constructing a binomial tree { that is a graph that represents various possible paths that the stock price can follow during the life of an option. The underlying assumption is that the stock price follows a geometric Brownian motion and that the valuation is done under risk neutrality.
Recommended publications
  • Trinomial Tree
    Trinomial Tree • Set up a trinomial approximation to the geometric Brownian motion dS=S = r dt + σ dW .a • The three stock prices at time ∆t are S, Su, and Sd, where ud = 1. • Impose the matching of mean and that of variance: 1 = pu + pm + pd; SM = (puu + pm + (pd=u)) S; 2 2 2 2 S V = pu(Su − SM) + pm(S − SM) + pd(Sd − SM) : aBoyle (1988). ⃝c 2013 Prof. Yuh-Dauh Lyuu, National Taiwan University Page 599 • Above, M ≡ er∆t; 2 V ≡ M 2(eσ ∆t − 1); by Eqs. (21) on p. 154. ⃝c 2013 Prof. Yuh-Dauh Lyuu, National Taiwan University Page 600 * - pu* Su * * pm- - j- S S * pd j j j- Sd - j ∆t ⃝c 2013 Prof. Yuh-Dauh Lyuu, National Taiwan University Page 601 Trinomial Tree (concluded) • Use linear algebra to verify that ( ) u V + M 2 − M − (M − 1) p = ; u (u − 1) (u2 − 1) ( ) u2 V + M 2 − M − u3(M − 1) p = : d (u − 1) (u2 − 1) { In practice, we must also make sure the probabilities lie between 0 and 1. • Countless variations. ⃝c 2013 Prof. Yuh-Dauh Lyuu, National Taiwan University Page 602 A Trinomial Tree p • Use u = eλσ ∆t, where λ ≥ 1 is a tunable parameter. • Then ( ) p r + σ2 ∆t ! 1 pu 2 + ; 2λ ( 2λσ) p 1 r − 2σ2 ∆t p ! − : d 2λ2 2λσ p • A nice choice for λ is π=2 .a aOmberg (1988). ⃝c 2013 Prof. Yuh-Dauh Lyuu, National Taiwan University Page 603 Barrier Options Revisited • BOPM introduces a specification error by replacing the barrier with a nonidentical effective barrier.
    [Show full text]
  • A Fuzzy Real Option Model for Pricing Grid Compute Resources
    A Fuzzy Real Option Model for Pricing Grid Compute Resources by David Allenotor A Thesis submitted to the Faculty of Graduate Studies of The University of Manitoba in partial fulfillment of the requirements of the degree of DOCTOR OF PHILOSOPHY Department of Computer Science University of Manitoba Winnipeg Copyright ⃝c 2010 by David Allenotor Abstract Many of the grid compute resources (CPU cycles, network bandwidths, computing power, processor times, and software) exist as non-storable commodities, which we call grid compute commodities (gcc) and are distributed geographically across organizations. These organizations have dissimilar resource compositions and usage policies, which makes pricing grid resources and guaranteeing their availability a challenge. Several initiatives (Globus, Legion, Nimrod/G) have developed various frameworks for grid resource management. However, there has been a very little effort in pricing the resources. In this thesis, we propose financial option based model for pricing grid resources by devising three research threads: pricing the gcc as a problem of real option, modeling gcc spot price using a discrete time approach, and addressing uncertainty constraints in the provision of Quality of Service (QoS) using fuzzy logic. We used GridSim, a simulation tool for resource usage in a Grid to experiment and test our model. To further consolidate our model and validate our results, we analyzed usage traces from six real grids from across the world for which we priced a set of resources. We designed a Price Variant Function (PVF) in our model, which is a fuzzy value and its application attracts more patronage to a grid that has more resources to offer and also redirect patronage from a grid that is very busy to another grid.
    [Show full text]
  • Local Volatility Modelling
    LOCAL VOLATILITY MODELLING Roel van der Kamp July 13, 2009 A DISSERTATION SUBMITTED FOR THE DEGREE OF Master of Science in Applied Mathematics (Financial Engineering) I have to understand the world, you see. - Richard Philips Feynman Foreword This report serves as a dissertation for the completion of the Master programme in Applied Math- ematics (Financial Engineering) from the University of Twente. The project was devised from the collaboration of the University of Twente with Saen Options BV (during the course of the project Saen Options BV was integrated into AllOptions BV) at whose facilities the project was performed over a period of six months. This research project could not have been performed without the help of others. Most notably I would like to extend my gratitude towards my supervisors: Michel Vellekoop of the University of Twente, Julien Gosme of AllOptions BV and Fran¸coisMyburg of AllOptions BV. They provided me with the theoretical and practical knowledge necessary to perform this research. Their constant guidance, involvement and availability were an essential part of this project. My thanks goes out to Irakli Khomasuridze, who worked beside me for six months on his own project for the same degree. The many discussions I had with him greatly facilitated my progress and made the whole experience much more enjoyable. Finally I would like to thank AllOptions and their staff for making use of their facilities, getting access to their data and assisting me with all practical issues. RvdK Abstract Many different models exist that describe the behaviour of stock prices and are used to value op- tions on such an underlying asset.
    [Show full text]
  • Pricing Options Using Trinomial Trees
    Pricing Options Using Trinomial Trees Paul Clifford Yan Wang Oleg Zaboronski 30.12.2009 1 Introduction One of the first computational models used in the financial mathematics community was the binomial tree model. This model was popular for some time but in the last 15 years has become significantly outdated and is of little practical use. However it is still one of the first models students traditionally were taught. A more advanced model used for the project this semester, is the trinomial tree model. This improves upon the binomial model by allowing a stock price to move up, down or stay the same with certain probabilities, as shown in the diagram below. 2 Project description. The aim of the project is to apply the trinomial tree to the following problems: ² Pricing various European and American options ² Pricing barrier options ² Calculating the greeks More precisely, the students are asked to do the following: 1. Study the trinomial tree and its parameters, pu; pd; pm; u; d 2. Study the method to build the trinomial tree of share prices 3. Study the backward induction algorithms for option pricing on trees 4. Price various options such as European, American and barrier 1 5. Calculate the greeks using the tree Each of these topics will be explained very clearly in the following sections. Students are encouraged to ask questions during the lab sessions about certain terminology that they do not understand such as barrier options, hedging greeks and things of this nature. Answers to questions listed below should contain analysis of numerical results produced by the simulation.
    [Show full text]
  • On Trinomial Trees for One-Factor Short Rate Models∗
    On Trinomial Trees for One-Factor Short Rate Models∗ Markus Leippoldy Swiss Banking Institute, University of Zurich Zvi Wienerz School of Business Administration, Hebrew University of Jerusalem April 3, 2003 ∗Markus Leippold acknowledges the financial support of the Swiss National Science Foundation (NCCR FINRISK). Zvi Wiener acknowledges the financial support of the Krueger and Rosenberg funds at the He- brew University of Jerusalem. We welcome comments, including references to related papers we inadvertently overlooked. yCorrespondence Information: University of Zurich, ISB, Plattenstr. 14, 8032 Zurich, Switzerland; tel: +41 1-634-2951; fax: +41 1-634-4903; [email protected]. zCorrespondence Information: Hebrew University of Jerusalem, Mount Scopus, Jerusalem, 91905, Israel; tel: +972-2-588-3049; fax: +972-2-588-1341; [email protected]. On Trinomial Trees for One-Factor Short Rate Models ABSTRACT In this article we discuss the implementation of general one-factor short rate models with a trinomial tree. Taking the Hull-White model as a starting point, our contribution is threefold. First, we show how trees can be spanned using a set of general branching processes. Secondly, we improve Hull-White's procedure to calibrate the tree to bond prices by a much more efficient approach. This approach is applicable to a wide range of term structure models. Finally, we show how the tree can be adjusted to the volatility structure. The proposed approach leads to an efficient and flexible construction method for trinomial trees, which can be easily implemented and calibrated to both prices and volatilities. JEL Classification Codes: G13, C6. Key Words: Short Rate Models, Trinomial Trees, Forward Measure.
    [Show full text]
  • Volatility Curves of Incomplete Markets
    Master's thesis Volatility Curves of Incomplete Markets The Trinomial Option Pricing Model KATERYNA CHECHELNYTSKA Department of Mathematical Sciences Chalmers University of Technology University of Gothenburg Gothenburg, Sweden 2019 Thesis for the Degree of Master Science Volatility Curves of Incomplete Markets The Trinomial Option Pricing Model KATERYNA CHECHELNYTSKA Department of Mathematical Sciences Chalmers University of Technology University of Gothenburg SE - 412 96 Gothenburg, Sweden Gothenburg, Sweden 2019 Volatility Curves of Incomplete Markets The Trinomial Asset Pricing Model KATERYNA CHECHELNYTSKA © KATERYNA CHECHELNYTSKA, 2019. Supervisor: Docent Simone Calogero, Department of Mathematical Sciences Examiner: Docent Patrik Albin, Department of Mathematical Sciences Master's Thesis 2019 Department of Mathematical Sciences Chalmers University of Technology and University of Gothenburg SE-412 96 Gothenburg Telephone +46 31 772 1000 Typeset in LATEX Printed by Chalmers Reproservice Gothenburg, Sweden 2019 4 Volatility Curves of Incomplete Markets The Trinomial Option Pricing Model KATERYNA CHECHELNYTSKA Department of Mathematical Sciences Chalmers University of Technology and University of Gothenburg Abstract The graph of the implied volatility of call options as a function of the strike price is called volatility curve. If the options market were perfectly described by the Black-Scholes model, the implied volatility would be independent of the strike price and thus the volatility curve would be a flat horizontal line. However the volatility curve of real markets is often found to have recurrent convex shapes called volatility smile and volatility skew. The common approach to explain this phenomena is by assuming that the volatility of the underlying stock is a stochastic process (while in Black-Scholes it is assumed to be a deterministic constant).
    [Show full text]
  • Robust Option Pricing: the Uncertain Volatility Model
    Imperial College London Department of Mathematics Robust option pricing: the uncertain volatility model Supervisor: Dr. Pietro SIORPAES Author: Hicham EL JERRARI (CID: 01792391) A thesis submitted for the degree of MSc in Mathematics and Finance, 2019-2020 El Jerrari Robust option pricing Declaration The work contained in this thesis is my own work unless otherwise stated. Signature and date: 06/09/2020 Hicham EL JERRARI 1 El Jerrari Robust option pricing Acknowledgements I would like to thank my supervisor: Dr. Pietro SIORPAES for giving me the opportunity to work on this exciting subject. I am very grateful to him for his help throughout my project. Thanks to his advice, his supervision, as well as the discussions I had with him, this experience was very enriching for me. I would also like to thank Imperial College and more particularly the \Msc Mathemat- ics and Finance" for this year rich in learning, for their support and their dedication especially in this particular year of pandemic. On a personal level, I want to thank my parents for giving me the opportunity to study this master's year at Imperial College and to be present and support me throughout my studies. I also thank my brother and my two sisters for their encouragement. Last but not least, I dedicate this work to my grandmother for her moral support and a tribute to my late grandfather. 2 El Jerrari Robust option pricing Abstract This study presents the uncertain volatility model (UVM) which proposes a new approach for the pricing and hedging of derivatives by considering a band of spot's volatility as input.
    [Show full text]
  • The Hull-White Model • Hull and White (1987) Postulate the Following Model, Ds √ = R Dt + V Dw , S 1 Dv = Μvv Dt + Bv Dw2
    The Hull-White Model • Hull and White (1987) postulate the following model, dS p = r dt + V dW ; S 1 dV = µvV dt + bV dW2: • Above, V is the instantaneous variance. • They assume µv depends on V and t (but not S). ⃝c 2014 Prof. Yuh-Dauh Lyuu, National Taiwan University Page 599 The SABR Model • Hagan, Kumar, Lesniewski, and Woodward (2002) postulate the following model, dS = r dt + SθV dW ; S 1 dV = bV dW2; for 0 ≤ θ ≤ 1. • A nice feature of this model is that the implied volatility surface has a compact approximate closed form. ⃝c 2014 Prof. Yuh-Dauh Lyuu, National Taiwan University Page 600 The Hilliard-Schwartz Model • Hilliard and Schwartz (1996) postulate the following general model, dS = r dt + f(S)V a dW ; S 1 dV = µ(V ) dt + bV dW2; for some well-behaved function f(S) and constant a. ⃝c 2014 Prof. Yuh-Dauh Lyuu, National Taiwan University Page 601 The Blacher Model • Blacher (2002) postulates the following model, dS [ ] = r dt + σ 1 + α(S − S ) + β(S − S )2 dW ; S 0 0 1 dσ = κ(θ − σ) dt + ϵσ dW2: • So the volatility σ follows a mean-reverting process to level θ. ⃝c 2014 Prof. Yuh-Dauh Lyuu, National Taiwan University Page 602 Heston's Stochastic-Volatility Model • Heston (1993) assumes the stock price follows dS p = (µ − q) dt + V dW1; (64) S p dV = κ(θ − V ) dt + σ V dW2: (65) { V is the instantaneous variance, which follows a square-root process. { dW1 and dW2 have correlation ρ.
    [Show full text]
  • Local and Stochastic Volatility Models: an Investigation Into the Pricing of Exotic Equity Options
    Local and Stochastic Volatility Models: An Investigation into the Pricing of Exotic Equity Options A dissertation submitted to the Faculty of Science, University of the Witwatersrand, Johannesburg, South Africa, in ful¯llment of the requirements of the degree of Master of Science. Abstract The assumption of constant volatility as an input parameter into the Black-Scholes option pricing formula is deemed primitive and highly erroneous when one considers the terminal distribution of the log-returns of the underlying process. To account for the `fat tails' of the distribution, we consider both local and stochastic volatility option pricing models. Each class of models, the former being a special case of the latter, gives rise to a parametrization of the skew, which may or may not reflect the correct dynamics of the skew. We investigate a select few from each class and derive the results presented in the corresponding papers. We select one from each class, namely the implied trinomial tree (Derman, Kani & Chriss 1996) and the SABR model (Hagan, Kumar, Lesniewski & Woodward 2002), and calibrate to the implied skew for SAFEX futures. We also obtain prices for both vanilla and exotic equity index options and compare the two approaches. Lisa Majmin September 29, 2005 I declare that this is my own, unaided work. It is being submitted for the Degree of Master of Science to the University of the Witwatersrand, Johannesburg. It has not been submitted before for any degree or examination to any other University. (Signature) (Date) I would like to thank my supervisor, mentor and friend Dr Graeme West for his guidance, dedication and his persistent e®ort.
    [Show full text]
  • Numerical Methods in Finance
    NUMERICAL METHODS IN FINANCE Dr Antoine Jacquier wwwf.imperial.ac.uk/~ajacquie/ Department of Mathematics Imperial College London Spring Term 2016-2017 MSc in Mathematics and Finance This version: March 8, 2017 1 Contents 0.1 Some considerations on algorithms and convergence ................. 8 0.2 A concise introduction to arbitrage and option pricing ................ 10 0.2.1 European options ................................. 12 0.2.2 American options ................................. 13 0.2.3 Exotic options .................................. 13 1 Lattice (tree) methods 14 1.1 Binomial trees ...................................... 14 1.1.1 One-period binomial tree ............................ 14 1.1.2 Multi-period binomial tree ............................ 16 1.1.3 From discrete to continuous time ........................ 18 Kushner theorem for Markov chains ...................... 18 Reconciling the discrete and continuous time ................. 20 Examples of models ............................... 21 Convergence of CRR to the Black-Scholes model ............... 23 1.1.4 Adding dividends ................................. 29 1.2 Trinomial trees ...................................... 29 Boyle model .................................... 30 Kamrad-Ritchken model ............................. 31 1.3 Overture on stability analysis .............................. 33 2 Monte Carlo methods 35 2.1 Generating random variables .............................. 35 2.1.1 Uniform random number generator ....................... 35 Generating uniform random
    [Show full text]
  • Increasing the Accuracy of Option Pricing by Using Implied Parameters Related to Higher Moments
    Increasing the Accuracy of Option Pricing by Using Implied Parameters Related to Higher Moments Dasheng Ji and B. Wade Brorsen* Paper presented at the NCR-134 Conference on Applied Commodity Price Analysis, Forecasting, and Market Risk Management Chicago, Illinois, April 17-18, 2000 Copyright 2000 by Dasheng Ji and B. Wade Brorsen. All rights reserved. Readers may make verbatim copies of this document for non-commercial purposes by any means, provided that this copyright notice appears on all such copies. *Graduate research assistant ([email protected]) and Regents Professor (brorsen@ okway.okstate.edu), Department of Agricultural Economics, Oklahoma State University. Increasing the Accuracy of Option Pricing by Using Implied Parameters Related to Higher Moments The inaccuracy of the Black-Scholes formula arises from two aspects: the formula is for European options while most real option contracts are American; the formula is based on the assumption that underlying asset prices follow a lognormal distribution while in the real world asset prices cannot be described well by a lognormal distribution. We develop an American option pricing model that allows non-normality. The theoretical basis of the model is Gaussian quadrature and dynamic programming. The usual binomial and trinomial models are special cases. We use the Jarrow-Rudd formula and the relaxed binomial and trinomial tree models to imply the parameters related to the higher moments. The results demonstrate that using implied parameters related to the higher moments is more accurate than the restricted binomial and trinomial models that are commonly used. Keywords: option pricing, volatility smile, Edgeworth series, Gaussian Quadrature, relaxed binomial and trinomial tree models.
    [Show full text]
  • Trinomial Or Binomial: Accelerating American Put Option Price on Trees
    TRINOMIAL OR BINOMIAL: ACCELERATING AMERICAN PUT OPTION PRICE ON TREES JIUN HONG CHAN, MARK JOSHI, ROBERT TANG, AND CHAO YANG Abstract. We investigate the pricing performance of eight tri- nomial trees and one binomial tree, which was found to be most effective in an earlier paper, under twenty different implementation methodologies for pricing American put options. We conclude that the binomial tree, the Tian third order moment matching tree with truncation, Richardson extrapolation and smoothing performs bet- ter than the trinomial trees. 1. Introduction Various types of binomial and trinomial trees have been proposed in the literature for pricing financial derivatives. Since tree models are backward methods, they are effective for pricing American-type deriva- tives. Joshi (2007c) conducted an empirical investigation on the perfor- mance of eleven different binomial trees on American put options using twenty different combinations of acceleration techniques; he found that the best results were obtained by using the \Tian third order moment tree" (which we refer to as Tian3 binomial tree henceforth) together with truncation, smoothing and Richardson extrapolation. Here we per- form a similar analysis for trinomial trees and also compare the pricing results to the Tian3 binomial tree. We use the same four acceleration techniques implemented by Joshi (2007c): control variate due to Hull and White (1988), truncation due to Andicropoulos, Widdicks, Duck and Newton (2004), smoothing and Richardson extrapolation due to Broadie and Detemple (1996). These four techniques can be implemented independently or collectively and therefore yield 16 combinations of acceleration techniques one can use when pricing a derivative using trees. For detailed discussion and merits of these acceleration techniques, we refer reader to Joshi (2007c).
    [Show full text]