QuantLib
: a free/open-source library for quantitative finance
fully annotated source code - version 1.34
Loading...
Searching...
No Matches
ql
pricingengines
asian
analytic_cont_geom_av_price.hpp
Go to the documentation of this file.
1
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
3
/*
4
Copyright (C) 2003, 2004 Ferdinando Ametrano
5
Copyright (C) 2007 StatPro Italia srl
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
21
/*! \file analytic_cont_geom_av_price.hpp
22
\brief Analytic engine for continuous geometric average price Asian
23
*/
24
25
#ifndef quantlib_analytic_continuous_geometric_average_price_asian_engine_hpp
26
#define quantlib_analytic_continuous_geometric_average_price_asian_engine_hpp
27
28
#include <
ql/instruments/asianoption.hpp
>
29
#include <
ql/processes/blackscholesprocess.hpp
>
30
31
namespace
QuantLib
{
32
33
//! Pricing engine for European continuous geometric average price Asian
34
/*! This class implements a continuous geometric average price
35
Asian option with European exercise. The formula is from
36
"Option Pricing Formulas", E. G. Haug (1997) pag 96-97.
37
38
\ingroup asianengines
39
40
\test
41
- the correctness of the returned value is tested by
42
reproducing results available in literature, and results
43
obtained using a discrete average approximation.
44
- the correctness of the returned greeks is tested by
45
reproducing numerical derivatives.
46
47
\todo handle seasoned options
48
*/
49
class
AnalyticContinuousGeometricAveragePriceAsianEngine
50
:
public
ContinuousAveragingAsianOption::engine
{
51
public
:
52
AnalyticContinuousGeometricAveragePriceAsianEngine
(
53
ext::shared_ptr<GeneralizedBlackScholesProcess> process);
54
void
calculate
()
const override
;
55
56
private
:
57
ext::shared_ptr<GeneralizedBlackScholesProcess>
process_
;
58
};
59
60
}
61
62
63
#endif
asianoption.hpp
Asian option on a single asset.
blackscholesprocess.hpp
Black-Scholes processes.
QuantLib::AnalyticContinuousGeometricAveragePriceAsianEngine
Pricing engine for European continuous geometric average price Asian.
Definition:
analytic_cont_geom_av_price.hpp:50
QuantLib::AnalyticContinuousGeometricAveragePriceAsianEngine::calculate
void calculate() const override
Definition:
analytic_cont_geom_av_price.cpp:36
QuantLib::AnalyticContinuousGeometricAveragePriceAsianEngine::process_
ext::shared_ptr< GeneralizedBlackScholesProcess > process_
Definition:
analytic_cont_geom_av_price.hpp:57
QuantLib::ContinuousAveragingAsianOption::engine
Continuous-averaging Asian engine base class.
Definition:
asianoption.hpp:131
QuantLib
Definition:
any.hpp:35
Generated by
Doxygen
1.9.5