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
|
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2009 Roland Lichters
Copyright (C) 2009 Ferdinando Ametrano
Copyright (C) 2017 Joseph Jeisman
Copyright (C) 2017 Fabrice Lecuyer
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/instruments/overnightindexedswap.hpp>
#include <ql/cashflows/overnightindexedcoupon.hpp>
#include <ql/cashflows/fixedratecoupon.hpp>
namespace QuantLib {
OvernightIndexedSwap::OvernightIndexedSwap(
Type type,
Real nominal,
const Schedule& schedule,
Rate fixedRate,
const DayCounter& fixedDC,
const ext::shared_ptr<OvernightIndex>& overnightIndex,
Spread spread,
Natural paymentLag,
BusinessDayConvention paymentAdjustment,
const Calendar& paymentCalendar,
bool telescopicValueDates)
: Swap(2), type_(type), nominals_(std::vector<Real>(1, nominal)),
paymentFrequency_(schedule.tenor().frequency()),
paymentCalendar_(paymentCalendar.empty() ? schedule.calendar() : paymentCalendar),
paymentAdjustment_(paymentAdjustment), paymentLag_(paymentLag), fixedRate_(fixedRate),
fixedDC_(fixedDC), overnightIndex_(overnightIndex), spread_(spread),
telescopicValueDates_(telescopicValueDates) {
initialize(schedule);
}
OvernightIndexedSwap::OvernightIndexedSwap(
Type type,
const std::vector<Real>& nominals,
const Schedule& schedule,
Rate fixedRate,
const DayCounter& fixedDC,
const ext::shared_ptr<OvernightIndex>& overnightIndex,
Spread spread,
Natural paymentLag,
BusinessDayConvention paymentAdjustment,
const Calendar& paymentCalendar,
bool telescopicValueDates)
: Swap(2), type_(type), nominals_(nominals), paymentFrequency_(schedule.tenor().frequency()),
paymentCalendar_(paymentCalendar.empty() ? schedule.calendar() : paymentCalendar),
paymentAdjustment_(paymentAdjustment), paymentLag_(paymentLag), fixedRate_(fixedRate),
fixedDC_(fixedDC), overnightIndex_(overnightIndex), spread_(spread),
telescopicValueDates_(telescopicValueDates) {
initialize(schedule);
}
void OvernightIndexedSwap::initialize(const Schedule& schedule) {
if (fixedDC_==DayCounter())
fixedDC_ = overnightIndex_->dayCounter();
legs_[0] = FixedRateLeg(schedule)
.withNotionals(nominals_)
.withCouponRates(fixedRate_, fixedDC_)
.withPaymentLag(paymentLag_)
.withPaymentAdjustment(paymentAdjustment_)
.withPaymentCalendar(paymentCalendar_);
legs_[1] = OvernightLeg(schedule, overnightIndex_)
.withNotionals(nominals_)
.withSpreads(spread_)
.withTelescopicValueDates(telescopicValueDates_)
.withPaymentLag(paymentLag_)
.withPaymentAdjustment(paymentAdjustment_)
.withPaymentCalendar(paymentCalendar_);
for (Size j=0; j<2; ++j) {
for (Leg::iterator i = legs_[j].begin(); i!= legs_[j].end(); ++i)
registerWith(*i);
}
switch (type_) {
case Payer:
payer_[0] = -1.0;
payer_[1] = +1.0;
break;
case Receiver:
payer_[0] = +1.0;
payer_[1] = -1.0;
break;
default:
QL_FAIL("Unknown overnight-swap type");
}
}
Real OvernightIndexedSwap::fairRate() const {
static Spread basisPoint = 1.0e-4;
calculate();
return fixedRate_ - NPV_/(fixedLegBPS()/basisPoint);
}
Spread OvernightIndexedSwap::fairSpread() const {
static Spread basisPoint = 1.0e-4;
calculate();
return spread_ - NPV_/(overnightLegBPS()/basisPoint);
}
Real OvernightIndexedSwap::fixedLegBPS() const {
calculate();
QL_REQUIRE(legBPS_[0] != Null<Real>(), "result not available");
return legBPS_[0];
}
Real OvernightIndexedSwap::overnightLegBPS() const {
calculate();
QL_REQUIRE(legBPS_[1] != Null<Real>(), "result not available");
return legBPS_[1];
}
Real OvernightIndexedSwap::fixedLegNPV() const {
calculate();
QL_REQUIRE(legNPV_[0] != Null<Real>(), "result not available");
return legNPV_[0];
}
Real OvernightIndexedSwap::overnightLegNPV() const {
calculate();
QL_REQUIRE(legNPV_[1] != Null<Real>(), "result not available");
return legNPV_[1];
}
}
|