Cáctalib.STOCH()
chức năng được sử dụng để tính toánChỉ số Stochastic (STOCH).
Giá trị trả lại củatalib.STOCH()
hàm là một mảng hai chiều.
mảng
talib.STOCH ((inPriceHLC) talib.STOCH ((inPriceHLC, optInFastK_Period) talib.STOCH ((inPriceHLC, optInFastK_Period, optInSlowK_Period) talib.STOCH ((inPriceHLC, optInFastK_Period, optInSlowK_Period, optInSlowK_MAType) talib.STOCH ((inPriceHLC, optInFastK_Period, optInSlowK_Period, optInSlowK_MAType, optInSlowD_Period) talib.STOCH ((inPriceHLC, optInFastK_Period, optInSlowK_Period, optInSlowK_MAType, optInSlowD_Period, optInSlowD_MAType)
CácinPriceHLC
tham số được sử dụng để xác định dữ liệu đường K.
inPriceHLC
đúng
{@struct/Record Record} cấu trúc mảng
CácoptInFastK_Period
tham số được sử dụng để thiết lập thời gian Fast-K, giá trị mặc định là 5.
optInFastK_Period
sai
số
CácoptInSlowK_Period
tham số được sử dụng để thiết lập thời gian Slow-K, giá trị mặc định là 3.
optInSlowK_Period
sai
số
CácoptInSlowK_MAType
tham số được sử dụng để thiết lập loại trung bình Slow-K, giá trị mặc định là 0.
optInSlowK_MAType
sai
số
CácoptInSlowD_Period
tham số được sử dụng để thiết lập thời gian Slow-D, giá trị mặc định là 3.
optInSlowD_Period
sai
số
CácoptInSlowD_MAType
tham số được sử dụng để thiết lập loại trung bình Slow-D, giá trị mặc định là 0.
optInSlowD_MAType
sai
số
function main() {
var records = exchange.GetRecords()
var ret = talib.STOCH(records)
Log(ret)
}
import talib
def main():
records = exchange.GetRecords()
ret = talib.STOCH(records.High, records.Low, records.Close)
Log(ret)
void main() {
auto records = exchange.GetRecords();
auto ret = talib.STOCH(records);
Log(ret);
}
CácSTOCH()
chức năng được mô tả trong tài liệu thư viện talib như sau:STOCH(Records[High,Low,Close],Fast-K Period = 5,Slow-K Period = 3,Slow-K MA = 0,Slow-D Period = 3,Slow-D MA = 0) = [Array(outSlowK),Array(outSlowD)]