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
|
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2007 Roland Lichters
Copyright (C) 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
<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/bmaswap.hpp>
#include <ql/cashflows/iborcoupon.hpp>
#include <ql/cashflows/averagebmacoupon.hpp>
namespace QuantLib {
BMASwap::BMASwap(Type type,
Real nominal,
// Libor leg
const Schedule& liborSchedule,
Real liborFraction,
Spread liborSpread,
const boost::shared_ptr<IborIndex>& liborIndex,
const DayCounter& liborDayCount,
// BMA leg
const Schedule& bmaSchedule,
const boost::shared_ptr<BMAIndex>& bmaIndex,
const DayCounter& bmaDayCount)
: Swap(2), type_(type), nominal_(nominal),
liborFraction_(liborFraction), liborSpread_(liborSpread) {
BusinessDayConvention convention =
liborSchedule.businessDayConvention();
legs_[0] = IborLeg(liborSchedule, liborIndex)
.withNotionals(nominal)
.withPaymentDayCounter(liborDayCount)
.withPaymentAdjustment(convention)
.withFixingDays(liborIndex->fixingDays())
.withGearings(liborFraction)
.withSpreads(liborSpread);
legs_[1] = AverageBMALeg(bmaSchedule, bmaIndex)
.withNotionals(nominal)
.withPaymentDayCounter(bmaDayCount)
.withPaymentAdjustment(bmaSchedule.businessDayConvention());
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 BMA-swap type");
}
}
Real BMASwap::liborFraction() const {
return liborFraction_;
}
Spread BMASwap::liborSpread() const {
return liborSpread_;
}
Real BMASwap::nominal() const {
return nominal_;
}
BMASwap::Type BMASwap::type() const {
return type_;
}
const Leg& BMASwap::liborLeg() const {
return legs_[0];
}
const Leg& BMASwap::bmaLeg() const {
return legs_[1];
}
Real BMASwap::liborLegBPS() const {
calculate();
QL_REQUIRE(legBPS_[0] != Null<Real>(), "result not available");
return legBPS_[0];
}
Real BMASwap::liborLegNPV() const {
calculate();
QL_REQUIRE(legNPV_[0] != Null<Real>(), "result not available");
return legNPV_[0];
}
Real BMASwap::fairLiborFraction() const {
static Spread basisPoint = 1.0e-4;
Real spreadNPV = (liborSpread_/basisPoint)*liborLegBPS();
Real pureLiborNPV = liborLegNPV() - spreadNPV;
QL_REQUIRE(pureLiborNPV != 0.0,
"result not available (null libor NPV)");
return -liborFraction_ * (bmaLegNPV() + spreadNPV) / pureLiborNPV;
}
Spread BMASwap::fairLiborSpread() const {
static Spread basisPoint = 1.0e-4;
return liborSpread_ - NPV()/(liborLegBPS()/basisPoint);
}
Real BMASwap::bmaLegBPS() const {
calculate();
QL_REQUIRE(legBPS_[1] != Null<Real>(), "result not available");
return legBPS_[1];
}
Real BMASwap::bmaLegNPV() const {
calculate();
QL_REQUIRE(legNPV_[1] != Null<Real>(), "result not available");
return legNPV_[1];
}
}
|