2016-04-03 00:08:31 +08:00
|
|
|
/*
|
|
|
|
* LLV.h
|
|
|
|
*
|
2019-05-16 21:59:32 +08:00
|
|
|
* Copyright (c) 2019, hikyuu.org
|
|
|
|
*
|
2016-04-03 00:08:31 +08:00
|
|
|
* Created on: 2016年4月2日
|
2016-04-14 01:36:53 +08:00
|
|
|
* Author: fasiondog
|
2016-04-03 00:08:31 +08:00
|
|
|
*/
|
|
|
|
|
2019-08-03 21:53:24 +08:00
|
|
|
#pragma once
|
2016-04-03 00:08:31 +08:00
|
|
|
#ifndef INDICATOR_CRT_LLV_H_
|
|
|
|
#define INDICATOR_CRT_LLV_H_
|
|
|
|
|
|
|
|
#include "../Indicator.h"
|
|
|
|
|
|
|
|
namespace hku {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* N日内最低价
|
2019-04-01 23:02:04 +08:00
|
|
|
* @param n N日时间窗口, N=0则从第一个有效值开始。
|
|
|
|
* @ingroup Indicator
|
2016-04-03 00:08:31 +08:00
|
|
|
*/
|
2016-04-25 01:39:07 +08:00
|
|
|
Indicator HKU_API LLV(int n = 20);
|
2016-04-03 00:08:31 +08:00
|
|
|
|
|
|
|
/**
|
2019-04-01 23:02:04 +08:00
|
|
|
* N日内最低价, N=0则从第一个有效值开始。
|
2016-04-03 00:08:31 +08:00
|
|
|
* @param ind 待计算的数据
|
|
|
|
* @param n N日时间窗口
|
2019-04-01 23:02:04 +08:00
|
|
|
* @ingroup Indicator
|
2016-04-03 00:08:31 +08:00
|
|
|
*/
|
2016-04-25 01:39:07 +08:00
|
|
|
Indicator HKU_API LLV(const Indicator& ind, int n = 20);
|
2016-04-03 00:08:31 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* INDICATOR_CRT_LLV_H_ */
|