Coverage Report

Created: 2026-08-14 07:10

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/quantlib/ql/methods/finitedifferences/utilities/fdmquantohelper.cpp
Line
Count
Source
1
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
3
/*
4
 Copyright (C) 2008, 2009 Ralph Schreyer
5
 Copyright (C) 2008, 2009 Klaus Spanderen
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
 <https://www.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 fdmquantohelper.cpp
22
\brief quanto helper to store market data needed for the quanto adjustment.
23
*/
24
25
#include <ql/methods/finitedifferences/utilities/fdmquantohelper.hpp>
26
#include <ql/termstructures/volatility/equityfx/blackvoltermstructure.hpp>
27
#include <ql/termstructures/yieldtermstructure.hpp>
28
#include <algorithm>
29
#include <utility>
30
31
namespace QuantLib {
32
33
    FdmQuantoHelper::FdmQuantoHelper(ext::shared_ptr<YieldTermStructure> rTS,
34
                                     ext::shared_ptr<YieldTermStructure> fTS,
35
                                     ext::shared_ptr<BlackVolTermStructure> fxVolTS,
36
                                     Real equityFxCorrelation,
37
                                     Real exchRateATMlevel)
38
0
    : rTS_(std::move(rTS)), fTS_(std::move(fTS)), fxVolTS_(std::move(fxVolTS)),
39
0
      equityFxCorrelation_(equityFxCorrelation), exchRateATMlevel_(exchRateATMlevel) {}
40
41
    Rate FdmQuantoHelper::quantoAdjustment(Volatility equityVol,
42
0
                                                 Time t1, Time t2) const {
43
0
        const Rate rDomestic = rTS_->forwardRate(t1, t2, Continuous).rate();
44
0
        const Rate rForeign  = fTS_->forwardRate(t1, t2, Continuous).rate();
45
0
        const Volatility fxVol
46
0
            = fxVolTS_->blackForwardVol(t1, t2, exchRateATMlevel_);
47
48
0
        return rDomestic - rForeign + equityVol*fxVol*equityFxCorrelation_;
49
0
    }
50
51
    Array FdmQuantoHelper::quantoAdjustment(
52
0
        const Array& equityVol, Time t1, Time t2) const {
53
54
0
        const Rate rDomestic = rTS_->forwardRate(t1, t2, Continuous).rate();
55
0
        const Rate rForeign  = fTS_->forwardRate(t1, t2, Continuous).rate();
56
0
        const Volatility fxVol
57
0
            = fxVolTS_->blackForwardVol(t1, t2, exchRateATMlevel_);
58
59
0
        Array retVal(equityVol.size());
60
0
        std::transform(equityVol.begin(), equityVol.end(), retVal.begin(),
61
0
                       [&](Volatility vol) {
62
0
                           return rDomestic - rForeign + vol*fxVol*equityFxCorrelation_;
63
0
                       });
64
0
        return retVal;
65
0
    }
66
}