Likelihood Estimation of Jump-Diffusions

Size: px
Start display at page:

Download "Likelihood Estimation of Jump-Diffusions"

Transcription

1 Likelihood Estimation of Jump-Diffusions Extensions from Diffusions to Jump-Diffusions, Implementation with Automatic Differentiation, and Applications Berent Ånund Strømnes Lunde DEPARTMENT OF MATHEMATICS Aktuarfokus, February , Oslo

2 Outline 1 Motivation, Problem, and Solution 2 Approximation methods for small-time jump-diffusion transition densities 3 Numerical results 4 Implementation 5 Applications Analysis of stock prices as nonlinear processes Stochastic volatility models A short rate model Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 2 / 24

3 Motivation Hang Seng Index Closing Prices Close Date How does financial bubbles develop? Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 3 / 24

4 The problem 250 Underlying jump diffusion process Observations 200 Value Time Continuous time process with an infinitesimal description dx t = µ(t, X t )dt + σ(t, X t )dw t + c(t, X t, ξ Nt +1)dN t, (1) but discrete observations. How to find the transition density to build the (log)likelihood: l(θ x t1,..., x tn ) = n log p(x ti x ti 1, θ)? (2) i=2 Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 4 / 24

5 The solution Replace the continuous process with a discrete approximation where it is possible to find the transition density. The method of Preston & Wood 2012 for time-homogeneous diffusions: 1 Develop an Itô-Taylor expansion of the sample path. 2 Calculate the moment generating function of the retained terms in the expansion. 3 Approximate the inverse Fourier transform f (x) = 1 φ(s)e isx ds. (3) 2π We extended this method to make it applicable to time-homogeneous jump-diffusions of the following form: dx t = µ(x t )dt + σ(x t )dw t + c(ξ Nt +1)dN t. (4) Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 5 / 24

