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
|
/*
Copyright (C) 2000, 2001, 2002 RiskMap 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/html/license.html
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.
*/
#ifndef quantlib_timeseries_i
#define quantlib_timeseries_i
%include common.i
%include types.i
%include date.i
%{
using QuantLib::TimeSeries;
using QuantLib::IntervalPrice;
%}
template <class T, class Container = std::map<Date, T> >
class TimeSeries {
#if defined (SWIGPYTHON) || defined(SWIGRUBY)
%rename(__len__) size;
#endif
public:
TimeSeries();
%extend {
TimeSeries(const std::vector<Date>& d, const std::vector<T>& v) {
return new TimeSeries<T>(d.begin(), d.end(), v.begin());
}
}
std::vector<Date> dates();
std::vector<T> values();
Size size();
%extend {
#if defined(SWIGPYTHON) || defined(SWIGRUBY) || defined(SWIGR)
T __getitem__(const Date& d) {
return (*self)[d];
}
void __setitem__(const Date& d, const T& value) {
(*self)[d] = value;
}
#endif
}
};
%template(RealTimeSeries) TimeSeries<Real>;
%template(IntervalPriceTimeSeries) TimeSeries<IntervalPrice>;
%template(IntervalPriceVector) std::vector<IntervalPrice>;
class IntervalPrice {
enum Type {Open, Close, High, Low};
public:
IntervalPrice(Real, Real, Real, Real);
void setValue(Real, IntervalPrice::Type);
void setValues(Real, Real, Real, Real);
Real value(IntervalPrice::Type t);
Real open();
Real close();
Real high();
Real low();
static TimeSeries<IntervalPrice> makeSeries(const std::vector<Date>& d,
const std::vector<Real>& open,
const std::vector<Real>& close,
const std::vector<Real>& high,
const std::vector<Real>& low);
static std::vector<Real> extractValues(TimeSeries<IntervalPrice>,
IntervalPrice::Type t);
static TimeSeries<Real> extractComponent(TimeSeries<IntervalPrice>,
IntervalPrice::Type t);
};
typedef RealTimeSeries VolatilityTimeSeries;
#if defined(SWIGR)
%Rruntime %{
setMethod('as.data.frame', '_p_TimeSeriesTdouble_std__mapTDate_double_t_t',
function(x,row.names,optional)
data.frame("date"=as(x$dates(), "character"),
"values"=as(x$values(), "numeric")))
setMethod("print", '_p_TimeSeriesTdouble_std_mapTDate_double_t_t',
function(x) print(as.data.frame(x)))
setMethod('as.data.frame', '_p_TimeSeriesTIntervalPrice_std_mapTDate_IntervalPrice_t_t',
function(x,row.names,optional)
data.frame("date"=as(x$dates(), "character"),
"open"=as(IntervalPrice_extractValues(x, "Open"), "numeric"),
"close"=as(IntervalPrice_extractValues(x, "Close"), "numeric"),
"high"=as(IntervalPrice_extractValues(x, "High"), "numeric"),
"low"=as(IntervalPrice_extractValues(x, "Low"), "numeric")))
setMethod("print", '_p_TimeSeriesTIntervalPrice_std_mapTDate_IntervalPrice_t_t',
function(x) print(as.data.frame(x)))
%}
#endif
#endif
|