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
|
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2006, 2007 Cristina Duminuco
Copyright (C) 2006, 2009 StatPro Italia srl
Copyright (C) 2007 Giorgio Facchinetti
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/cashflows/capflooredcoupon.hpp>
#include <ql/cashflows/couponpricer.hpp>
namespace QuantLib {
CappedFlooredCoupon::CappedFlooredCoupon(
const boost::shared_ptr<FloatingRateCoupon>& underlying,
Rate cap, Rate floor)
: FloatingRateCoupon(underlying->date(),
underlying->nominal(),
underlying->accrualStartDate(),
underlying->accrualEndDate(),
underlying->fixingDays(),
underlying->index(),
underlying->gearing(),
underlying->spread(),
underlying->referencePeriodStart(),
underlying->referencePeriodEnd(),
underlying->dayCounter(),
underlying->isInArrears()),
underlying_(underlying),
isCapped_(false), isFloored_(false) {
if (gearing_ > 0) {
if (cap != Null<Rate>()) {
isCapped_ = true;
cap_ = cap;
}
if (floor != Null<Rate>()) {
floor_ = floor;
isFloored_ = true;
}
} else {
if (cap != Null<Rate>()){
floor_ = cap;
isFloored_ = true;
}
if (floor != Null<Rate>()){
isCapped_ = true;
cap_ = floor;
}
}
if (isCapped_ && isFloored_) {
QL_REQUIRE(cap >= floor,
"cap level (" << cap <<
") less than floor level (" << floor << ")");
}
registerWith(underlying);
}
void CappedFlooredCoupon::setPricer(
const boost::shared_ptr<FloatingRateCouponPricer>& pricer) {
FloatingRateCoupon::setPricer(pricer);
underlying_->setPricer(pricer);
}
Rate CappedFlooredCoupon::rate() const {
QL_REQUIRE(underlying_->pricer(), "pricer not set");
Rate swapletRate = underlying_->rate();
Rate floorletRate = 0.;
if(isFloored_)
floorletRate = underlying_->pricer()->floorletRate(effectiveFloor());
Rate capletRate = 0.;
if(isCapped_)
capletRate = underlying_->pricer()->capletRate(effectiveCap());
return swapletRate + floorletRate - capletRate;
}
Rate CappedFlooredCoupon::convexityAdjustment() const {
return underlying_->convexityAdjustment();
}
Rate CappedFlooredCoupon::cap() const {
if ( (gearing_ > 0) && isCapped_)
return cap_;
if ( (gearing_ < 0) && isFloored_)
return floor_;
return Null<Rate>();
}
Rate CappedFlooredCoupon::floor() const {
if ( (gearing_ > 0) && isFloored_)
return floor_;
if ( (gearing_ < 0) && isCapped_)
return cap_;
return Null<Rate>();
}
Rate CappedFlooredCoupon::effectiveCap() const {
if (isCapped_)
return (cap_ - spread())/gearing();
else
return Null<Rate>();
}
Rate CappedFlooredCoupon::effectiveFloor() const {
if (isFloored_)
return (floor_ - spread())/gearing();
else
return Null<Rate>();
}
void CappedFlooredCoupon::update() {
notifyObservers();
}
void CappedFlooredCoupon::accept(AcyclicVisitor& v) {
typedef FloatingRateCoupon super;
Visitor<CappedFlooredCoupon>* v1 =
dynamic_cast<Visitor<CappedFlooredCoupon>*>(&v);
if (v1 != 0)
v1->visit(*this);
else
super::accept(v);
}
}
|