mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-05 05:17:47 +08:00
33 lines
650 B
C++
33 lines
650 B
C++
/*
|
||
* ATR.h
|
||
*
|
||
* Created on: 2016年5月4日
|
||
* Author: Administrator
|
||
*/
|
||
|
||
#ifndef INDICATOR_CRT_ATR_H_
|
||
#define INDICATOR_CRT_ATR_H_
|
||
|
||
#include "../Indicator.h"
|
||
|
||
namespace hku {
|
||
|
||
/**
|
||
* 平均真实波幅(Average True Range)
|
||
* @param n 计算均值的周期窗口,必须为大于1的整数
|
||
* @ingroup Indicator
|
||
*/
|
||
Indicator HKU_API ATR(int n = 14);
|
||
|
||
/**
|
||
* 平均真实波幅(Average True Range)
|
||
* @param data 待计算的源数据
|
||
* @param n 计算均值的周期窗口,必须为大于1的整数
|
||
* @ingroup Indicator
|
||
*/
|
||
Indicator HKU_API ATR(const Indicator& data, int n = 14);
|
||
|
||
} /* namespace */
|
||
|
||
#endif /* INDICATOR_CRT_ATR_H_ */
|