QuantLib: a free/open-source library for quantitative finance
Fully annotated sources - version 1.32
Loading...
Searching...
No Matches
coxingersollrossprocess.hpp
1/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
3/*
4 Copyright (C) 2020 Lew Wei Hao
5 Copyright (C) 2021 Magnus Mencke
6
7 This file is part of QuantLib, a free-software/open-source library
8 for financial quantitative analysts and developers - http://quantlib.org/
9
10 QuantLib is free software: you can redistribute it and/or modify it
11 under the terms of the QuantLib license. You should have received a
12 copy of the license along with this program; if not, please email
13 <quantlib-dev@lists.sf.net>. The license is also available online at
14 <http://quantlib.org/license.shtml>.
15
16 This program is distributed in the hope that it will be useful, but WITHOUT
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18 FOR A PARTICULAR PURPOSE. See the license for more details.
19*/
20
25#ifndef quantlib_coxingersollross_process_hpp
26#define quantlib_coxingersollross_process_hpp
27
28#include <ql/stochasticprocess.hpp>
29#include <ql/math/distributions/normaldistribution.hpp>
30
31namespace QuantLib {
32
34
46 public:
47
49 Volatility vol,
50 Real x0 = 0.0,
51 Real level = 0.0);
53 Real drift(Time t, Real x) const override;
54 Real diffusion(Time t, Real x) const override;
55 Real expectation(Time t0, Real x0, Time dt) const override;
56 Real stdDeviation(Time t0, Real x0, Time dt) const override;
58 Real x0() const override;
59 Real speed() const;
60 Real volatility() const;
61 Real level() const;
62 Real variance(Time t0, Real x0, Time dt) const override;
63 Real evolve (Time t0,
64 Real x0,
65 Time dt,
66 Real dw) const override;
67 private:
70 };
71
72 // inline
73
75 return x0_;
76 }
77
79 return speed_;
80 }
81
83 return volatility_;
84 }
85
87 return level_;
88 }
89
91 return speed_ * (level_ - x);
92 }
93
95 return volatility_;
96 }
97
99 Time dt) const {
100 return level_ + (x0 - level_) * std::exp(-speed_*dt);
101 }
102
104 Time dt) const {
105 return std::sqrt(variance(t,x0,dt));
106 }
107
109 Real x0,
110 Time dt,
111 Real dw) const {
112 Real result;
113
114 const Real ex = std::exp(-speed_*dt);
115
116 const Real m = level_+(x0-level_)*ex;
117 const Real s2 = x0*volatility_*volatility_*ex/speed_*(1-ex)
118 + level_*volatility_*volatility_/(2*speed_)*(1-ex)*(1-ex);
119 const Real psi = s2/(m*m);
120
121 if (psi <= 1.5) {
122 const Real b2 = 2/psi-1+std::sqrt(2/psi*(2/psi-1));
123 const Real b = std::sqrt(b2);
124 const Real a = m/(1+b2);
125
126 result = a*(b+dw)*(b+dw);
127 }
128 else {
129 const Real p = (psi-1)/(psi+1);
130 const Real beta = (1-p)/m;
131
132 const Real u = CumulativeNormalDistribution()(dw);
133
134 result = ((u <= p) ? 0.0 : Real(std::log((1-p)/(1-u))/beta));
135 }
136
137 return result;
138 }
139
140}
141
142#endif
CoxIngersollRoss process class.
Real diffusion(Time t, Real x) const override
returns the diffusion part of the equation, i.e.
Real stdDeviation(Time t0, Real x0, Time dt) const override
Real evolve(Time t0, Real x0, Time dt, Real dw) const override
Real drift(Time t, Real x) const override
returns the drift part of the equation, i.e.
Real expectation(Time t0, Real x0, Time dt) const override
Real x0() const override
returns the initial value of the state variable
Real variance(Time t0, Real x0, Time dt) const override
Cumulative normal distribution function.
1-dimensional stochastic process
Real Time
continuous quantity with 1-year units
Definition: types.hpp:62
QL_REAL Real
real number
Definition: types.hpp:50
Real Volatility
volatility
Definition: types.hpp:78
Definition: any.hpp:35