Hikyuu
MACD.h
浏览该文件的文档.
1 /*
2  * MACD.h
3  *
4  * Created on: 2013-4-11
5  * Author: fasiondog
6  */
7 
8 #ifndef MACD_H_
9 #define MACD_H_
10 
11 #include "../Indicator.h"
12 
13 namespace hku {
14 
28 Indicator HKU_API MACD(int n1 = 12, int n2 = 26, int n3 = 9);
29 
44 Indicator HKU_API MACD(const Indicator& data,
45  int n1 = 12, int n2 = 26, int n3 = 9);
46 
47 } /* namespace */
48 
49 #endif /* MACD_H_ */
#define HKU_API
Definition: DataType.h:12
Indicator HKU_API MACD(int n1=12, int n2=26, int n3=9)
MACD平滑异同移动平均线
Definition: Macd.cpp:71
class HKU_API Indicator
Definition: IndicatorImp.h:27
Hikyuu核心命名空间,包含股票数据的管理、指标实现、交易系统框架等
Definition: Block.cpp:11