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
|
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2004 Ferdinando Ametrano
Copyright (C) 2000, 2001, 2002, 2003 RiskMap srl
Copyright (C) 2003, 2004, 2005, 2006 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/termstructures/yieldtermstructure.hpp>
namespace QuantLib {
YieldTermStructure::YieldTermStructure(const DayCounter& dc)
: TermStructure(dc) {}
YieldTermStructure::YieldTermStructure(const Date& referenceDate,
const Calendar& cal,
const DayCounter& dc)
: TermStructure(referenceDate, cal, dc) {}
YieldTermStructure::YieldTermStructure(Natural settlementDays,
const Calendar& cal,
const DayCounter& dc)
: TermStructure(settlementDays, cal, dc) {}
InterestRate YieldTermStructure::zeroRate(const Date& d,
const DayCounter& dayCounter,
Compounding comp,
Frequency freq,
bool extrapolate) const {
if (d==referenceDate()) {
Time t = 0.0001;
Real compound = 1.0/discount(t, extrapolate);
return InterestRate::impliedRate(compound, t, dayCounter,
comp, freq);
}
Real compound = 1.0/discount(d, extrapolate);
return InterestRate::impliedRate(compound, referenceDate(), d,
dayCounter, comp, freq);
}
InterestRate YieldTermStructure::zeroRate(Time t,
Compounding comp,
Frequency freq,
bool extrapolate) const {
if (t==0.0) t = 0.0001;
Real compound = 1.0/discount(t, extrapolate);
return InterestRate::impliedRate(compound, t, dayCounter(),
comp, freq);
}
InterestRate YieldTermStructure::forwardRate(const Date& d1,
const Date& d2,
const DayCounter& dayCounter,
Compounding comp,
Frequency freq,
bool extrapolate) const {
if (d1==d2) {
Time t1 = timeFromReference(d1);
Time t2 = t1 + 0.0001;
Real compound =
discount(t1, extrapolate)/discount(t2, extrapolate);
return InterestRate::impliedRate(compound, t2-t1,
dayCounter, comp, freq);
}
QL_REQUIRE(d1 < d2, d1 << " later than " << d2);
Real compound = discount(d1, extrapolate)/discount(d2, extrapolate);
return InterestRate::impliedRate(compound,
d1, d2, dayCounter,
comp, freq);
}
InterestRate YieldTermStructure::forwardRate(Time t1,
Time t2,
Compounding comp,
Frequency freq,
bool extrapolate) const {
if (t2==t1) t2=t1+0.0001;
QL_REQUIRE(t2>t1, "t2 (" << t2 << ") < t1 (" << t2 << ")");
Real compound = discount(t1, extrapolate)/discount(t2, extrapolate);
return InterestRate::impliedRate(compound, t2-t1,
dayCounter(), comp, freq);
}
Rate YieldTermStructure::parRate(Integer tenor,
const Date& startDate,
Frequency freq,
bool extrapolate) const {
std::vector<Date> dates(1, startDate);
dates.reserve(tenor+1);
for (Integer i=1; i<=tenor; ++i)
dates.push_back(startDate + i*Years);
return parRate(dates, freq, extrapolate);
}
Rate YieldTermStructure::parRate(const std::vector<Date>& dates,
Frequency freq,
bool extrapolate) const {
std::vector<Time> times(dates.size());
for (Size i=0; i<dates.size(); i++)
times[i] = timeFromReference(dates[i]);
return parRate(times,freq,extrapolate);
}
Rate YieldTermStructure::parRate(const std::vector<Time>& times,
Frequency freq,
bool extrapolate) const {
QL_REQUIRE(times.size() >= 2, "at least two times are required");
checkRange(times.back(), extrapolate);
Real sum = 0.0;
for (Size i=1; i<times.size(); i++)
sum += discountImpl(times[i]);
Real result = discountImpl(times.front())-discountImpl(times.back());
result *= Real(freq)/sum;
return result;
}
}
|