mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-04 21:07:57 +08:00
33 lines
576 B
C++
33 lines
576 B
C++
/*
|
||
* IHighLine.h
|
||
*
|
||
* Copyright (c) 2019 hikyuu.org
|
||
*
|
||
* Created on: 2016年4月1日
|
||
* Author: fasiondog
|
||
*/
|
||
|
||
#ifndef INDICATOR_IMP_IHIGHLINE_H_
|
||
#define INDICATOR_IMP_IHIGHLINE_H_
|
||
|
||
#include "../Indicator.h"
|
||
|
||
namespace hku {
|
||
|
||
/*
|
||
* N日内最高价,一般使用最高价数据作为输入
|
||
* 参数: n: N日时间窗口
|
||
*/
|
||
class IHighLine: public IndicatorImp {
|
||
INDICATOR_IMP(IHighLine)
|
||
INDICATOR_IMP_NO_PRIVATE_MEMBER_SERIALIZATION
|
||
|
||
public:
|
||
IHighLine();
|
||
virtual ~IHighLine();
|
||
};
|
||
|
||
} /* namespace hku */
|
||
|
||
#endif /* INDICATOR_IMP_IHIGHLINE_H_ */
|