Hikyuu
Sma.h
浏览该文件的文档.
1 /*
2  * Ma.h
3  *
4  * Created on: 2013-2-10
5  * Author: fasiondog
6  */
7 
8 #ifndef SMA_H_
9 #define SMA_H_
10 
11 #include "../Indicator.h"
12 
13 namespace hku {
14 
15 class Sma: public IndicatorImp {
18 
19 public:
20  Sma();
21  virtual ~Sma();
22 };
23 
24 } /* namespace hku */
25 #endif /* SMA_H_ */
#define INDICATOR_IMP_NO_PRIVATE_MEMBER_SERIALIZATION
Definition: IndicatorImp.h:168
指标实现类,定义新指标时,应从此类继承
Definition: IndicatorImp.h:33
Sma()
Definition: Sma.cpp:12
Definition: Sma.h:15
#define INDICATOR_IMP(classname)
Definition: IndicatorImp.h:178
virtual ~Sma()
Definition: Sma.cpp:16
Hikyuu核心命名空间,包含股票数据的管理、指标实现、交易系统框架等
Definition: Block.cpp:11