mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-05 05:17:47 +08:00
33 lines
573 B
C++
33 lines
573 B
C++
/*
|
|
* HHV.h
|
|
*
|
|
* Created on: 2016年4月2日
|
|
* Author: fasiondog
|
|
*/
|
|
|
|
#ifndef INDICATOR_CRT_HHV_H_
|
|
#define INDICATOR_CRT_HHV_H_
|
|
|
|
#include "../Indicator.h"
|
|
|
|
namespace hku {
|
|
|
|
/**
|
|
* N日内最高价, N=0则从第一个有效值开始
|
|
* @param n N日时间窗口
|
|
* @ingroup Indicator
|
|
*/
|
|
Indicator HKU_API HHV(int n = 20);
|
|
|
|
/**
|
|
* N日内最高价, N=0则从第一个有效值开始
|
|
* @param ind 待计算的数据
|
|
* @param n N日时间窗口
|
|
* @ingroup Indicator
|
|
*/
|
|
Indicator HKU_API HHV(const Indicator& ind, int n = 20);
|
|
|
|
}
|
|
|
|
#endif /* INDICATOR_CRT_HHV_H_ */
|