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 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
|
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2009 Chris Kenyon
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/cashflows/capflooredinflationcoupon.hpp>
#include <ql/cashflows/cashflowvectors.hpp>
#include <ql/cashflows/inflationcoupon.hpp>
#include <ql/cashflows/inflationcouponpricer.hpp>
#include <utility>
namespace QuantLib {
YoYInflationCoupon::
YoYInflationCoupon(const Date& paymentDate,
Real nominal,
const Date& startDate,
const Date& endDate,
Natural fixingDays,
const ext::shared_ptr<YoYInflationIndex>& yoyIndex,
const Period& observationLag,
CPI::InterpolationType interpolation,
const DayCounter& dayCounter,
Real gearing,
Spread spread,
const Date& refPeriodStart,
const Date& refPeriodEnd)
: InflationCoupon(paymentDate, nominal, startDate, endDate,
fixingDays, yoyIndex, observationLag,
dayCounter, refPeriodStart, refPeriodEnd),
yoyIndex_(yoyIndex), interpolation_(interpolation), gearing_(gearing), spread_(spread) {}
void YoYInflationCoupon::accept(AcyclicVisitor& v) {
auto* v1 = dynamic_cast<Visitor<YoYInflationCoupon>*>(&v);
if (v1 != nullptr)
v1->visit(*this);
else
InflationCoupon::accept(v);
}
bool YoYInflationCoupon::checkPricerImpl(
const ext::shared_ptr<InflationCouponPricer>&pricer) const {
return static_cast<bool>(
ext::dynamic_pointer_cast<YoYInflationCouponPricer>(pricer));
}
Rate YoYInflationCoupon::indexFixing() const {
return CPI::laggedYoYRate(yoyIndex(), accrualEndDate(), observationLag(), interpolation_);
}
yoyInflationLeg::yoyInflationLeg(Schedule schedule,
Calendar paymentCalendar,
ext::shared_ptr<YoYInflationIndex> index,
const Period& observationLag,
CPI::InterpolationType interpolation)
: schedule_(std::move(schedule)), index_(std::move(index)), observationLag_(observationLag),
interpolation_(interpolation), paymentCalendar_(std::move(paymentCalendar)) {}
yoyInflationLeg& yoyInflationLeg::withNotionals(Real notional) {
notionals_ = std::vector<Real>(1,notional);
return *this;
}
yoyInflationLeg& yoyInflationLeg::withNotionals(const std::vector<Real>& notionals) {
notionals_ = notionals;
return *this;
}
yoyInflationLeg& yoyInflationLeg::withPaymentDayCounter(const DayCounter& dayCounter) {
paymentDayCounter_ = dayCounter;
return *this;
}
yoyInflationLeg& yoyInflationLeg::withPaymentAdjustment(BusinessDayConvention convention) {
paymentAdjustment_ = convention;
return *this;
}
yoyInflationLeg& yoyInflationLeg::withFixingDays(Natural fixingDays) {
fixingDays_ = std::vector<Natural>(1,fixingDays);
return *this;
}
yoyInflationLeg& yoyInflationLeg::withFixingDays(const std::vector<Natural>& fixingDays) {
fixingDays_ = fixingDays;
return *this;
}
yoyInflationLeg& yoyInflationLeg::withGearings(Real gearing) {
gearings_ = std::vector<Real>(1,gearing);
return *this;
}
yoyInflationLeg& yoyInflationLeg::withGearings(const std::vector<Real>& gearings) {
gearings_ = gearings;
return *this;
}
yoyInflationLeg& yoyInflationLeg::withSpreads(Spread spread) {
spreads_ = std::vector<Spread>(1,spread);
return *this;
}
yoyInflationLeg& yoyInflationLeg::withSpreads(const std::vector<Spread>& spreads) {
spreads_ = spreads;
return *this;
}
yoyInflationLeg& yoyInflationLeg::withCaps(Rate cap) {
caps_ = std::vector<Rate>(1,cap);
return *this;
}
yoyInflationLeg& yoyInflationLeg::withCaps(const std::vector<Rate>& caps) {
caps_ = caps;
return *this;
}
yoyInflationLeg& yoyInflationLeg::withFloors(Rate floor) {
floors_ = std::vector<Rate>(1,floor);
return *this;
}
yoyInflationLeg& yoyInflationLeg::withFloors(const std::vector<Rate>& floors) {
floors_ = floors;
return *this;
}
yoyInflationLeg::operator Leg() const {
Size n = schedule_.size()-1;
QL_REQUIRE(!paymentDayCounter_.empty(), "no payment daycounter given");
QL_REQUIRE(!notionals_.empty(), "no notional given");
QL_REQUIRE(notionals_.size() <= n,
"too many nominals (" << notionals_.size() <<
"), only " << n << " required");
QL_REQUIRE(gearings_.size()<=n,
"too many gearings (" << gearings_.size() <<
"), only " << n << " required");
QL_REQUIRE(spreads_.size()<=n,
"too many spreads (" << spreads_.size() <<
"), only " << n << " required");
QL_REQUIRE(caps_.size()<=n,
"too many caps (" << caps_.size() <<
"), only " << n << " required");
QL_REQUIRE(floors_.size()<=n,
"too many floors (" << floors_.size() <<
"), only " << n << " required");
Leg leg; leg.reserve(n);
Calendar calendar = paymentCalendar_;
Date refStart, start, refEnd, end;
for (Size i=0; i<n; ++i) {
refStart = start = schedule_.date(i);
refEnd = end = schedule_.date(i+1);
Date paymentDate = calendar.adjust(end, paymentAdjustment_);
if (i==0 && schedule_.hasIsRegular() && !schedule_.isRegular(i+1)) {
BusinessDayConvention bdc = schedule_.businessDayConvention();
refStart = schedule_.calendar().adjust(end - schedule_.tenor(), bdc);
}
if (i==n-1 && schedule_.hasIsRegular() && !schedule_.isRegular(i+1)) {
BusinessDayConvention bdc = schedule_.businessDayConvention();
refEnd = schedule_.calendar().adjust(start + schedule_.tenor(), bdc);
}
if (detail::get(gearings_, i, 1.0) == 0.0) { // fixed coupon
leg.push_back(ext::make_shared<FixedRateCoupon>(
paymentDate,
detail::get(notionals_, i, 1.0),
detail::effectiveFixedRate(spreads_,caps_,
floors_,i),
paymentDayCounter_,
start, end, refStart, refEnd));
} else { // yoy inflation coupon
if (detail::noOption(caps_, floors_, i)) { // just swaplet
leg.push_back(ext::make_shared<YoYInflationCoupon>(
paymentDate,
detail::get(notionals_, i, 1.0),
start, end,
detail::get(fixingDays_, i, 0),
index_,
observationLag_,
interpolation_,
paymentDayCounter_,
detail::get(gearings_, i, 1.0),
detail::get(spreads_, i, 0.0),
refStart, refEnd));
} else { // cap/floorlet
leg.push_back(ext::make_shared<CappedFlooredYoYInflationCoupon>(
paymentDate,
detail::get(notionals_, i, 1.0),
start, end,
detail::get(fixingDays_, i, 0),
index_,
observationLag_,
interpolation_,
paymentDayCounter_,
detail::get(gearings_, i, 1.0),
detail::get(spreads_, i, 0.0),
detail::get(caps_, i, Null<Rate>()),
detail::get(floors_, i, Null<Rate>()),
refStart, refEnd));
}
}
}
// Without caps or floors, this is enough; otherwise, a more
// specific pricer will need to be set in client code.
if (caps_.empty() && floors_.empty())
setCouponPricer(leg, ext::make_shared<YoYInflationCouponPricer>());
return leg;
}
}
|