Hikyuu
AMA.h
浏览该文件的文档.
1 /*
2  * AMA.h
3  *
4  * Created on: 2013-4-8
5  * Author: fasiondog
6  */
7 
8 #ifndef AMA_H_
9 #define AMA_H_
10 
11 #include "../Indicator.h"
12 
13 namespace hku {
14 
22 Indicator HKU_API AMA(int n = 10, int fast_n = 2, int slow_n = 30);
23 
32 Indicator HKU_API AMA(const Indicator& indicator, int n = 10,
33  int fast_n = 2, int slow_n = 30);
34 
35 } /* namespace */
36 
37 #endif /* AMA_H_ */
Indicator HKU_API AMA(int n=10, int fast_n=2, int slow_n=30)
佩里.J 考夫曼(Perry J.Kaufman)自适应移动平均,参见《精明交易者》(2006年 广东经济出版社) ...
Definition: Ama.cpp:84
#define HKU_API
Definition: DataType.h:12
class HKU_API Indicator
Definition: IndicatorImp.h:27
Hikyuu核心命名空间,包含股票数据的管理、指标实现、交易系统框架等
Definition: Block.cpp:11