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
|
/*
Copyright (C) 2006 Giorgio Facchinetti
Copyright (C) 2006 Mario Pucci
Copyright (C) 2006, 2007 StatPro Italia srl
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/capflooredcoupon.hpp>
#include <ql/cashflows/cashflowvectors.hpp>
#include <ql/cashflows/cmscoupon.hpp>
#include <ql/indexes/swapindex.hpp>
#include <utility>
namespace QuantLib {
CmsCoupon::CmsCoupon(const Date& paymentDate,
Real nominal,
const Date& startDate,
const Date& endDate,
Natural fixingDays,
const ext::shared_ptr<SwapIndex>& swapIndex,
Real gearing,
Spread spread,
const Date& refPeriodStart,
const Date& refPeriodEnd,
const DayCounter& dayCounter,
bool isInArrears,
const Date& exCouponDate)
: FloatingRateCoupon(paymentDate, nominal, startDate, endDate,
fixingDays, swapIndex, gearing, spread,
refPeriodStart, refPeriodEnd,
dayCounter, isInArrears, exCouponDate),
swapIndex_(swapIndex) {}
void CmsCoupon::accept(AcyclicVisitor& v) {
auto* v1 = dynamic_cast<Visitor<CmsCoupon>*>(&v);
if (v1 != nullptr)
v1->visit(*this);
else
FloatingRateCoupon::accept(v);
}
CmsLeg::CmsLeg(Schedule schedule, ext::shared_ptr<SwapIndex> swapIndex)
: schedule_(std::move(schedule)), swapIndex_(std::move(swapIndex)) {
QL_REQUIRE(swapIndex_, "no index provided");
}
CmsLeg& CmsLeg::withNotionals(Real notional) {
notionals_ = std::vector<Real>(1, notional);
return *this;
}
CmsLeg& CmsLeg::withNotionals(const std::vector<Real>& notionals) {
notionals_ = notionals;
return *this;
}
CmsLeg& CmsLeg::withPaymentDayCounter(const DayCounter& dayCounter) {
paymentDayCounter_ = dayCounter;
return *this;
}
CmsLeg& CmsLeg::withPaymentAdjustment(BusinessDayConvention convention) {
paymentAdjustment_ = convention;
return *this;
}
CmsLeg& CmsLeg::withFixingDays(Natural fixingDays) {
fixingDays_ = std::vector<Natural>(1, fixingDays);
return *this;
}
CmsLeg& CmsLeg::withFixingDays(const std::vector<Natural>& fixingDays) {
fixingDays_ = fixingDays;
return *this;
}
CmsLeg& CmsLeg::withGearings(Real gearing) {
gearings_ = std::vector<Real>(1, gearing);
return *this;
}
CmsLeg& CmsLeg::withGearings(const std::vector<Real>& gearings) {
gearings_ = gearings;
return *this;
}
CmsLeg& CmsLeg::withSpreads(Spread spread) {
spreads_ = std::vector<Spread>(1, spread);
return *this;
}
CmsLeg& CmsLeg::withSpreads(const std::vector<Spread>& spreads) {
spreads_ = spreads;
return *this;
}
CmsLeg& CmsLeg::withCaps(Rate cap) {
caps_ = std::vector<Rate>(1, cap);
return *this;
}
CmsLeg& CmsLeg::withCaps(const std::vector<Rate>& caps) {
caps_ = caps;
return *this;
}
CmsLeg& CmsLeg::withFloors(Rate floor) {
floors_ = std::vector<Rate>(1, floor);
return *this;
}
CmsLeg& CmsLeg::withFloors(const std::vector<Rate>& floors) {
floors_ = floors;
return *this;
}
CmsLeg& CmsLeg::inArrears(bool flag) {
inArrears_ = flag;
return *this;
}
CmsLeg& CmsLeg::withZeroPayments(bool flag) {
zeroPayments_ = flag;
return *this;
}
CmsLeg& CmsLeg::withExCouponPeriod(
const Period& period,
const Calendar& cal,
BusinessDayConvention convention,
bool endOfMonth) {
exCouponPeriod_ = period;
exCouponCalendar_ = cal;
exCouponAdjustment_ = convention;
exCouponEndOfMonth_ = endOfMonth;
return *this;
}
CmsLeg::operator Leg() const {
return FloatingLeg<SwapIndex, CmsCoupon, CappedFlooredCmsCoupon>(
schedule_, notionals_, swapIndex_, paymentDayCounter_,
paymentAdjustment_, fixingDays_, gearings_, spreads_,
caps_, floors_, inArrears_, zeroPayments_,
0, Calendar(),
exCouponPeriod_, exCouponCalendar_,
exCouponAdjustment_, exCouponEndOfMonth_);
}
}
|