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 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
|
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2008 J. Erik Radmall
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
<https://www.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 commodityindex.hpp
\brief Commodity index
*/
#ifndef quantlib_commodity_index_hpp
#define quantlib_commodity_index_hpp
#include <ql/experimental/commodities/commoditycurve.hpp>
#include <ql/index.hpp>
namespace QuantLib {
class TermStructure;
//! base class for commodity indexes
class CommodityIndex : public Index {
public:
CommodityIndex(std::string name,
CommodityType commodityType,
Currency currency,
UnitOfMeasure unitOfMeasure,
Calendar calendar,
Real lotQuantity,
ext::shared_ptr<CommodityCurve> forwardCurve,
ext::shared_ptr<ExchangeContracts> exchangeContracts,
int nearbyOffset);
//! \name Index interface
//@{
std::string name() const override;
Calendar fixingCalendar() const override;
bool isValidFixingDate(const Date& fixingDate) const override;
Real fixing(const Date& fixingDate,
bool forecastTodaysFixing = false) const override;
//@}
//! \name Observer interface
//@{
void update() override;
//@}
//! \name Inspectors
//@{
const CommodityType& commodityType() const;
const Currency& currency() const;
const UnitOfMeasure& unitOfMeasure() const;
const ext::shared_ptr<CommodityCurve>& forwardCurve() const;
Real lotQuantity() const;
Real forwardPrice(const Date& date) const;
Date lastQuoteDate() const;
bool empty() const;
bool forwardCurveEmpty() const;
//@}
/*! \deprecated Use fixingCalendar instead.
Deprecated in version 1.37.
*/
[[deprecated("Use fixingCalendar instead")]]
const Calendar& calendar() const {
return calendar_;
}
/*! \deprecated Use fixing instead.
Deprecated in version 1.37.
*/
[[deprecated("Use fixing instead")]]
Real price(const Date& date) {
return fixing(date);
}
/*! \deprecated Use addFixing instead.
Deprecated in version 1.37.
*/
[[deprecated("Use addFixing instead")]]
void addQuote(const Date& quoteDate, Real quote) {
addFixing(quoteDate, quote);
}
/*! \deprecated Use addFixings instead.
Deprecated in version 1.37.
*/
[[deprecated("Use addFixings instead")]]
void addQuotes(const std::map<Date, Real>& quotes) {
for (auto quote : quotes) {
addFixing(quote.first, quote.second);
}
}
/*! \deprecated Use clearFixings instead.
Deprecated in version 1.37.
*/
[[deprecated("Use clearFixings instead")]]
void clearQuotes() {
clearFixings();
}
/*! \deprecated Use isValidFixingDate instead.
Deprecated in version 1.37.
*/
[[deprecated("Use isValidFixingDate instead")]]
bool isValidQuoteDate(const Date& quoteDate) const {
return isValidFixingDate(quoteDate);
}
/*! \deprecated Use timeSeries instead.
Deprecated in version 1.37.
*/
[[deprecated("Use timeSeries instead")]]
const TimeSeries<Real>& quotes() const {
return timeSeries();
}
friend std::ostream& operator<<(std::ostream&, const CommodityIndex&);
protected:
std::string name_;
CommodityType commodityType_;
UnitOfMeasure unitOfMeasure_;
Currency currency_;
Calendar calendar_;
Real lotQuantity_;
ext::shared_ptr<CommodityCurve> forwardCurve_;
Real forwardCurveUomConversionFactor_ = 1;
ext::shared_ptr<ExchangeContracts> exchangeContracts_;
Integer nearbyOffset_;
};
// inline definitions
inline bool operator==(const CommodityIndex& i1, const CommodityIndex& i2) {
return i1.name() == i2.name();
}
inline void CommodityIndex::update() {
notifyObservers();
}
inline std::string CommodityIndex::name() const {
return name_;
}
inline Calendar CommodityIndex::fixingCalendar() const {
return calendar_;
}
inline bool CommodityIndex::isValidFixingDate(const Date& fixingDate) const {
return fixingCalendar().isBusinessDay(fixingDate);
}
inline Real CommodityIndex::fixing(const Date& date, bool) const {
return pastFixing(date);
}
inline const CommodityType& CommodityIndex::commodityType() const {
return commodityType_;
}
inline const UnitOfMeasure& CommodityIndex::unitOfMeasure() const {
return unitOfMeasure_;
}
inline const Currency& CommodityIndex::currency() const {
return currency_;
}
inline Real CommodityIndex::lotQuantity() const {
return lotQuantity_;
}
inline const ext::shared_ptr<CommodityCurve>&
CommodityIndex::forwardCurve() const {
return forwardCurve_;
}
inline Real CommodityIndex::forwardPrice(const Date& date) const {
try {
Real forwardPrice =
forwardCurve_->price(date, exchangeContracts_, nearbyOffset_);
return forwardPrice * forwardCurveUomConversionFactor_;
} catch (const std::exception& e) {
QL_FAIL("error fetching forward price for index " << name_
<< ": " << e.what());
}
}
inline Date CommodityIndex::lastQuoteDate() const {
return timeSeries().lastDate();
}
inline bool CommodityIndex::empty() const {
return timeSeries().empty();
}
inline bool CommodityIndex::forwardCurveEmpty() const {
if (forwardCurve_ != nullptr)
return forwardCurve_->empty();
return false;
}
}
#endif
|