forked from lballabio/QuantLib-SWIG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimeseries.i
118 lines (98 loc) · 3.75 KB
/
timeseries.i
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
/*
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
<[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.
*/
#ifndef quantlib_timeseries_i
#define quantlib_timeseries_i
%include common.i
%include types.i
%include date.i
%include vectors.i
%{
using QuantLib::TimeSeries;
using QuantLib::IntervalPrice;
%}
#if defined (SWIGJAVA) && defined(JAVA_AUTOCLOSEABLE)
// close() method naming conflict
%rename(closePrice) IntervalPrice::close();
#endif
template <class T, class Container = std::map<Date, T> >
class TimeSeries {
#if defined (SWIGPYTHON)
%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(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 {
public:
enum Type {Open, Close, High, Low};
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