Hikyuu
EMA.h
浏览该文件的文档.
1 /*
2  * EMA.h
3  *
4  * Created on: 2013-4-10
5  * Author: fasiondog
6  */
7 
8 #ifndef EMA_H_
9 #define EMA_H_
10 
11 #include "../Indicator.h"
12 
13 namespace hku {
14 
20 Indicator HKU_API EMA(int n = 22);
21 
28 Indicator HKU_API EMA(const Indicator& data, int n = 22);
29 
30 } /* namespace */
31 
32 #endif /* EMA_H_ */
#define HKU_API
Definition: DataType.h:12
class HKU_API Indicator
Definition: IndicatorImp.h:27
Indicator HKU_API EMA(int n=22)
指数移动平均线(Exponential Moving Average)
Definition: Ema.cpp:52
Hikyuu核心命名空间,包含股票数据的管理、指标实现、交易系统框架等
Definition: Block.cpp:11