hikyuu2/hikyuu_cpp/hikyuu/indicator/crt/LLV.h

36 lines
631 B
C++
Raw Normal View History

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: 201642
2016-04-14 01:36:53 +08:00
* Author: fasiondog
2016-04-03 00:08:31 +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日内最低价
* @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
/**
* N日内最低价, N=0
2016-04-03 00:08:31 +08:00
* @param ind
* @param n N日时间窗口
* @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_ */