mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-05 05:17:47 +08:00
41 lines
822 B
C++
41 lines
822 B
C++
/*
|
||
* BARSLAST.h
|
||
*
|
||
* Copyright (c) 2019 hikyuu.org
|
||
*
|
||
* Created on: 2019-5-4
|
||
* Author: fasiondog
|
||
*/
|
||
|
||
#ifndef INDICATOR_CRT_BARSLAST_H_
|
||
#define INDICATOR_CRT_BARSLAST_H_
|
||
|
||
#include "CVAL.h"
|
||
|
||
namespace hku {
|
||
|
||
/**
|
||
* 上一次条件成立位置, 上一次条件成立到当前的周期数。
|
||
* @details
|
||
* <pre>
|
||
* 用法:BARSLAST(X): 上一次 X 不为 0 到现在的天数。
|
||
* 例如:BARSLAST(CLOSE/REF(CLOSE,1)>=1.1) 表示上一个涨停板到当前的周期数。
|
||
* </pre>
|
||
* @ingroup Indicator
|
||
*/
|
||
Indicator HKU_API BARSLAST();
|
||
Indicator BARSLAST(price_t);
|
||
Indicator BARSLAST(const Indicator& ind);
|
||
|
||
inline Indicator BARSLAST(const Indicator& ind) {
|
||
return BARSLAST()(ind);
|
||
}
|
||
|
||
inline Indicator BARSLAST(price_t val) {
|
||
return BARSLAST(CVAL(val));
|
||
}
|
||
|
||
}
|
||
|
||
#endif /* INDICATOR_CRT_BARSLAST_H_ */
|