mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-04 12:57:45 +08:00
36 lines
631 B
C++
36 lines
631 B
C++
/*
|
|
* LLV.h
|
|
*
|
|
* Copyright (c) 2019, hikyuu.org
|
|
*
|
|
* Created on: 2016年4月2日
|
|
* Author: fasiondog
|
|
*/
|
|
|
|
#pragma once
|
|
#ifndef INDICATOR_CRT_LLV_H_
|
|
#define INDICATOR_CRT_LLV_H_
|
|
|
|
#include "../Indicator.h"
|
|
|
|
namespace hku {
|
|
|
|
/**
|
|
* N日内最低价
|
|
* @param n N日时间窗口, N=0则从第一个有效值开始。
|
|
* @ingroup Indicator
|
|
*/
|
|
Indicator HKU_API LLV(int n = 20);
|
|
|
|
/**
|
|
* N日内最低价, N=0则从第一个有效值开始。
|
|
* @param ind 待计算的数据
|
|
* @param n N日时间窗口
|
|
* @ingroup Indicator
|
|
*/
|
|
Indicator HKU_API LLV(const Indicator& ind, int n = 20);
|
|
|
|
}
|
|
|
|
#endif /* INDICATOR_CRT_LLV_H_ */
|