hikyuu2/hikyuu_cpp/hikyuu/indicator/imp/HighLine.h
2019-03-20 02:47:02 +08:00

31 lines
530 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* HighLine.h
*
* Created on: 2016年4月1日
* Author: fasiondog
*/
#ifndef INDICATOR_IMP_HIGHLINE_H_
#define INDICATOR_IMP_HIGHLINE_H_
#include "../Indicator.h"
namespace hku {
/*
* N日内最高价一般使用最高价数据作为输入
* 参数: n: N日时间窗口
*/
class HighLine: public IndicatorImp {
INDICATOR_IMP(HighLine)
INDICATOR_IMP_NO_PRIVATE_MEMBER_SERIALIZATION
public:
HighLine();
virtual ~HighLine();
};
} /* namespace hku */
#endif /* INDICATOR_IMP_HIGHLINE_H_ */