QuantLib: a free/open-source library for quantitative finance
Fully annotated sources - version 1.32
Loading...
Searching...
No Matches
Public Member Functions | Private Member Functions | Private Attributes | List of all members
SuoWangDoubleBarrierEngine Class Reference

Pricing engine for barrier options using analytical formulae. More...

#include <ql/experimental/barrieroption/suowangdoublebarrierengine.hpp>

+ Inheritance diagram for SuoWangDoubleBarrierEngine:
+ Collaboration diagram for SuoWangDoubleBarrierEngine:

Public Member Functions

 SuoWangDoubleBarrierEngine (ext::shared_ptr< GeneralizedBlackScholesProcess > process, int series=5)
 
void calculate () const override
 
- Public Member Functions inherited from GenericEngine< DoubleBarrierOption::arguments, DoubleBarrierOption::results >
PricingEngine::argumentsgetArguments () const override
 
const PricingEngine::resultsgetResults () const override
 
void reset () override
 
void update () override
 
- Public Member Functions inherited from PricingEngine
 ~PricingEngine () override=default
 
virtual argumentsgetArguments () const =0
 
virtual const resultsgetResults () const =0
 
virtual void reset ()=0
 
virtual void calculate () const =0
 
- Public Member Functions inherited from Observable
 Observable ()
 
 Observable (const Observable &)
 
Observableoperator= (const Observable &)
 
 Observable (Observable &&)=delete
 
Observableoperator= (Observable &&)=delete
 
virtual ~Observable ()=default
 
void notifyObservers ()
 
- Public Member Functions inherited from Observer
 Observer ()=default
 
 Observer (const Observer &)
 
Observeroperator= (const Observer &)
 
virtual ~Observer ()
 
std::pair< iterator, boolregisterWith (const ext::shared_ptr< Observable > &)
 
void registerWithObservables (const ext::shared_ptr< Observer > &)
 
Size unregisterWith (const ext::shared_ptr< Observable > &)
 
void unregisterWithAll ()
 
virtual void update ()=0
 
virtual void deepUpdate ()
 

Private Member Functions

Real strike () const
 
Time residualTime () const
 
Volatility volatility () const
 
Rate riskFreeRate () const
 
DiscountFactor riskFreeDiscount () const
 
Rate dividendYield () const
 
DiscountFactor dividendDiscount () const
 
Real D (Real X, Real lambda, Real sigma, Real T) const
 

Private Attributes

ext::shared_ptr< GeneralizedBlackScholesProcessprocess_
 
const int series_
 
CumulativeNormalDistribution f_
 

Additional Inherited Members

- Public Types inherited from Observer
typedef set_type::iterator iterator
 
- Protected Member Functions inherited from DoubleBarrierOption::engine
bool triggered (Real underlying) const
 
- Protected Attributes inherited from GenericEngine< DoubleBarrierOption::arguments, DoubleBarrierOption::results >
DoubleBarrierOption::arguments arguments_
 
DoubleBarrierOption::results results_
 

Detailed Description

Pricing engine for barrier options using analytical formulae.

The formulas are taken from "Barrier Option Pricing", Wulin Suo, Yong Wang.

Tests:
the correctness of the returned value is tested by reproducing results available in literature.

Definition at line 42 of file suowangdoublebarrierengine.hpp.

Constructor & Destructor Documentation

◆ SuoWangDoubleBarrierEngine()

SuoWangDoubleBarrierEngine ( ext::shared_ptr< GeneralizedBlackScholesProcess process,
int  series = 5 
)
explicit

Definition at line 28 of file suowangdoublebarrierengine.cpp.

+ Here is the call graph for this function:

Member Function Documentation

◆ calculate()

void calculate ( ) const
overridevirtual

Implements PricingEngine.

Definition at line 34 of file suowangdoublebarrierengine.cpp.

+ Here is the call graph for this function:

◆ strike()

Real strike ( ) const
private

Definition at line 133 of file suowangdoublebarrierengine.cpp.

+ Here is the caller graph for this function:

◆ residualTime()

Time residualTime ( ) const
private

Definition at line 140 of file suowangdoublebarrierengine.cpp.

+ Here is the caller graph for this function:

◆ volatility()

Volatility volatility ( ) const
private

Definition at line 144 of file suowangdoublebarrierengine.cpp.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ riskFreeRate()

Rate riskFreeRate ( ) const
private

Definition at line 148 of file suowangdoublebarrierengine.cpp.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ riskFreeDiscount()

DiscountFactor riskFreeDiscount ( ) const
private

Definition at line 153 of file suowangdoublebarrierengine.cpp.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ dividendYield()

Rate dividendYield ( ) const
private

Definition at line 157 of file suowangdoublebarrierengine.cpp.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ dividendDiscount()

DiscountFactor dividendDiscount ( ) const
private

Definition at line 162 of file suowangdoublebarrierengine.cpp.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ D()

Real D ( Real  X,
Real  lambda,
Real  sigma,
Real  T 
) const
private

Definition at line 166 of file suowangdoublebarrierengine.cpp.

+ Here is the caller graph for this function:

Member Data Documentation

◆ process_

ext::shared_ptr<GeneralizedBlackScholesProcess> process_
private

Definition at line 49 of file suowangdoublebarrierengine.hpp.

◆ series_

const int series_
private

Definition at line 50 of file suowangdoublebarrierengine.hpp.

◆ f_

Definition at line 51 of file suowangdoublebarrierengine.hpp.