Skip to:Content
|
Bottom
Cover image for Modeling derivatives in C++
Title:
Modeling derivatives in C++
Personal Author:
Publication Information:
New York : J. Wiley, 2005
Physical Description:
1v + CD-ROM
ISBN:
9780471654643
General Note:
Also available in compact disc version : CP 7169

Available:*

Library
Item Barcode
Call Number
Material Type
Item Category 1
Status
Searching...
30000010076846 HG6024.A3 L66 2005 Open Access Book Book
Searching...

On Order

Summary

Summary

This book is the definitive and most comprehensive guide to modeling derivatives in C++ today. Providing readers with not only the theory and math behind the models, as well as the fundamental concepts of financial engineering, but also actual robust object-oriented C++ code, this is a practical introduction to the most important derivative models used in practice today, including equity (standard and exotics including barrier, lookback, and Asian) and fixed income (bonds, caps, swaptions, swaps, credit) derivatives. The book provides complete C++ implementations for many of the most important derivatives and interest rate pricing models used on Wall Street including Hull-White, BDT, CIR, HJM, and LIBOR Market Model. London illustrates the practical and efficient implementations of these models in real-world situations and discusses the mathematical underpinnings and derivation of the models in a detailed yet accessible manner illustrated by many examples with numerical data as well as real market data. A companion CD contains quantitative libraries, tools, applications, and resources that will be of value to those doing quantitative programming and analysis in C++. Filled with practical advice and helpful tools, Modeling Derivatives in C++ will help readers succeed in understanding and implementing C++ when modeling all types of derivatives.


Author Notes

JUSTIN LONDON has analyzed and managed bank corporate loan portfolios using credit derivatives in the Asset Portfolio Management Group of a large bank in Chicago, Illinois. He has developed fixed-income and equity models for trading companies and his own quantitative consulting firm. London has written code and algorithms in C++ to price and hedge various equity and fixed-income derivatives with a focus on building interest rate models. In 1999, he founded Global Max Trading (GMT), a global online trading and financial technology company. A graduate of the University of Michigan, London has five degrees, including a BA in economics and mathematics, an MA in applied economics, and an MS in financial engineering, computer science, and mathematics, respectively.


Table of Contents

Preface
Acknowledgments
Chapter 1 Black-Scholes and Pricing Fundamentals
1.1 Forward Contracts
1.2 Black-Scholes Partial Differential Equation
1.3 Risk-Neutral Pricing
1.4 Black-Scholes and Diffusion Process Implementation
1.5 American Options
1.6 Fundamental Pricing Formulas
1.7 Change of Numeraire
1.8 Girsanov's Theorem
1.9 The Forward Measure
1.10 The Choice of Numeraire
Chapter 2 Monte Carlo Simulation
2.1 Monte Carlo
2.2 Generating Sample Paths and Normal Deviates
2.3 Generating Correlated Normal Random Variables
2.4 Quasi-Random Sequences
2.5 Variance Reduction and Control Variate Techniques
2.6 Monte Carlo Implementation
2.7 Hedge Control Variates
2.8 Path-Dependent Valuation
2.9 Brownian Bridge Technique
2.10 Jump-Diffusion Process and Constant Elasticity of Variance Diffusion Model
2.11 Object-Oriented Monte Carlo Approach
Chapter 3 Binomial Trees
3.1 Use of Binomial Trees
3.2 Cox-Ross-Rubinstein Binomial Tree
3.3 Jarrow-Rudd Binomial Tree
3.4 General Tree
3.5 Dividend Payments
3.6 American Exercise
3.7 Binomial Tree Implementation
3.8 Computing Hedge Statistics
3.9 Binomial Model with Time-Varying Volatility
3.10 Two-Variable Binomial Process
3.11 Valuation of Convertible Bonds
Chapter 4 Trinomial Trees
4.1 Use of Trinomial Trees
4.2 Jarrow-Rudd Trinomial Tree
4.3 Cox-Ross-Rubinstein Trinomial Tree
4.4 Optimal Choice of  
4.5 Trinomial Tree Implementations
4.6 Approximating Diffusion Processes with Trinomial Trees
4.7 Implied Trees
Chapter 5 Finite-Difference Methods
5.1 Explicit Difference Methods
5.2 Explicit Finite-Difference Implementation
5.3 Implicit Difference Method
5.4 LU Decomposition Method
5.5 Implicit Difference Method Implementation
5.6 Object-Oriented Finite-Difference Implementation
5.7 Iterative Methods
5.8 Crank-Nicolson Scheme
5.9 Alternating Direction Implicit Method
Chapter 6 Exotic Options
6.1 Barrier Options
6.2 Barrier Option Implementation
6.3 Asian Options
6.4 Geometric Averaging
6.5 Arithmetic Averaging
6.6 Seasoned Asian Options
6.7 Lookback Options
6.8 Implementation of Floating Lookback Option
6.9 Implementation of Fixed Lookback Option
Chapter 7 Stochastic Volatility
7.1 Implied Volatility
7.2 Volatility Skews and Smiles
7.3 Empirical Explanations
7.4 Implied Volatility Surfaces
7.5 One-Factor Models
7.6 Constant Elasticity of Variance Models
7.7 Recovering Implied Volatility Surfaces
7.8 Local Volatility Surfaces
7.9 Jump-Diffusion Models
7.10 Two-Factor Models
7.11 Hedging with Stochastic Volatility
Chapter 8 Statistical Models.8.1 Overview
8.2 Moving Average Models
8.3 Exponential Moving Average Models
8.4 Garch Models
8.5 Asymmetric Garch
8.6 Garch Models for High-Frequency Data
8.7 Estimation Problems
8.8 Garch Option Pricing Model
8.9 Garch Forecasting
Chapter 9 Stochastic Multifactor Models
9.1 Change of Measure for Independent Random Variables
9.2 Change of Measure for Correlated Random Variables
9.3 N-Dimensional Random Walks and Brownian Motion
9.4 N-Dimensional Generalized Wiener Process
9.5 Multivariate Diffusion Processes
9.6 Monte Carlo Simulation of Multivariate Diffusion Processes
9.7 N-Dimensional Lognormal Process
9.8 Ito's Lemma for Functions of Vector-Valued Diffusion Processes
9.9 Principal Component Analysis
Chapter 10 Single-Factor Interest Rate Models
10.1 Short Rate Process
10.2 Deriving the Bond Pricing Partial Differential Equation
10.3 Risk-Neutral Drift of the Short Rate
10.4 Single-Factor Models
10.5 Vasicek Model
10.6 Pricing Zero-Coupon Bonds in the Vasicek Model
10.7 Pricing European Options on Zero-Coupon Bonds with Vasicek
10.8 Hull-White Extended Vasicek Model
10.9 European Options on Coupon-Bearing Bonds
10.10 Cox-Ingersoll-Ross Model
10.11 Extended (Time-Homogenous) CIR Model
10.12 Black-Derman-Toy Short Rate Model
10.13 Black's Model to Price Caps
10.14 Black's Model to Price Swaptions
10.15 Pricing Caps, Caplets, and Swaptions
Go to:Top of Page