hikyuu2/hikyuu_cpp/hikyuu/indicator/imp/IHighLine.h
2019-04-13 19:25:15 +08:00

33 lines
576 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.

/*
* 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_ */