talib.TSF()
函数用于计算Time Series Forecast (时间序列预测)。
talib.TSF()
函数的返回值为:一维数组。
array
talib.TSF(inReal) talib.TSF(inReal, optInTimePeriod)
inReal
参数用于指定K线数据。
inReal
true
{@struct/Record Record}结构数组、数值数组
optInTimePeriod
参数用于设置周期,默认值为14。
optInTimePeriod
false
number
function main() {
var records = exchange.GetRecords()
var ret = talib.TSF(records)
Log(ret)
}
import talib
def main():
records = exchange.GetRecords()
ret = talib.TSF(records.Close)
Log(ret)
void main() {
auto records = exchange.GetRecords();
auto ret = talib.TSF(records);
Log(ret);
}
TSF()
函数在talib库文档中的描述为:TSF(Records[Close],Time Period = 14) = Array(outReal)