Hikyuu
HighLine.h
浏览该文件的文档.
1 /*
2  * HighLine.h
3  *
4  * Created on: 2016年4月1日
5  * Author: fasiondog
6  */
7 
8 #ifndef INDICATOR_IMP_HIGHLINE_H_
9 #define INDICATOR_IMP_HIGHLINE_H_
10 
11 #include "../Indicator.h"
12 
13 namespace hku {
14 
15 /*
16  * N日内最高价,一般使用最高价数据作为输入
17  * 参数: n: N日时间窗口
18  */
19 class HighLine: public IndicatorImp {
22 
23 public:
24  HighLine();
25  virtual ~HighLine();
26 };
27 
28 } /* namespace hku */
29 
30 #endif /* INDICATOR_IMP_HIGHLINE_H_ */
#define INDICATOR_IMP_NO_PRIVATE_MEMBER_SERIALIZATION
Definition: IndicatorImp.h:168
指标实现类,定义新指标时,应从此类继承
Definition: IndicatorImp.h:33
HighLine()
Definition: HighLine.cpp:12
#define INDICATOR_IMP(classname)
Definition: IndicatorImp.h:178
virtual ~HighLine()
Definition: HighLine.cpp:16
Definition: HighLine.h:19
Hikyuu核心命名空间,包含股票数据的管理、指标实现、交易系统框架等
Definition: Block.cpp:11