Cáctalib.STOCHRSI()
chức năng được sử dụng để tính toánChỉ số sức mạnh tương đối của Stochastic.
Giá trị trả lại củatalib.STOCHRSI()
chức năng là: một mảng hai chiều.
mảng
talib.STOCHRSI ((inReal) talib.STOCHRSI ((inReal, optInTimePeriod) talib.STOCHRSI ((inReal, optInTimePeriod, optInFastK_Period) talib.STOCHRSI ((inReal, optInTimePeriod, optInFastK_Period, optInFastD_Period) talib.STOCHRSI ((inReal, optInTimePeriod, optInFastK_Period, optInFastD_Period, optInFastD_MAType)
CácinReal
tham số được sử dụng để xác định dữ liệu đường K.
inReal
đúng
{@struct/Record Record} cấu trúc mảng, mảng số
CácoptInTimePeriod
tham số được sử dụng để thiết lập khoảng thời gian, giá trị mặc định là 14.
optInTimePeriod
sai
số
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ácoptInFastD_Period
tham số được sử dụng để thiết lập thời gian Fast-D, giá trị mặc định là 3.
optInFastD_Period
sai
số
CácoptInFastD_MAType
tham số được sử dụng để thiết lập kiểu trung bình Fast-D, giá trị mặc định là 0.
optInFastD_MAType
sai
số
function main() {
var records = exchange.GetRecords()
var ret = talib.STOCHRSI(records)
Log(ret)
}
import talib
def main():
records = exchange.GetRecords()
ret = talib.STOCHRSI(records.Close)
Log(ret)
void main() {
auto records = exchange.GetRecords();
auto ret = talib.STOCHRSI(records);
Log(ret);
}
CácSTOCHRSI()
chức năng được mô tả trong tài liệu thư viện talib như sau:STOCHRSI(Records[Close],Time Period = 14,Fast-K Period = 5,Fast-D Period = 3,Fast-D MA = 0) = [Array(outFastK),Array(outFastD)]