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
|
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2009, 2012 Roland Lichters
Copyright (C) 2009, 2012 Ferdinando Ametrano
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/termstructures/yield/oisratehelper.hpp>
#include <ql/instruments/makeois.hpp>
#include <ql/pricingengines/swap/discountingswapengine.hpp>
using boost::shared_ptr;
namespace QuantLib {
namespace {
void no_deletion(YieldTermStructure*) {}
}
OISRateHelper::OISRateHelper(
Natural settlementDays,
const Period& tenor, // swap maturity
const Handle<Quote>& fixedRate,
const boost::shared_ptr<OvernightIndex>& overnightIndex,
const Handle<YieldTermStructure>& discount)
: RelativeDateRateHelper(fixedRate),
settlementDays_(settlementDays), tenor_(tenor),
overnightIndex_(overnightIndex), discountHandle_(discount) {
registerWith(overnightIndex_);
registerWith(discountHandle_);
initializeDates();
}
void OISRateHelper::initializeDates() {
// dummy OvernightIndex with curve/swap arguments
// review here
boost::shared_ptr<IborIndex> clonedIborIndex =
overnightIndex_->clone(termStructureHandle_);
shared_ptr<OvernightIndex> clonedOvernightIndex =
boost::dynamic_pointer_cast<OvernightIndex>(clonedIborIndex);
// input discount curve Handle might be empty now but it could
// be assigned a curve later; use a RelinkableHandle here
swap_ = MakeOIS(tenor_, clonedOvernightIndex, 0.0)
.withDiscountingTermStructure(discountRelinkableHandle_)
.withSettlementDays(settlementDays_);
earliestDate_ = swap_->startDate();
latestDate_ = swap_->maturityDate();
}
void OISRateHelper::setTermStructure(YieldTermStructure* t) {
// do not set the relinkable handle as an observer -
// force recalculation when needed
bool observer = false;
shared_ptr<YieldTermStructure> temp(t, no_deletion);
termStructureHandle_.linkTo(temp, observer);
if (discountHandle_.empty())
discountRelinkableHandle_.linkTo(temp, observer);
else
discountRelinkableHandle_.linkTo(*discountHandle_, observer);
RelativeDateRateHelper::setTermStructure(t);
}
Real OISRateHelper::impliedQuote() const {
QL_REQUIRE(termStructure_ != 0, "term structure not set");
// we didn't register as observers - force calculation
swap_->recalculate();
return swap_->fairRate();
}
void OISRateHelper::accept(AcyclicVisitor& v) {
Visitor<OISRateHelper>* v1 =
dynamic_cast<Visitor<OISRateHelper>*>(&v);
if (v1 != 0)
v1->visit(*this);
else
RateHelper::accept(v);
}
DatedOISRateHelper::DatedOISRateHelper(
const Date& startDate,
const Date& endDate,
const Handle<Quote>& fixedRate,
const boost::shared_ptr<OvernightIndex>& overnightIndex,
const Handle<YieldTermStructure>& discount)
: RateHelper(fixedRate), discountHandle_(discount) {
registerWith(overnightIndex);
registerWith(discountHandle_);
// dummy OvernightIndex with curve/swap arguments
// review here
boost::shared_ptr<IborIndex> clonedIborIndex =
overnightIndex->clone(termStructureHandle_);
shared_ptr<OvernightIndex> clonedOvernightIndex =
boost::dynamic_pointer_cast<OvernightIndex>(clonedIborIndex);
// input discount curve Handle might be empty now but it could
// be assigned a curve later; use a RelinkableHandle here
swap_ = MakeOIS(Period(), clonedOvernightIndex, 0.0)
.withDiscountingTermStructure(discountRelinkableHandle_)
.withEffectiveDate(startDate)
.withTerminationDate(endDate);
earliestDate_ = swap_->startDate();
latestDate_ = swap_->maturityDate();
}
void DatedOISRateHelper::setTermStructure(YieldTermStructure* t) {
// do not set the relinkable handle as an observer -
// force recalculation when needed
bool observer = false;
shared_ptr<YieldTermStructure> temp(t, no_deletion);
termStructureHandle_.linkTo(temp, observer);
if (discountHandle_.empty())
discountRelinkableHandle_.linkTo(temp, observer);
else
discountRelinkableHandle_.linkTo(*discountHandle_, observer);
RateHelper::setTermStructure(t);
}
Real DatedOISRateHelper::impliedQuote() const {
QL_REQUIRE(termStructure_ != 0, "term structure not set");
// we didn't register as observers - force calculation
swap_->recalculate();
return swap_->fairRate();
}
void DatedOISRateHelper::accept(AcyclicVisitor& v) {
Visitor<DatedOISRateHelper>* v1 =
dynamic_cast<Visitor<DatedOISRateHelper>*>(&v);
if (v1 != 0)
v1->visit(*this);
else
RateHelper::accept(v);
}
}
|