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

35 lines
690 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.

/*
* Macd.h
*
* Created on: 2013-4-10
* Author: fasiondog
*/
#ifndef MACD_H_
#define MACD_H_
#include "../Indicator.h"
namespace hku {
/*
* MACD平滑异同移动平均线
* 参数: n1: 短期EMA时间窗
* n2: 长期EMA时间窗
* n3: 短期EMA-长期EMAEMA平滑时间窗
* 返回1)MACD BAR MACD直柱即MACD快线MACD慢线
* 2)DIFF: 快线,即短期EMA-长期EMA
* 3)DEA: 慢线即快线的n3周期EMA平滑
*/
class Macd: public IndicatorImp {
INDICATOR_IMP(Macd)
INDICATOR_IMP_NO_PRIVATE_MEMBER_SERIALIZATION
public:
Macd();
virtual ~Macd();
};
} /* namespace hku */
#endif /* MACD_H_ */