talib.HT_TRENDLINE()
函数用于计算Hilbert Transform - Instantaneous Trendline (希尔伯特变换,瞬时趋势)。
talib.HT_TRENDLINE()
函数的返回值为:一维数组。
array
talib.HT_TRENDLINE(inReal)
inReal
参数用于指定K线数据。
inReal
true
{@struct/Record Record}结构数组、数值数组
function main() {
var records = exchange.GetRecords()
var ret = talib.HT_TRENDLINE(records)
Log(ret)
}
import talib
def main():
records = exchange.GetRecords()
ret = talib.HT_TRENDLINE(records.Close)
Log(ret)
void main() {
auto records = exchange.GetRecords();
auto ret = talib.HT_TRENDLINE(records);
Log(ret);
}
HT_TRENDLINE()
函数在talib库文档中的描述为:HT_TRENDLINE(Records[Close]) = Array(outReal)