Hikyuu
DIFF.h
浏览该文件的文档.
1 /*
2  * DIFF.h
3  *
4  * Created on: 2013-4-18
5  * Author: fasiondog
6  */
7 
8 #ifndef DIFF_H_
9 #define DIFF_H_
10 
11 #include "../Indicator.h"
12 
13 namespace hku {
14 
20 
26 Indicator HKU_API DIFF(const Indicator& data);
27 
28 } /* namespace */
29 
30 #endif /* DIFF_H_ */
#define HKU_API
Definition: DataType.h:12
class HKU_API Indicator
Definition: IndicatorImp.h:27
Hikyuu核心命名空间,包含股票数据的管理、指标实现、交易系统框架等
Definition: Block.cpp:11
Indicator HKU_API DIFF()
差分指标,即data[i] - data[i-1]
Definition: Diff.cpp:38