QuantLib: a free/open-source library for quantitative finance
Fully annotated sources - version 1.32
Loading...
Searching...
No Matches
quantoforwardvanillaoption.cpp
1/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
3/*
4 Copyright (C) 2003 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#include <ql/instruments/quantoforwardvanillaoption.hpp>
22
23namespace QuantLib {
24
26 Real moneyness,
27 const Date& resetDate,
28 const ext::shared_ptr<StrikedTypePayoff>& payoff,
29 const ext::shared_ptr<Exercise>& exercise)
30 : ForwardVanillaOption(moneyness, resetDate, payoff, exercise) {}
31
33 calculate();
34 QL_REQUIRE(qvega_ != Null<Real>(),
35 "exchange rate vega calculation failed");
36 return qvega_;
37 }
38
40 calculate();
41 QL_REQUIRE(qrho_ != Null<Real>(),
42 "foreign interest rate rho calculation failed");
43 return qrho_;
44 }
45
47 calculate();
48 QL_REQUIRE(qlambda_ != Null<Real>(),
49 "quanto correlation sensitivity calculation failed");
50 return qlambda_;
51 }
52
55 qvega_ = qrho_ = qlambda_ = 0.0;
56 }
57
59 const PricingEngine::results* r) const {
61 const auto* quantoResults = dynamic_cast<const QuantoForwardVanillaOption::results*>(r);
62 QL_ENSURE(quantoResults != nullptr, "no quanto results returned from pricing engine");
63 qrho_ = quantoResults->qrho;
64 qvega_ = quantoResults->qvega;
65 qlambda_ = quantoResults->qlambda;
66 }
67
68}
69
Concrete date class.
Definition: date.hpp:125
Forward version of a vanilla option
void fetchResults(const PricingEngine::results *) const override
void calculate() const override
Definition: instrument.hpp:129
virtual void setupExpired() const
Definition: instrument.hpp:140
template class providing a null value for a given type.
Definition: null.hpp:76
QuantoForwardVanillaOption(Real moneyness, const Date &resetDate, const ext::shared_ptr< StrikedTypePayoff > &, const ext::shared_ptr< Exercise > &)
void fetchResults(const PricingEngine::results *) const override
Results from quanto option calculation
QL_REAL Real
real number
Definition: types.hpp:50
Definition: any.hpp:35