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

31 lines
515 B
C++
Raw Normal View History

2019-04-28 01:19:30 +08:00
/*
* IEvery.h
*
* Copyright (c) 2019 hikyuu.org
*
* Created on: 2019-4-28
* Author: fasiondog
*/
#ifndef INDICATOR_IMP_IEVERY_H_
#define INDICATOR_IMP_IEVERY_H_
#include "../Indicator.h"
namespace hku {
/*
* , EVERY (X,N) X在N周期一直存在
*/
class IEvery: public IndicatorImp {
INDICATOR_IMP(IEvery)
INDICATOR_IMP_NO_PRIVATE_MEMBER_SERIALIZATION
public:
IEvery();
virtual ~IEvery();
};
} /* namespace hku */
#endif /* INDICATOR_IMP_IEVERY_H_ */