/usr/include/ql/indexes/inflationindex.hpp is in libquantlib0-dev 1.1-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 | /* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2007 Chris Kenyon
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.
*/
/*! \file inflationindex.hpp
\brief base classes for inflation indexes
*/
#ifndef quantlib_inflation_index_hpp
#define quantlib_inflation_index_hpp
#include <ql/index.hpp>
#include <ql/indexes/region.hpp>
#include <ql/termstructures/inflationtermstructure.hpp>
#include <ql/currency.hpp>
#include <ql/handle.hpp>
namespace QuantLib {
class ZeroInflationTermStructure;
class YoYInflationTermStructure;
//! Base class for inflation-rate indexes,
class InflationIndex : public Index, public Observer {
public:
/*! An inflation index may return interpolated
values. These are linearly interpolated
values with act/act convention within a period.
Note that stored "fixings" are always flat (constant)
within a period and interpolated as needed. This
is because interpolation adds an addional availability
lag (because you always need the next period to
give the previous period's value)
and enables storage of the most recent uninterpolated value.
*/
InflationIndex(const std::string& familyName,
const Region& region,
bool revised,
bool interpolated,
Frequency frequency,
const Period& availabilitiyLag,
const Currency& currency);
//! \name Index interface
//@{
std::string name() const;
/*! Inflation indices do not have fixing calendars. An
inflation index value is valid for every day (including
weekends) of a calendar period. I.e. it uses the
NullCalendar as its fixing calendar.
*/
Calendar fixingCalendar() const;
bool isValidFixingDate(const Date& fixingDate) const;
/*! Forecasting index values requires an inflation term
structure. The inflation term structure (ITS) defines the
usual lag (not the index). I.e. an ITS is always relatve
to a base date that is earlier than its asof date. This
must be so because indices are available only with a lag.
However, the index availability lag only sets a minimum
lag for the ITS. An ITS may be relative to an earlier
date, e.g. an index may have a 2-month delay in
publication but the inflation swaps may take as their base
the index 3 months before.
*/
virtual Rate fixing(const Date& fixingDate,
bool forecastTodaysFixing = false) const = 0;
/*! this method creates all the "fixings" for the relevant
period of the index. E.g. for monthly indices it will put
the same value in every calendar day in the month.
*/
void addFixing(const Date& fixingDate,
Rate fixing,
bool forceOverwrite = false);
//@}
//! \name Observer interface
//@{
void update();
//@}
//! \name Inspectors
//@{
std::string familyName() const;
Region region() const;
bool revised() const;
/*! Forecasting index values using an inflation term structure
uses the interpolation of the inflation term structure
unless interpolation is set to false. In this case the
extrapolated values are constant within each period taking
the mid-period extrapolated value.
*/
bool interpolated() const;
Frequency frequency() const;
/*! The availability lag describes when the index is
<i>available</i>, not how it is used. Specifically the
fixing for, say, January, may only be available in April
but the index will always return the index value
applicable for January as its January fixing (independent
of the lag in availability).
*/
Period availabilityLag() const;
Currency currency() const;
//@}
protected:
Date referenceDate_;
std::string familyName_;
Region region_;
bool revised_;
bool interpolated_;
Frequency frequency_;
Period availabilityLag_;
Currency currency_;
};
//! Base class for zero inflation indices.
class ZeroInflationIndex : public InflationIndex {
public:
//! Always use the evaluation date as the reference date
ZeroInflationIndex(const std::string& familyName,
const Region& region,
bool revised,
bool interpolated,
Frequency frequency,
const Period& availabilityLag,
const Currency& currency,
const Handle<ZeroInflationTermStructure>& ts =
Handle<ZeroInflationTermStructure>());
/*! \warning the forecastTodaysFixing parameter (required by
the Index interface) is currently ignored.
*/
Rate fixing(const Date& fixingDate,
bool forecastTodaysFixing = false) const;
Handle<ZeroInflationTermStructure> zeroInflationTermStructure() const;
boost::shared_ptr<ZeroInflationIndex> clone(
const Handle<ZeroInflationTermStructure>& h) const;
private:
Rate forecastFixing(const Date& fixingDate) const;
Handle<ZeroInflationTermStructure> zeroInflation_;
};
//! Base class for year-on-year inflation indices.
/*! These may be genuine indices published on, say, Bloomberg, or
"fake" indices that are defined as the ratio of an index at
different time points.
*/
class YoYInflationIndex : public InflationIndex {
public:
YoYInflationIndex(const std::string& familyName,
const Region& region,
bool revised,
bool interpolated,
bool ratio, // is this one a genuine index or a ratio?
Frequency frequency,
const Period& availabilityLag,
const Currency& currency,
const Handle<YoYInflationTermStructure>& ts =
Handle<YoYInflationTermStructure>());
/*! \warning the forecastTodaysFixing parameter (required by
the Index interface) is currently ignored.
*/
Rate fixing(const Date& fixingDate,
bool forecastTodaysFixing = false) const;
bool ratio() const;
Handle<YoYInflationTermStructure> yoyInflationTermStructure() const;
boost::shared_ptr<YoYInflationIndex> clone(
const Handle<YoYInflationTermStructure>& h) const;
private:
Rate forecastFixing(const Date& fixingDate) const;
bool ratio_;
Handle<YoYInflationTermStructure> yoyInflation_;
};
}
#endif
|