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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2001, 2002, 2003 Sadruddin Rejeb
Copyright (C) 2006 Cristina Duminuco
Copyright (C) 2006 Marco Bianchetti
Copyright (C) 2007 StatPro Italia srl
Copyright (C) 2010 Andre Miemiec
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
<https://www.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/any.hpp>
#include <ql/exercise.hpp>
#include <ql/experimental/swaptions/irregularswaption.hpp>
#include <ql/math/solvers1d/newtonsafe.hpp>
#include <ql/pricingengines/swaption/blackswaptionengine.hpp>
#include <ql/quotes/simplequote.hpp>
#include <utility>
namespace QuantLib {
namespace {
class IrregularImpliedVolHelper {
public:
IrregularImpliedVolHelper(const IrregularSwaption&,
Handle<YieldTermStructure> discountCurve,
Real targetValue);
Real operator()(Volatility x) const;
Real derivative(Volatility x) const;
private:
ext::shared_ptr<PricingEngine> engine_;
Handle<YieldTermStructure> discountCurve_;
Real targetValue_;
ext::shared_ptr<SimpleQuote> vol_;
const Instrument::results* results_;
};
IrregularImpliedVolHelper::IrregularImpliedVolHelper(
const IrregularSwaption& swaption,
Handle<YieldTermStructure> discountCurve,
Real targetValue)
: discountCurve_(std::move(discountCurve)), targetValue_(targetValue),
vol_(ext::make_shared<SimpleQuote>(-1.0)) {
Handle<Quote> h(vol_);
engine_ = ext::shared_ptr<PricingEngine>(new
BlackSwaptionEngine(discountCurve_, h));
swaption.setupArguments(engine_->getArguments());
results_ =
dynamic_cast<const Instrument::results*>(engine_->getResults());
}
Real IrregularImpliedVolHelper::operator()(Volatility x) const {
if (x!=vol_->value()) {
vol_->setValue(x);
engine_->calculate();
}
return results_->value-targetValue_;
}
Real IrregularImpliedVolHelper::derivative(Volatility x) const {
if (x!=vol_->value()) {
vol_->setValue(x);
engine_->calculate();
}
auto vega_ = results_->additionalResults.find("vega");
QL_REQUIRE(vega_ != results_->additionalResults.end(),
"vega not provided");
return ext::any_cast<Real>(vega_->second);
}
}
std::ostream& operator<<(std::ostream& out,
IrregularSettlement::Type t) {
switch (t) {
case IrregularSettlement::Physical:
return out << "Delivery";
case IrregularSettlement::Cash:
return out << "Cash";
default:
QL_FAIL("unknown IrregularSettlement::Type(" << Integer(t) << ")");
}
}
IrregularSwaption::IrregularSwaption(ext::shared_ptr<IrregularSwap> swap,
const ext::shared_ptr<Exercise>& exercise,
IrregularSettlement::Type delivery)
: Option(ext::shared_ptr<Payoff>(), exercise), swap_(std::move(swap)),
settlementType_(delivery) {
registerWith(swap_);
}
bool IrregularSwaption::isExpired() const {
return detail::simple_event(exercise_->dates().back()).hasOccurred();
}
void IrregularSwaption::setupArguments(PricingEngine::arguments* args) const {
swap_->setupArguments(args);
auto* arguments = dynamic_cast<IrregularSwaption::arguments*>(args);
QL_REQUIRE(arguments != nullptr, "wrong argument type");
arguments->swap = swap_;
arguments->settlementType = settlementType_;
arguments->exercise = exercise_;
}
void IrregularSwaption::arguments::validate() const {
IrregularSwap::arguments::validate();
QL_REQUIRE(swap, "Irregular swap not set");
QL_REQUIRE(exercise, "exercise not set");
}
Volatility IrregularSwaption::impliedVolatility(
Real targetValue,
const Handle<YieldTermStructure>& discountCurve,
Volatility guess,
Real accuracy,
Natural maxEvaluations,
Volatility minVol,
Volatility maxVol) const {
calculate();
QL_REQUIRE(!isExpired(), "instrument expired");
IrregularImpliedVolHelper f(*this, discountCurve, targetValue);
//Brent solver;
NewtonSafe solver;
solver.setMaxEvaluations(maxEvaluations);
return solver.solve(f, accuracy, guess, minVol, maxVol);
}
}
|