6 ITSPA Let X t be a jump-diffusion, where Y t = N t i=1 Z i, and let X t denote the approximate solution to the pure diffusion, based on a discretization scheme. Theorem (ITSPA) An approximation to the transition density of X t follows from the saddlepoint approximation to the transition density of the approximated process X t = X t + Y t, which we call the Itô-Taylor saddlepoint approximation: } where ( ) f Xt (x) spa f X t ; x = { exp K X t (ŝ) ŝx 2πK (ŝ) X t, (5) K X t (ŝ) = K X t (ŝ) + K Y t (ŝ) = K X t (ŝ) + λt (M Z 1), (6) and M Z is the MGF of the iid jump magnitudes and ŝ the saddlepoint. Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 6 / 24

7 mitspa Theorem The Itô-Taylor saddlepoint approximation mixture (mitspa) to the transition density of X t is as follows: ( ) ) ( ) ( mspa f X t ; x = spa (f Xt ; x e λt + spa f X ; x 1 e λt), (7) t where X t = X t + Nt i=1 Z i, and Nt has a zero-truncated Poisson distribution with intensity λt and defined by Nt = N t N t > 0. The related CGF of the compounded zero-truncated Poisson process Y is given by: ( ) ( K Y (s) = λt (M Z (s) 1) + log 1 e λtm Z(s) log 1 e λt). (8) Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 7 / 24

8 Fourier-Gauss-Laguerre Theorem (Fourier-Gauss-Laguerre) The Fourier-Gauss-Laguerre (FGL) approximation to the transition density of X t is given by: ( ) fgl f X t ; x = 1 π n j=1 ( ) w j R φ X t (s j )e s j is j x, (9) where w j and s j are the weights and the abscissa respectively in the Gauss-Laguerre method of order n. The characteristic function is found by multiplying the characteristic function for one of the discretizations X t of the diffusion part and the characteristic function for the compounded Poisson process Y t : φ X t (s) = φ X t (s)φ Y t (s). (10) Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 8 / 24

9 The Cox-Ingersoll-Ross process density Exact Spa 1 Spa 2 respa 2 FGL 2 SPA 3 respa 3 FGL 3 density Exact Spa 1 Spa 2 respa 2 FGL 2 SPA 3 respa 3 FGL x x AELD 10 2 AELD x x Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 9 / 24

10 The Merton jump-diffusion FGL Spamix respamix Spa respa FGL Spamix respamix Spa respa 2.0 Density 10 Density x x AELD AELD x x Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 10 / 24

11 Results from MLE Results from likelihood-based inference for processes with known solutions (GBM, OU, CIR, MJD). For pure diffusions: All the methods and schemes produce good results compared to the estimates based on using the exact transition densities. Renormalization does not seem to have a large and beneficial effect. The saddlepoint approximation approximates the transition density accurately. For jump-diffusions: Renormalization of the mitspa seems to be necessary both for parameter estimates and especially the value of the likelihood. Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 11 / 24

12 A note on speed Method l θ θ l H θ CIR ITSPA scheme scheme scheme reitspa scheme scheme FGL scheme scheme MJD mitspa remitspa FGL Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 12 / 24

13 Automatic differentiation and TMB Implementation with automatic differentiation (AD) using the TMB package for R and C++. Given a computer algorithm defining a function, AD is a set of techniques used to evaluate numerically the derivatives of that function. Based on the property of programming languages such as C++ of decomposing expressions into elementary operations. Can be implemented using operator overloading. R Controlling Session *.R file Data and arguments Plot results CppAD External package Derivative calculations C++ Obj. Func. *.cpp file Evaluate likelihood, gradient and Hessian Eigen External package Matrix library Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 13 / 24

14 Benefits and extensions It is possible to utilize AD inside the C++ part of the program: 1 Evaluation of K X (ŝ) in the expression of the saddlepoint approximation. 2 Makes it possible to solve the inner problem: K X (ŝ) = x. 3 Comes in handy when calculating moments which was needed for renormalization. We extended TMB with the following: 1 Modified Bessel function of the first kind (drawn from R). 2 Log-normal density function (drawn from R). 3 A templated complex data type, ctype. Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 14 / 24

15 Complexity of methods ITSPA GL X0, s, θ KXt(s) wj, sj X0, Xt, s, θ CGF f = KXt(s) sx FGL f = KXt(s) sx, s KXt(s) X0, θ arg mins {KXt(s) sx} X0, sj, θ φxt(sj) KXt(s), ŝ, Xt IP SPA CF SP SPA Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 15 / 24

16 Conclusion on methods For diffusion processes, we suggest using the ITSPA methods on the basis of stability and speed. For jump-diffusions, we suggest using the FGL method on the basis of accuracy, stability and speed. Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 16 / 24

17 Application: Analysis of stock prices as nonlinear processes Applied the (ITSPA and FGL) methods to the question of nonlinearity and jumps as significant additions to stock price models. Model name Drift component Diffusion component Jump component GBM rs t σs t None CEV rs t σst α None nlmodel 1 rst α σst α None nlmodel 2 rst α σst β None MJD (r λˆk)s t σs t Log-normal CEVJD (r λˆk)s t σst α Log-normal Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 17 / 24

18 Results on nonlinearity and jumps Using daily logarithmic stock quotes 1 Shanghai Securities Exchange (SSE) from until Dow Jones Industrial Average (DJIA) from until Standard & Poors 500 (S&P500) from until Both the addition of nonlinearity and of jumps are significant improvements. The α parameter in nlmodel 2 is not a significant addition to the model. The CEVJD model is a significant improvement relative to the MJD model. Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 18 / 24

19 SSE MLE results Model Parameters Statistics r σ α β λ µ ν l(ˆθ; x) D p-value SSE bubble of 07 GBM est se CEV est se nlmodel 1 est se nlmodel 2 est se MJD est se CEVJD est se Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 19 / 24

20 Application: stochastic volatility models Which stochastic volatility model is preferable? Transformed VIX indices from January 1990 to March 2016 as observations of implied volatility. Used the ITSPA with the Euler scheme (due to stability). S&P VIX Scaled VIX Scaled VIX VIX S&P Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 20 / 24

21 The results on stochastic volatility models Model Estimates Statistic Name Drift Diffusion κ α σ δ l(ˆθ, x) OU κ(α V t ) σ est se CIR κ(α V t ) σ V t est se GARCH(1,1) κ(α V t ) σv t est se /2 model V t (α κv t ) σv 3 2 t est se GMR κ(α V t ) σvt δ est se Of the standard models, the continuous time GARCH(1,1) model seems preferable. Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 21 / 24

22 Application: A short-rate model 12 variable Nibor3mnd Swap10yr 9 Swap1yr Swap2yr value 6 Swap3yr Swap4yr Swap5yr Swap6yr 3 Swap7yr Swap8yr Swap9yr Dato dr t = κ(α r t )dt + σr δ t dw t + Y t dn t κ α σ δ λ µ ν Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 22 / 24

23 Further work 1 An extension of the mitspa and the FGL methods to several dimensions. 2 An extension of the methods to a more general jump-diffusion process, where the jump part of the SDE may be allowed to take a more general form. 3 A more extensive study of nonlinearity in financial markets. 4 The study of a more general mean reverting jump-diffusion process as a model for stochastic volatility, an extension of the basic affine jump-diffusion process. E.g: dv t = κ(α V t )dt + σv δ t dw t + dj t, (11) where J t is a compounded Poisson process with gamma distributed jumps. Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 23 / 24

24 Thank you Likelihood Estimation of Jump-Diffusions B. Lunde AKTUARFOKUS 24 / 24

IEOR E4703: Monte-Carlo Simulation

IEOR E4703: Monte-Carlo Simulation IEOR E4703: Monte-Carlo Simulation Simulating Stochastic Differential Equations Martin Haugh Department of Industrial Engineering and Operations Research Columbia University Email: martin.b.haugh@gmail.com

More information

Parameters Estimation in Stochastic Process Model

Parameters Estimation in Stochastic Process Model Parameters Estimation in Stochastic Process Model A Quasi-Likelihood Approach Ziliang Li University of Maryland, College Park GEE RIT, Spring 28 Outline 1 Model Review The Big Model in Mind: Signal + Noise

More information

MSc Financial Engineering CHRISTMAS ASSIGNMENT: MERTON S JUMP-DIFFUSION MODEL. To be handed in by monday January 28, 2013

MSc Financial Engineering CHRISTMAS ASSIGNMENT: MERTON S JUMP-DIFFUSION MODEL. To be handed in by monday January 28, 2013 MSc Financial Engineering 2012-13 CHRISTMAS ASSIGNMENT: MERTON S JUMP-DIFFUSION MODEL To be handed in by monday January 28, 2013 Department EMS, Birkbeck Introduction The assignment consists of Reading

More information

Exact Sampling of Jump-Diffusion Processes

Exact Sampling of Jump-Diffusion Processes 1 Exact Sampling of Jump-Diffusion Processes and Dmitry Smelov Management Science & Engineering Stanford University Exact Sampling of Jump-Diffusion Processes 2 Jump-Diffusion Processes Ubiquitous in finance

More information

Parameter estimation in SDE:s

Parameter estimation in SDE:s Lund University Faculty of Engineering Statistics in Finance Centre for Mathematical Sciences, Mathematical Statistics HT 2011 Parameter estimation in SDE:s This computer exercise concerns some estimation

More information

Saddlepoint Approximation Methods for Pricing. Financial Options on Discrete Realized Variance

Saddlepoint Approximation Methods for Pricing. Financial Options on Discrete Realized Variance Saddlepoint Approximation Methods for Pricing Financial Options on Discrete Realized Variance Yue Kuen KWOK Department of Mathematics Hong Kong University of Science and Technology Hong Kong * This is

More information

Model Estimation. Liuren Wu. Fall, Zicklin School of Business, Baruch College. Liuren Wu Model Estimation Option Pricing, Fall, / 16

Model Estimation. Liuren Wu. Fall, Zicklin School of Business, Baruch College. Liuren Wu Model Estimation Option Pricing, Fall, / 16 Model Estimation Liuren Wu Zicklin School of Business, Baruch College Fall, 2007 Liuren Wu Model Estimation Option Pricing, Fall, 2007 1 / 16 Outline 1 Statistical dynamics 2 Risk-neutral dynamics 3 Joint

More information

Simulating Stochastic Differential Equations

Simulating Stochastic Differential Equations IEOR E4603: Monte-Carlo Simulation c 2017 by Martin Haugh Columbia University Simulating Stochastic Differential Equations In these lecture notes we discuss the simulation of stochastic differential equations

More information

IEOR E4703: Monte-Carlo Simulation

IEOR E4703: Monte-Carlo Simulation IEOR E4703: Monte-Carlo Simulation Generating Random Variables and Stochastic Processes Martin Haugh Department of Industrial Engineering and Operations Research Columbia University Email: martin.b.haugh@gmail.com

More information

Modeling Co-movements and Tail Dependency in the International Stock Market via Copulae

Modeling Co-movements and Tail Dependency in the International Stock Market via Copulae Modeling Co-movements and Tail Dependency in the International Stock Market via Copulae Katja Ignatieva, Eckhard Platen Bachelier Finance Society World Congress 22-26 June 2010, Toronto K. Ignatieva, E.

More information

Math 416/516: Stochastic Simulation

Math 416/516: Stochastic Simulation Math 416/516: Stochastic Simulation Haijun Li lih@math.wsu.edu Department of Mathematics Washington State University Week 13 Haijun Li Math 416/516: Stochastic Simulation Week 13 1 / 28 Outline 1 Simulation

More information

Time-changed Brownian motion and option pricing

Time-changed Brownian motion and option pricing Time-changed Brownian motion and option pricing Peter Hieber Chair of Mathematical Finance, TU Munich 6th AMaMeF Warsaw, June 13th 2013 Partially joint with Marcos Escobar (RU Toronto), Matthias Scherer

More information

Extended Libor Models and Their Calibration

Extended Libor Models and Their Calibration Extended Libor Models and Their Calibration Denis Belomestny Weierstraß Institute Berlin Vienna, 16 November 2007 Denis Belomestny (WIAS) Extended Libor Models and Their Calibration Vienna, 16 November

More information

MLEMVD: A R Package for Maximum Likelihood Estimation of Multivariate Diffusion Models

MLEMVD: A R Package for Maximum Likelihood Estimation of Multivariate Diffusion Models MLEMVD: A R Package for Maximum Likelihood Estimation of Multivariate Diffusion Models Matthew Dixon and Tao Wu 1 Illinois Institute of Technology May 19th 2017 1 https://papers.ssrn.com/sol3/papers.cfm?abstract

More information

Weierstrass Institute for Applied Analysis and Stochastics Maximum likelihood estimation for jump diffusions

Weierstrass Institute for Applied Analysis and Stochastics Maximum likelihood estimation for jump diffusions Weierstrass Institute for Applied Analysis and Stochastics Maximum likelihood estimation for jump diffusions Hilmar Mai Mohrenstrasse 39 1117 Berlin Germany Tel. +49 3 2372 www.wias-berlin.de Haindorf

More information

The stochastic calculus

The stochastic calculus Gdansk A schedule of the lecture Stochastic differential equations Ito calculus, Ito process Ornstein - Uhlenbeck (OU) process Heston model Stopping time for OU process Stochastic differential equations

More information

Parametric Inference and Dynamic State Recovery from Option Panels. Nicola Fusari

Parametric Inference and Dynamic State Recovery from Option Panels. Nicola Fusari Parametric Inference and Dynamic State Recovery from Option Panels Nicola Fusari Joint work with Torben G. Andersen and Viktor Todorov July 2012 Motivation Under realistic assumptions derivatives are nonredundant

More information

Estimating the Greeks

Estimating the Greeks IEOR E4703: Monte-Carlo Simulation Columbia University Estimating the Greeks c 207 by Martin Haugh In these lecture notes we discuss the use of Monte-Carlo simulation for the estimation of sensitivities

More information

On modelling of electricity spot price

On modelling of electricity spot price , Rüdiger Kiesel and Fred Espen Benth Institute of Energy Trading and Financial Services University of Duisburg-Essen Centre of Mathematics for Applications, University of Oslo 25. August 2010 Introduction

More information

Equity correlations implied by index options: estimation and model uncertainty analysis

Equity correlations implied by index options: estimation and model uncertainty analysis 1/18 : estimation and model analysis, EDHEC Business School (joint work with Rama COT) Modeling and managing financial risks Paris, 10 13 January 2011 2/18 Outline 1 2 of multi-asset models Solution to

More information

AMH4 - ADVANCED OPTION PRICING. Contents

AMH4 - ADVANCED OPTION PRICING. Contents AMH4 - ADVANCED OPTION PRICING ANDREW TULLOCH Contents 1. Theory of Option Pricing 2 2. Black-Scholes PDE Method 4 3. Martingale method 4 4. Monte Carlo methods 5 4.1. Method of antithetic variances 5

More information

Stochastic modelling of electricity markets Pricing Forwards and Swaps

Stochastic modelling of electricity markets Pricing Forwards and Swaps Stochastic modelling of electricity markets Pricing Forwards and Swaps Jhonny Gonzalez School of Mathematics The University of Manchester Magical books project August 23, 2012 Clip for this slide Pricing

More information

Optimally Thresholded Realized Power Variations for Lévy Jump Diffusion Models

Optimally Thresholded Realized Power Variations for Lévy Jump Diffusion Models Optimally Thresholded Realized Power Variations for Lévy Jump Diffusion Models José E. Figueroa-López 1 1 Department of Statistics Purdue University University of Missouri-Kansas City Department of Mathematics

More information

Limit Theorems for the Empirical Distribution Function of Scaled Increments of Itô Semimartingales at high frequencies

Limit Theorems for the Empirical Distribution Function of Scaled Increments of Itô Semimartingales at high frequencies Limit Theorems for the Empirical Distribution Function of Scaled Increments of Itô Semimartingales at high frequencies George Tauchen Duke University Viktor Todorov Northwestern University 2013 Motivation

More information

"Pricing Exotic Options using Strong Convergence Properties

Pricing Exotic Options using Strong Convergence Properties Fourth Oxford / Princeton Workshop on Financial Mathematics "Pricing Exotic Options using Strong Convergence Properties Klaus E. Schmitz Abe schmitz@maths.ox.ac.uk www.maths.ox.ac.uk/~schmitz Prof. Mike

More information

Lecture Note 8 of Bus 41202, Spring 2017: Stochastic Diffusion Equation & Option Pricing

Lecture Note 8 of Bus 41202, Spring 2017: Stochastic Diffusion Equation & Option Pricing Lecture Note 8 of Bus 41202, Spring 2017: Stochastic Diffusion Equation & Option Pricing We shall go over this note quickly due to time constraints. Key concept: Ito s lemma Stock Options: A contract giving

More information

Rohini Kumar. Statistics and Applied Probability, UCSB (Joint work with J. Feng and J.-P. Fouque)

Rohini Kumar. Statistics and Applied Probability, UCSB (Joint work with J. Feng and J.-P. Fouque) Small time asymptotics for fast mean-reverting stochastic volatility models Statistics and Applied Probability, UCSB (Joint work with J. Feng and J.-P. Fouque) March 11, 2011 Frontier Probability Days,

More information

Asset Pricing Models with Underlying Time-varying Lévy Processes

Asset Pricing Models with Underlying Time-varying Lévy Processes Asset Pricing Models with Underlying Time-varying Lévy Processes Stochastics & Computational Finance 2015 Xuecan CUI Jang SCHILTZ University of Luxembourg July 9, 2015 Xuecan CUI, Jang SCHILTZ University

More information

Numerical Solution of Stochastic Differential Equations with Jumps in Finance

Numerical Solution of Stochastic Differential Equations with Jumps in Finance Numerical Solution of Stochastic Differential Equations with Jumps in Finance Eckhard Platen School of Finance and Economics and School of Mathematical Sciences University of Technology, Sydney Kloeden,

More information

Economathematics. Problem Sheet 1. Zbigniew Palmowski. Ws 2 dw s = 1 t

Economathematics. Problem Sheet 1. Zbigniew Palmowski. Ws 2 dw s = 1 t Economathematics Problem Sheet 1 Zbigniew Palmowski 1. Calculate Ee X where X is a gaussian random variable with mean µ and volatility σ >.. Verify that where W is a Wiener process. Ws dw s = 1 3 W t 3

More information

M5MF6. Advanced Methods in Derivatives Pricing

M5MF6. Advanced Methods in Derivatives Pricing Course: Setter: M5MF6 Dr Antoine Jacquier MSc EXAMINATIONS IN MATHEMATICS AND FINANCE DEPARTMENT OF MATHEMATICS April 2016 M5MF6 Advanced Methods in Derivatives Pricing Setter s signature...........................................

More information

Stochastic Dynamical Systems and SDE s. An Informal Introduction

Stochastic Dynamical Systems and SDE s. An Informal Introduction Stochastic Dynamical Systems and SDE s An Informal Introduction Olav Kallenberg Graduate Student Seminar, April 18, 2012 1 / 33 2 / 33 Simple recursion: Deterministic system, discrete time x n+1 = f (x

More information

Stochastic Modelling Unit 3: Brownian Motion and Diffusions

Stochastic Modelling Unit 3: Brownian Motion and Diffusions Stochastic Modelling Unit 3: Brownian Motion and Diffusions Russell Gerrard and Douglas Wright Cass Business School, City University, London June 2004 Contents of Unit 3 1 Introduction 2 Brownian Motion

More information

Near-expiration behavior of implied volatility for exponential Lévy models

Near-expiration behavior of implied volatility for exponential Lévy models Near-expiration behavior of implied volatility for exponential Lévy models José E. Figueroa-López 1 1 Department of Statistics Purdue University Financial Mathematics Seminar The Stevanovich Center for

More information

Investigation of Dependency between Short Rate and Transition Rate on Pension Buy-outs. Arık, A. 1 Yolcu-Okur, Y. 2 Uğur Ö. 2

Investigation of Dependency between Short Rate and Transition Rate on Pension Buy-outs. Arık, A. 1 Yolcu-Okur, Y. 2 Uğur Ö. 2 Investigation of Dependency between Short Rate and Transition Rate on Pension Buy-outs Arık, A. 1 Yolcu-Okur, Y. 2 Uğur Ö. 2 1 Hacettepe University Department of Actuarial Sciences 06800, TURKEY 2 Middle

More information

Extended Libor Models and Their Calibration

Extended Libor Models and Their Calibration Extended Libor Models and Their Calibration Denis Belomestny Weierstraß Institute Berlin Haindorf, 7 Februar 2008 Denis Belomestny (WIAS) Extended Libor Models and Their Calibration Haindorf, 7 Februar

More information

Generalized Multi-Factor Commodity Spot Price Modeling through Dynamic Cournot Resource Extraction Models

Generalized Multi-Factor Commodity Spot Price Modeling through Dynamic Cournot Resource Extraction Models Generalized Multi-Factor Commodity Spot Price Modeling through Dynamic Cournot Resource Extraction Models Bilkan Erkmen (joint work with Michael Coulon) Workshop on Stochastic Games, Equilibrium, and Applications

More information

A new approach to LIBOR modeling

A new approach to LIBOR modeling A new approach to LIBOR modeling Antonis Papapantoleon FAM TU Vienna Based on joint work with Martin Keller-Ressel and Josef Teichmann Istanbul Workshop on Mathematical Finance Istanbul, Turkey, 18 May

More information

An Analytical Approximation for Pricing VWAP Options

An Analytical Approximation for Pricing VWAP Options .... An Analytical Approximation for Pricing VWAP Options Hideharu Funahashi and Masaaki Kijima Graduate School of Social Sciences, Tokyo Metropolitan University September 4, 215 Kijima (TMU Pricing of

More information

Quadratic hedging in affine stochastic volatility models

Quadratic hedging in affine stochastic volatility models Quadratic hedging in affine stochastic volatility models Jan Kallsen TU München Pittsburgh, February 20, 2006 (based on joint work with F. Hubalek, L. Krawczyk, A. Pauwels) 1 Hedging problem S t = S 0

More information

Portability, salary and asset price risk: a continuous-time expected utility comparison of DB and DC pension plans

Portability, salary and asset price risk: a continuous-time expected utility comparison of DB and DC pension plans Portability, salary and asset price risk: a continuous-time expected utility comparison of DB and DC pension plans An Chen University of Ulm joint with Filip Uzelac (University of Bonn) Seminar at SWUFE,

More information

Advanced Topics in Derivative Pricing Models. Topic 4 - Variance products and volatility derivatives

Advanced Topics in Derivative Pricing Models. Topic 4 - Variance products and volatility derivatives Advanced Topics in Derivative Pricing Models Topic 4 - Variance products and volatility derivatives 4.1 Volatility trading and replication of variance swaps 4.2 Volatility swaps 4.3 Pricing of discrete

More information

Large Deviations and Stochastic Volatility with Jumps: Asymptotic Implied Volatility for Affine Models

Large Deviations and Stochastic Volatility with Jumps: Asymptotic Implied Volatility for Affine Models Large Deviations and Stochastic Volatility with Jumps: TU Berlin with A. Jaquier and A. Mijatović (Imperial College London) SIAM conference on Financial Mathematics, Minneapolis, MN July 10, 2012 Implied

More information

Continous time models and realized variance: Simulations

Continous time models and realized variance: Simulations Continous time models and realized variance: Simulations Asger Lunde Professor Department of Economics and Business Aarhus University September 26, 2016 Continuous-time Stochastic Process: SDEs Building

More information

Unified Credit-Equity Modeling

Unified Credit-Equity Modeling Unified Credit-Equity Modeling Rafael Mendoza-Arriaga Based on joint research with: Vadim Linetsky and Peter Carr The University of Texas at Austin McCombs School of Business (IROM) Recent Advancements

More information

Stochastic Volatility and Jump Modeling in Finance

Stochastic Volatility and Jump Modeling in Finance Stochastic Volatility and Jump Modeling in Finance HPCFinance 1st kick-off meeting Elisa Nicolato Aarhus University Department of Economics and Business January 21, 2013 Elisa Nicolato (Aarhus University

More information

Parametric Inference and Dynamic State Recovery from Option Panels. Torben G. Andersen

Parametric Inference and Dynamic State Recovery from Option Panels. Torben G. Andersen Parametric Inference and Dynamic State Recovery from Option Panels Torben G. Andersen Joint work with Nicola Fusari and Viktor Todorov The Third International Conference High-Frequency Data Analysis in

More information

1.1 Basic Financial Derivatives: Forward Contracts and Options

1.1 Basic Financial Derivatives: Forward Contracts and Options Chapter 1 Preliminaries 1.1 Basic Financial Derivatives: Forward Contracts and Options A derivative is a financial instrument whose value depends on the values of other, more basic underlying variables

More information

Chapter 3: Black-Scholes Equation and Its Numerical Evaluation

Chapter 3: Black-Scholes Equation and Its Numerical Evaluation Chapter 3: Black-Scholes Equation and Its Numerical Evaluation 3.1 Itô Integral 3.1.1 Convergence in the Mean and Stieltjes Integral Definition 3.1 (Convergence in the Mean) A sequence {X n } n ln of random

More information

Analytical Option Pricing under an Asymmetrically Displaced Double Gamma Jump-Diffusion Model

Analytical Option Pricing under an Asymmetrically Displaced Double Gamma Jump-Diffusion Model Analytical Option Pricing under an Asymmetrically Displaced Double Gamma Jump-Diffusion Model Advances in Computational Economics and Finance Univerity of Zürich, Switzerland Matthias Thul 1 Ally Quan

More information

Mgr. Jakub Petrásek 1. May 4, 2009

Mgr. Jakub Petrásek 1. May 4, 2009 Dissertation Report - First Steps Petrásek 1 2 1 Department of Probability and Mathematical Statistics, Charles University email:petrasek@karlin.mff.cuni.cz 2 RSJ Invest a.s., Department of Probability

More information

SADDLEPOINT APPROXIMATIONS TO OPTION PRICES 1. By L. C. G. Rogers and O. Zane University of Bath and First Chicago NBD

SADDLEPOINT APPROXIMATIONS TO OPTION PRICES 1. By L. C. G. Rogers and O. Zane University of Bath and First Chicago NBD The Annals of Applied Probability 1999, Vol. 9, No. 2, 493 53 SADDLEPOINT APPROXIMATIONS TO OPTION PRICES 1 By L. C. G. Rogers and O. Zane University of Bath and First Chicago NBD The use of saddlepoint

More information

Chapter 15: Jump Processes and Incomplete Markets. 1 Jumps as One Explanation of Incomplete Markets

Chapter 15: Jump Processes and Incomplete Markets. 1 Jumps as One Explanation of Incomplete Markets Chapter 5: Jump Processes and Incomplete Markets Jumps as One Explanation of Incomplete Markets It is easy to argue that Brownian motion paths cannot model actual stock price movements properly in reality,

More information

Constructing Markov models for barrier options

Constructing Markov models for barrier options Constructing Markov models for barrier options Gerard Brunick joint work with Steven Shreve Department of Mathematics University of Texas at Austin Nov. 14 th, 2009 3 rd Western Conference on Mathematical

More information

Point Estimators. STATISTICS Lecture no. 10. Department of Econometrics FEM UO Brno office 69a, tel

Point Estimators. STATISTICS Lecture no. 10. Department of Econometrics FEM UO Brno office 69a, tel STATISTICS Lecture no. 10 Department of Econometrics FEM UO Brno office 69a, tel. 973 442029 email:jiri.neubauer@unob.cz 8. 12. 2009 Introduction Suppose that we manufacture lightbulbs and we want to state

More information

Normal Inverse Gaussian (NIG) Process

Normal Inverse Gaussian (NIG) Process With Applications in Mathematical Finance The Mathematical and Computational Finance Laboratory - Lunch at the Lab March 26, 2009 1 Limitations of Gaussian Driven Processes Background and Definition IG

More information

Lattice (Binomial Trees) Version 1.2

Lattice (Binomial Trees) Version 1.2 Lattice (Binomial Trees) Version 1. 1 Introduction This plug-in implements different binomial trees approximations for pricing contingent claims and allows Fairmat to use some of the most popular binomial

More information

Fourier Space Time-stepping Method for Option Pricing with Lévy Processes

Fourier Space Time-stepping Method for Option Pricing with Lévy Processes FST method Extensions Indifference pricing Fourier Space Time-stepping Method for Option Pricing with Lévy Processes Vladimir Surkov University of Toronto Computational Methods in Finance Conference University

More information

Logarithmic derivatives of densities for jump processes

Logarithmic derivatives of densities for jump processes Logarithmic derivatives of densities for jump processes Atsushi AKEUCHI Osaka City University (JAPAN) June 3, 29 City University of Hong Kong Workshop on Stochastic Analysis and Finance (June 29 - July

More information

Estimation of Stochastic Volatility Models with Implied. Volatility Indices and Pricing of Straddle Option

Estimation of Stochastic Volatility Models with Implied. Volatility Indices and Pricing of Straddle Option Estimation of Stochastic Volatility Models with Implied Volatility Indices and Pricing of Straddle Option Yue Peng Steven C. J. Simon June 14, 29 Abstract Recent market turmoil has made it clear that modelling

More information

Short-time asymptotics for ATM option prices under tempered stable processes

Short-time asymptotics for ATM option prices under tempered stable processes Short-time asymptotics for ATM option prices under tempered stable processes José E. Figueroa-López 1 1 Department of Statistics Purdue University Probability Seminar Purdue University Oct. 30, 2012 Joint

More information

Rough Heston models: Pricing, hedging and microstructural foundations

Rough Heston models: Pricing, hedging and microstructural foundations Rough Heston models: Pricing, hedging and microstructural foundations Omar El Euch 1, Jim Gatheral 2 and Mathieu Rosenbaum 1 1 École Polytechnique, 2 City University of New York 7 November 2017 O. El Euch,

More information

Numerical Solution of Stochastic Differential Equations with Jumps in Finance

Numerical Solution of Stochastic Differential Equations with Jumps in Finance Numerical Solution of Stochastic Differential Equations with Jumps in Finance Eckhard Platen School of Finance and Economics and School of Mathematical Sciences University of Technology, Sydney Kloeden,

More information

Pricing Variance Swaps on Time-Changed Lévy Processes

Pricing Variance Swaps on Time-Changed Lévy Processes Pricing Variance Swaps on Time-Changed Lévy Processes ICBI Global Derivatives Volatility and Correlation Summit April 27, 2009 Peter Carr Bloomberg/ NYU Courant pcarr4@bloomberg.com Joint with Roger Lee

More information

1 The continuous time limit

1 The continuous time limit Derivative Securities, Courant Institute, Fall 2008 http://www.math.nyu.edu/faculty/goodman/teaching/derivsec08/index.html Jonathan Goodman and Keith Lewis Supplementary notes and comments, Section 3 1

More information

Optimally Thresholded Realized Power Variations for Stochastic Volatility Models with Jumps

Optimally Thresholded Realized Power Variations for Stochastic Volatility Models with Jumps Optimally Thresholded Realized Power Variations for Stochastic Volatility Models with Jumps José E. Figueroa-López 1 1 Department of Mathematics Washington University ISI 2015: 60th World Statistics Conference

More information

Numerical Methods for Pricing Energy Derivatives, including Swing Options, in the Presence of Jumps

Numerical Methods for Pricing Energy Derivatives, including Swing Options, in the Presence of Jumps Numerical Methods for Pricing Energy Derivatives, including Swing Options, in the Presence of Jumps, Senior Quantitative Analyst Motivation: Swing Options An electricity or gas SUPPLIER needs to be capable,

More information

3.1 Itô s Lemma for Continuous Stochastic Variables

3.1 Itô s Lemma for Continuous Stochastic Variables Lecture 3 Log Normal Distribution 3.1 Itô s Lemma for Continuous Stochastic Variables Mathematical Finance is about pricing (or valuing) financial contracts, and in particular those contracts which depend

More information

Linearity-Generating Processes, Unspanned Stochastic Volatility, and Interest-Rate Option Pricing

Linearity-Generating Processes, Unspanned Stochastic Volatility, and Interest-Rate Option Pricing Linearity-Generating Processes, Unspanned Stochastic Volatility, and Interest-Rate Option Pricing Liuren Wu, Baruch College Joint work with Peter Carr and Xavier Gabaix at New York University Board of

More information

Volatility. Roberto Renò. 2 March 2010 / Scuola Normale Superiore. Dipartimento di Economia Politica Università di Siena

Volatility. Roberto Renò. 2 March 2010 / Scuola Normale Superiore. Dipartimento di Economia Politica Università di Siena Dipartimento di Economia Politica Università di Siena 2 March 2010 / Scuola Normale Superiore What is? The definition of volatility may vary wildly around the idea of the standard deviation of price movements

More information

Monte Carlo Simulations

Monte Carlo Simulations Monte Carlo Simulations Lecture 1 December 7, 2014 Outline Monte Carlo Methods Monte Carlo methods simulate the random behavior underlying the financial models Remember: When pricing you must simulate

More information

RISK-NEUTRAL VALUATION AND STATE SPACE FRAMEWORK. JEL Codes: C51, C61, C63, and G13

RISK-NEUTRAL VALUATION AND STATE SPACE FRAMEWORK. JEL Codes: C51, C61, C63, and G13 RISK-NEUTRAL VALUATION AND STATE SPACE FRAMEWORK JEL Codes: C51, C61, C63, and G13 Dr. Ramaprasad Bhar School of Banking and Finance The University of New South Wales Sydney 2052, AUSTRALIA Fax. +61 2

More information

A note on the existence of unique equivalent martingale measures in a Markovian setting

A note on the existence of unique equivalent martingale measures in a Markovian setting Finance Stochast. 1, 251 257 1997 c Springer-Verlag 1997 A note on the existence of unique equivalent martingale measures in a Markovian setting Tina Hviid Rydberg University of Aarhus, Department of Theoretical

More information

Computer Exercise 2 Simulation

Computer Exercise 2 Simulation Lund University with Lund Institute of Technology Valuation of Derivative Assets Centre for Mathematical Sciences, Mathematical Statistics Fall 2017 Computer Exercise 2 Simulation This lab deals with pricing

More information

The Use of Importance Sampling to Speed Up Stochastic Volatility Simulations

The Use of Importance Sampling to Speed Up Stochastic Volatility Simulations The Use of Importance Sampling to Speed Up Stochastic Volatility Simulations Stan Stilger June 6, 1 Fouque and Tullie use importance sampling for variance reduction in stochastic volatility simulations.

More information

Equity Default Swaps under the Jump-to-Default Extended CEV Model

Equity Default Swaps under the Jump-to-Default Extended CEV Model Equity Default Swaps under the Jump-to-Default Extended CEV Model Rafael Mendoza-Arriaga Northwestern University Department of Industrial Engineering and Management Sciences Presentation of Paper to be

More information

Sensitivity Analysis on Long-term Cash flows

Sensitivity Analysis on Long-term Cash flows Sensitivity Analysis on Long-term Cash flows Hyungbin Park Worcester Polytechnic Institute 19 March 2016 Eastern Conference on Mathematical Finance Worcester Polytechnic Institute, Worceseter, MA 1 / 49

More information

Credit Risk using Time Changed Brownian Motions

Credit Risk using Time Changed Brownian Motions Credit Risk using Time Changed Brownian Motions Tom Hurd Mathematics and Statistics McMaster University Joint work with Alexey Kuznetsov (New Brunswick) and Zhuowei Zhou (Mac) 2nd Princeton Credit Conference

More information

Parameter estimation of diffusion models from discrete observations

Parameter estimation of diffusion models from discrete observations 221 Parameter estimation of diffusion models from discrete observations Miljenko Huzak Abstract. A short review of diffusion parameter estimations methods from discrete observations is presented. The applicability

More information

Introduction to Affine Processes. Applications to Mathematical Finance

Introduction to Affine Processes. Applications to Mathematical Finance and Its Applications to Mathematical Finance Department of Mathematical Science, KAIST Workshop for Young Mathematicians in Korea, 2010 Outline Motivation 1 Motivation 2 Preliminary : Stochastic Calculus

More information

Monte Carlo Simulation of Stochastic Processes

Monte Carlo Simulation of Stochastic Processes Monte Carlo Simulation of Stochastic Processes Last update: January 10th, 2004. In this section is presented the steps to perform the simulation of the main stochastic processes used in real options applications,

More information

Self-Exciting Corporate Defaults: Contagion or Frailty?

Self-Exciting Corporate Defaults: Contagion or Frailty? 1 Self-Exciting Corporate Defaults: Contagion or Frailty? Kay Giesecke CreditLab Stanford University giesecke@stanford.edu www.stanford.edu/ giesecke Joint work with Shahriar Azizpour, Credit Suisse Self-Exciting

More information

A Continuity Correction under Jump-Diffusion Models with Applications in Finance

A Continuity Correction under Jump-Diffusion Models with Applications in Finance A Continuity Correction under Jump-Diffusion Models with Applications in Finance Cheng-Der Fuh 1, Sheng-Feng Luo 2 and Ju-Fang Yen 3 1 Institute of Statistical Science, Academia Sinica, and Graduate Institute

More information

Pricing and Modelling in Electricity Markets

Pricing and Modelling in Electricity Markets Pricing and Modelling in Electricity Markets Ben Hambly Mathematical Institute University of Oxford Pricing and Modelling in Electricity Markets p. 1 Electricity prices Over the past 20 years a number

More information

On the Ross recovery under the single-factor spot rate model

On the Ross recovery under the single-factor spot rate model .... On the Ross recovery under the single-factor spot rate model M. Kijima Tokyo Metropolitan University 11/08/2016 Kijima (TMU) Ross Recovery SMU @ August 11, 2016 1 / 35 Plan of My Talk..1 Introduction:

More information

Slides 4. Matthieu Gomez Fall 2017

Slides 4. Matthieu Gomez Fall 2017 Slides 4 Matthieu Gomez Fall 2017 How to Compute Stationary Distribution of a Diffusion? Kolmogorov Forward Take a diffusion process dx t = µ(x t )dt + σ(x t )dz t How does the density of x t evolves?

More information

Int. Statistical Inst.: Proc. 58th World Statistical Congress, 2011, Dublin (Session CPS001) p approach

Int. Statistical Inst.: Proc. 58th World Statistical Congress, 2011, Dublin (Session CPS001) p approach Int. Statistical Inst.: Proc. 58th World Statistical Congress, 2011, Dublin (Session CPS001) p.5901 What drives short rate dynamics? approach A functional gradient descent Audrino, Francesco University

More information

THE MARTINGALE METHOD DEMYSTIFIED

THE MARTINGALE METHOD DEMYSTIFIED THE MARTINGALE METHOD DEMYSTIFIED SIMON ELLERSGAARD NIELSEN Abstract. We consider the nitty gritty of the martingale approach to option pricing. These notes are largely based upon Björk s Arbitrage Theory

More information

Control. Econometric Day Mgr. Jakub Petrásek 1. Supervisor: RSJ Invest a.s.,

Control. Econometric Day Mgr. Jakub Petrásek 1. Supervisor: RSJ Invest a.s., and and Econometric Day 2009 Petrásek 1 2 1 Department of Probability and Mathematical Statistics, Charles University, RSJ Invest a.s., email:petrasek@karlin.mff.cuni.cz 2 Department of Probability and

More information

Rough volatility models: When population processes become a new tool for trading and risk management

Rough volatility models: When population processes become a new tool for trading and risk management Rough volatility models: When population processes become a new tool for trading and risk management Omar El Euch and Mathieu Rosenbaum École Polytechnique 4 October 2017 Omar El Euch and Mathieu Rosenbaum

More information

Bluff Your Way Through Black-Scholes

Bluff Your Way Through Black-Scholes Bluff our Way Through Black-Scholes Saurav Sen December 000 Contents What is Black-Scholes?.............................. 1 The Classical Black-Scholes Model....................... 1 Some Useful Background

More information

Two hours. To be supplied by the Examinations Office: Mathematical Formula Tables and Statistical Tables THE UNIVERSITY OF MANCHESTER

Two hours. To be supplied by the Examinations Office: Mathematical Formula Tables and Statistical Tables THE UNIVERSITY OF MANCHESTER Two hours MATH20802 To be supplied by the Examinations Office: Mathematical Formula Tables and Statistical Tables THE UNIVERSITY OF MANCHESTER STATISTICAL METHODS Answer any FOUR of the SIX questions.

More information

Stochastic Volatility Modeling

Stochastic Volatility Modeling Stochastic Volatility Modeling Jean-Pierre Fouque University of California Santa Barbara 28 Daiwa Lecture Series July 29 - August 1, 28 Kyoto University, Kyoto 1 References: Derivatives in Financial Markets

More information

QI SHANG: General Equilibrium Analysis of Portfolio Benchmarking

QI SHANG: General Equilibrium Analysis of Portfolio Benchmarking General Equilibrium Analysis of Portfolio Benchmarking QI SHANG 23/10/2008 Introduction The Model Equilibrium Discussion of Results Conclusion Introduction This paper studies the equilibrium effect of

More information

Beyond Black-Scholes

Beyond Black-Scholes IEOR E477: Financial Engineering: Continuous-Time Models Fall 21 c 21 by Martin Haugh Beyond Black-Scholes These notes provide an introduction to some of the models that have been proposed as replacements

More information

Optimum Thresholding for Semimartingales with Lévy Jumps under the mean-square error

Optimum Thresholding for Semimartingales with Lévy Jumps under the mean-square error Optimum Thresholding for Semimartingales with Lévy Jumps under the mean-square error José E. Figueroa-López Department of Mathematics Washington University in St. Louis Spring Central Sectional Meeting

More information

Pricing Variance Swaps under Stochastic Volatility Model with Regime Switching - Discrete Observations Case

Pricing Variance Swaps under Stochastic Volatility Model with Regime Switching - Discrete Observations Case Pricing Variance Swaps under Stochastic Volatility Model with Regime Switching - Discrete Observations Case Guang-Hua Lian Collaboration with Robert Elliott University of Adelaide Feb. 2, 2011 Robert Elliott,

More information

Option Pricing Modeling Overview

Option Pricing Modeling Overview Option Pricing Modeling Overview Liuren Wu Zicklin School of Business, Baruch College Options Markets Liuren Wu (Baruch) Stochastic time changes Options Markets 1 / 11 What is the purpose of building a

More information

QUANTITATIVE FINANCE RESEARCH CENTRE. Application of Maximum Likelihood Estimation to Stochastic Short Rate Models

QUANTITATIVE FINANCE RESEARCH CENTRE. Application of Maximum Likelihood Estimation to Stochastic Short Rate Models QUANTITATIVE FINANCE RESEARCH CENTRE QUANTITATIVE F INANCE RESEARCH CENTRE QUANTITATIVE FINANCE RESEARCH CENTRE Research Paper 361 July 2015 Application of Maximum Likelihood Estimation to Stochastic Short

More information

Computational Finance

Computational Finance Path Dependent Options Computational Finance School of Mathematics 2018 The Random Walk One of the main assumption of the Black-Scholes framework is that the underlying stock price follows a random walk

More information