forked from lballabio/QuantLib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
termstructure.hpp
141 lines (122 loc) · 5.22 KB
/
termstructure.hpp
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
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2004, 2005, 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
<[email protected]>. 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.
*/
/*! \file termstructure.hpp
\brief base class for term structures
*/
#ifndef quantlib_term_structure_hpp
#define quantlib_term_structure_hpp
#include <ql/time/calendar.hpp>
#include <ql/time/daycounters/actual365fixed.hpp>
#include <ql/settings.hpp>
#include <ql/handle.hpp>
#include <ql/math/interpolations/extrapolation.hpp>
#include <ql/utilities/null.hpp>
namespace QuantLib {
//! Basic term-structure functionality
class TermStructure : public virtual Observer,
public virtual Observable,
public Extrapolator {
public:
/*! \name Constructors
There are three ways in which a term structure can keep
track of its reference date. The first is that such date
is fixed; the second is that it is determined by advancing
the current date of a given number of business days; and
the third is that it is based on the reference date of
some other structure.
In the first case, the constructor taking a date is to be
used; the default implementation of referenceDate() will
then return such date. In the second case, the constructor
taking a number of days and a calendar is to be used;
referenceDate() will return a date calculated based on the
current evaluation date, and the term structure and its
observers will be notified when the evaluation date
changes. In the last case, the referenceDate() method must
be overridden in derived classes so that it fetches and
return the appropriate date.
*/
//@{
//! default constructor
/*! \warning term structures initialized by means of this
constructor must manage their own reference date
by overriding the referenceDate() method.
*/
TermStructure(const DayCounter& dc = DayCounter());
//! initialize with a fixed reference date
TermStructure(const Date& referenceDate,
const Calendar& calendar = Calendar(),
const DayCounter& dc = DayCounter());
//! calculate the reference date based on the global evaluation date
TermStructure(Natural settlementDays,
const Calendar&,
const DayCounter& dc = DayCounter());
//@}
virtual ~TermStructure() {}
//! \name Dates and Time
//@{
//! the day counter used for date/time conversion
virtual DayCounter dayCounter() const;
//! date/time conversion
Time timeFromReference(const Date& date) const;
//! the latest date for which the curve can return values
virtual Date maxDate() const = 0;
//! the latest time for which the curve can return values
virtual Time maxTime() const;
//! the date at which discount = 1.0 and/or variance = 0.0
virtual const Date& referenceDate() const;
//! the calendar used for reference and/or option date calculation
virtual Calendar calendar() const;
//! the settlementDays used for reference date calculation
virtual Natural settlementDays() const;
//@}
//! \name Observer interface
//@{
void update();
//@}
protected:
//! date-range check
void checkRange(const Date& d,
bool extrapolate) const;
//! time-range check
void checkRange(Time t,
bool extrapolate) const;
bool moving_;
mutable bool updated_;
Calendar calendar_;
private:
mutable Date referenceDate_;
Natural settlementDays_;
DayCounter dayCounter_;
};
// inline definitions
inline DayCounter TermStructure::dayCounter() const {
return dayCounter_;
}
inline Time TermStructure::maxTime() const {
return timeFromReference(maxDate());
}
inline Calendar TermStructure::calendar() const {
return calendar_;
}
inline Natural TermStructure::settlementDays() const {
QL_REQUIRE(settlementDays_!=Null<Natural>(),
"settlement days not provided for this instance");
return settlementDays_;
}
inline Time TermStructure::timeFromReference(const Date& d) const {
return dayCounter().yearFraction(referenceDate(), d);
}
}
#endif