hikyuu2/hikyuu_cpp/hikyuu/indicator/imp/HighLine.h

31 lines
530 B
C++
Raw Normal View History

2019-03-20 02:47:02 +08:00
/*
* HighLine.h
*
* Created on: 201641
* 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_ */