|
QuantLib: a free/open-source library for quantitative finance
fully annotated source code - version 1.38
|
Svi smile interpolation between discrete volatility points. More...
#include <sviinterpolation.hpp>
Inheritance diagram for SviInterpolation:
Collaboration diagram for SviInterpolation:Public Member Functions | |
| template<class I1 , class I2 > | |
| SviInterpolation (const I1 &xBegin, const I1 &xEnd, const I2 &yBegin, Time t, const Real &forward, Real a, Real b, Real sigma, Real rho, Real m, bool aIsFixed, bool bIsFixed, bool sigmaIsFixed, bool rhoIsFixed, bool mIsFixed, bool vegaWeighted=true, const ext::shared_ptr< EndCriteria > &endCriteria=ext::shared_ptr< EndCriteria >(), const ext::shared_ptr< OptimizationMethod > &optMethod=ext::shared_ptr< OptimizationMethod >(), const Real errorAccept=0.0020, const bool useMaxError=false, const Size maxGuesses=50) | |
| Real | expiry () const |
| Real | forward () const |
| Real | a () const |
| Real | b () const |
| Real | sigma () const |
| Real | rho () const |
| Real | m () const |
| Real | rmsError () const |
| Real | maxError () const |
| const std::vector< Real > & | interpolationWeights () const |
| EndCriteria::Type | endCriteria () |
Public Member Functions inherited from Interpolation | |
| Interpolation ()=default | |
| ~Interpolation () override=default | |
| bool | empty () const |
| Real | operator() (Real x, bool allowExtrapolation=false) const |
| Real | primitive (Real x, bool allowExtrapolation=false) const |
| Real | derivative (Real x, bool allowExtrapolation=false) const |
| Real | secondDerivative (Real x, bool allowExtrapolation=false) const |
| Real | xMin () const |
| Real | xMax () const |
| bool | isInRange (Real x) const |
| void | update () |
Public Member Functions inherited from Extrapolator | |
| Extrapolator ()=default | |
| virtual | ~Extrapolator ()=default |
| void | enableExtrapolation (bool b=true) |
| enable extrapolation in subsequent calls More... | |
| void | disableExtrapolation (bool b=true) |
| disable extrapolation in subsequent calls More... | |
| bool | allowsExtrapolation () const |
| tells whether extrapolation is enabled More... | |
Private Member Functions | |
| const detail::XABRCoeffHolder< detail::SviSpecs > & | coeffs () const |
Additional Inherited Members | |
Protected Member Functions inherited from Interpolation | |
| void | checkRange (Real x, bool extrapolate) const |
Protected Attributes inherited from Interpolation | |
| ext::shared_ptr< Impl > | impl_ |
Svi smile interpolation between discrete volatility points.
Definition at line 144 of file sviinterpolation.hpp.
| SviInterpolation | ( | const I1 & | xBegin, |
| const I1 & | xEnd, | ||
| const I2 & | yBegin, | ||
| Time | t, | ||
| const Real & | forward, | ||
| Real | a, | ||
| Real | b, | ||
| Real | sigma, | ||
| Real | rho, | ||
| Real | m, | ||
| bool | aIsFixed, | ||
| bool | bIsFixed, | ||
| bool | sigmaIsFixed, | ||
| bool | rhoIsFixed, | ||
| bool | mIsFixed, | ||
| bool | vegaWeighted = true, |
||
| const ext::shared_ptr< EndCriteria > & | endCriteria = ext::shared_ptr<EndCriteria>(), |
||
| const ext::shared_ptr< OptimizationMethod > & | optMethod = ext::shared_ptr<OptimizationMethod>(), |
||
| const Real | errorAccept = 0.0020, |
||
| const bool | useMaxError = false, |
||
| const Size | maxGuesses = 50 |
||
| ) |
| Real expiry | ( | ) | const |
| Real forward | ( | ) | const |
Definition at line 171 of file sviinterpolation.hpp.
Here is the call graph for this function:
Here is the caller graph for this function:| Real a | ( | ) | const |
Definition at line 172 of file sviinterpolation.hpp.
Here is the call graph for this function:
Here is the caller graph for this function:| Real b | ( | ) | const |
Definition at line 173 of file sviinterpolation.hpp.
Here is the call graph for this function:
Here is the caller graph for this function:| Real sigma | ( | ) | const |
Definition at line 174 of file sviinterpolation.hpp.
Here is the call graph for this function:
Here is the caller graph for this function:| Real rho | ( | ) | const |
Definition at line 175 of file sviinterpolation.hpp.
Here is the call graph for this function:
Here is the caller graph for this function:| Real m | ( | ) | const |
Definition at line 176 of file sviinterpolation.hpp.
Here is the call graph for this function:
Here is the caller graph for this function:| Real rmsError | ( | ) | const |
| Real maxError | ( | ) | const |
| const std::vector< Real > & interpolationWeights | ( | ) | const |
| EndCriteria::Type endCriteria | ( | ) |
Definition at line 182 of file sviinterpolation.hpp.
Here is the call graph for this function:
Here is the caller graph for this function:
|
private |