hikyuu2/hikyuu_cpp/hikyuu/indicator/crt/ROCP.h
2019-06-01 23:54:18 +08:00

31 lines
502 B
C++

/*
* ROCP.h
*
* Copyright (c) 2019, hikyuu.org
*
* Created on: 2019-5-18
* Author: fasiondog
*/
#ifndef INDICATOR_CRT_ROCP_H_
#define INDICATOR_CRT_ROCP_H_
#include "../Indicator.h"
namespace hku {
/**
* 变动率指标 (price - prePrice) / prevPrice
* @ingroup Indicator
*/
Indicator HKU_API ROCP(int n =10);
Indicator ROCP(const Indicator& ind, int n = 10);
inline Indicator ROCP(const Indicator& ind, int n) {
return ROCP(n)(ind);
}
}
#endif /* INDICATOR_CRT_ROCP_H_ */