QuantLib: a free/open-source library for quantitative finance
fully annotated source code - version 1.34
Loading...
Searching...
No Matches
analytic_discr_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_discr_geom_av_price.hpp
22 \brief Analytic engine for discrete geometric average price Asian
23*/
24
25#ifndef quantlib_analytic_discrete_geometric_average_price_asian_engine_hpp
26#define quantlib_analytic_discrete_geometric_average_price_asian_engine_hpp
27
30
31namespace QuantLib {
32
33 //! Pricing engine for European discrete geometric average price Asian
34 /*! This class implements a discrete geometric average price Asian
35 option, with European exercise. The formula is from "Asian
36 Option", E. Levy (1997) in "Exotic Options: The State of the
37 Art", edited by L. Clewlow, C. Strickland, pag 65-97
38
39 \todo implement correct theta, rho, and dividend-rho calculation
40
41 \test
42 - the correctness of the returned value is tested by
43 reproducing results available in literature.
44 - the correctness of the available greeks is tested against
45 numerical calculations.
46
47 \ingroup asianengines
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 discrete geometric average price Asian.
ext::shared_ptr< GeneralizedBlackScholesProcess > process_
Discrete-averaging Asian engine base class.
Definition: any.hpp:35