mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-05 05:17:47 +08:00
40 lines
638 B
C++
40 lines
638 B
C++
/*
|
|
* HSL.h
|
|
*
|
|
* Created on: 2019年3月6日
|
|
* Author: fasiondog
|
|
*/
|
|
|
|
#pragma once
|
|
#ifndef INDICATOR_CRT_HSL_H_
|
|
#define INDICATOR_CRT_HSL_H_
|
|
|
|
#include "KDATA.h"
|
|
#include "LIUTONGPAN.h"
|
|
#include "HSL.h"
|
|
|
|
namespace hku {
|
|
|
|
/**
|
|
* 获取换手率,等于 VOL(k) / CAPITAL(k)
|
|
* @param k 关联的K线数据
|
|
* @ingroup Indicator
|
|
*/
|
|
Indicator HSL(const KData& k);
|
|
Indicator HSL();
|
|
|
|
inline Indicator HSL() {
|
|
Indicator hsl = VOL() / LIUTONGPAN();
|
|
hsl.name("HSL");
|
|
return hsl;
|
|
}
|
|
|
|
inline Indicator HSL(const KData& k) {
|
|
Indicator hsl = HSL();
|
|
hsl.setContext(k);
|
|
return hsl;
|
|
}
|
|
|
|
}
|
|
#endif /* INDICATOR_CRT_HSL_H_ */
|