1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2014 Peter Caspers
This file is part of QuantLib, a free-software/open-source library
for financial quantitative analysts and developers - http://quantlib.org/
QuantLib is free software: you can redistribute it and/or modify it
under the terms of the QuantLib license. You should have received a
copy of the license along with this program; if not, please email
<quantlib-dev@lists.sf.net>. The license is also available online at
<http://quantlib.org/license.shtml>.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the license for more details.
*/
#include <ql/experimental/volatility/noarbsabrsmilesection.hpp>
#include <ql/pricingengines/blackformula.hpp>
#include <ql/termstructures/volatility/sabr.hpp>
namespace QuantLib {
NoArbSabrSmileSection::NoArbSabrSmileSection(
Time timeToExpiry, Rate forward, const std::vector<Real> &sabrParams,
Real shift)
: SmileSection(timeToExpiry, DayCounter()), forward_(forward),
params_(sabrParams), shift_(shift) {
init();
}
NoArbSabrSmileSection::NoArbSabrSmileSection(
const Date &d, Rate forward, const std::vector<Real> &sabrParams,
const DayCounter &dc, Real shift)
: SmileSection(d, dc, Date()), forward_(forward), params_(sabrParams), shift_(shift) {
init();
}
void NoArbSabrSmileSection::init() {
QL_REQUIRE(params_.size() >= 4,
"sabr expects 4 parameters (alpha,beta,nu,rho) but ("
<< params_.size() << ") given");
QL_REQUIRE(forward_ > 0.0, "forward (" << forward_ << ") must be positive");
QL_REQUIRE(
shift_ == 0.0,
"shift (" << shift_
<< ") must be zero, other shifts are not implemented yet");
model_ =
ext::make_shared<NoArbSabrModel>(exerciseTime(), forward_, params_[0],
params_[1], params_[2], params_[3]);
}
Real NoArbSabrSmileSection::optionPrice(Rate strike, Option::Type type,
Real discount) const {
Real call = model_->optionPrice(strike);
return discount *
(type == Option::Call ? call : call - (forward_ - strike));
}
Real NoArbSabrSmileSection::digitalOptionPrice(Rate strike, Option::Type type,
Real discount, Real) const {
Real call = model_->digitalOptionPrice(strike);
return discount * (type == Option::Call ? call : 1.0 - call);
}
Real NoArbSabrSmileSection::density(Rate strike, Real discount, Real) const {
return discount * model_->density(strike);
}
Real NoArbSabrSmileSection::volatilityImpl(Rate strike) const {
Real impliedVol = 0.0;
try {
Option::Type type;
if (strike >= forward_)
type = Option::Call;
else
type = Option::Put;
impliedVol =
blackFormulaImpliedStdDev(type, strike, forward_,
optionPrice(strike, type, 1.0), 1.0) /
std::sqrt(exerciseTime());
} catch (...) {
}
if (impliedVol == 0.0)
// fall back on Hagan 2002 expansion
impliedVol =
unsafeSabrVolatility(strike, forward_, exerciseTime(), params_[0],
params_[1], params_[2], params_[3]);
return impliedVol;
}
} // namespace QuantLib
|