mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-05 05:17:47 +08:00
32 lines
533 B
C++
32 lines
533 B
C++
/*
|
|
* ROCP.h
|
|
*
|
|
* Copyright (c) 2019, hikyuu.org
|
|
*
|
|
* Created on: 2019-5-18
|
|
* Author: fasiondog
|
|
*/
|
|
|
|
#pragma once
|
|
#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);
|
|
}
|
|
|
|
} // namespace hku
|
|
|
|
#endif /* INDICATOR_CRT_ROCP_H_ */
|