QuantLib: a free/open-source library for quantitative finance
fully annotated source code - version 1.34
Loading...
Searching...
No Matches
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
30
31namespace 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 */
51 public:
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
Asian option on a single asset.
Black-Scholes processes.
Pricing engine for European continuous geometric average price Asian.
ext::shared_ptr< GeneralizedBlackScholesProcess > process_
Continuous-averaging Asian engine base class.
Definition: any.hpp:35