hikyuu2/hikyuu_cpp/hikyuu/indicator/imp/Ema.h
2019-03-15 23:35:09 +08:00

31 lines
488 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.

/*
* Ema.h
*
* Created on: 2013-4-10
* Author: fasiondog
*/
#ifndef EMA_H_
#define EMA_H_
#include "../Indicator.h"
namespace hku {
/*
* 指数移动平均线(Exponential Moving Average)
* 参数: n: 计算均值的周期窗口必须为大于0的整数
* 抛弃数 = 0
*/
class Ema: public IndicatorImp {
INDICATOR_IMP(Ema)
INDICATOR_IMP_NO_PRIVATE_MEMBER_SERIALIZATION
public:
Ema();
virtual ~Ema();
};
} /* namespace hku */
#endif /* EMA_H_ */