리소스 로딩... 로딩...

talib.ULTOSC

talib.ULTOSC()함수는 계산에 사용됩니다최후 오시레이터.

이 값의 반환 값은talib.ULTOSC()함수는 1차원 배열입니다. 배열

talib.ULTOSC (인프라이스HLC) talib.ULTOSC ((인프라이스HLC, optInTimePeriod1) talib.ULTOSC ((인프라이스HLC, optInTimePeriod1, optInTimePeriod2) talib.ULTOSC ((inPriceHLC, optInTimePeriod1, optInTimePeriod2, optInTimePeriod3)

inPriceHLCK선 데이터를 지정하는 매개 변수입니다. inPriceHLC 사실 {@struct/Record Record} 구조 배열 의optInTimePeriod1첫 번째 항을 설정하는 매개 변수, 기본 값은 7입니다. optInTimePeriod1 거짓 번호 의optInTimePeriod2이 매개 변수는 두 번째 기간을 설정하는 데 사용됩니다. 기본 값은 14입니다. optInTimePeriod2 거짓 번호 의optInTimePeriod3세 번째 기간을 설정하는 매개 변수, 기본 값은 28입니다. optInTimePeriod3 거짓 번호

function main() {
    var records = exchange.GetRecords()
    var ret = talib.ULTOSC(records)
    Log(ret)
}
import talib
def main():
    records = exchange.GetRecords()
    ret = talib.ULTOSC(records.High, records.Low, records.Close)
    Log(ret)
void main() {
    auto records = exchange.GetRecords();
    auto ret = talib.ULTOSC(records);
    Log(ret);
}

ULTOSC()그 기능은 탈리브 라이브러리 문서에 다음과 같이 설명되어 있습니다.ULTOSC(Records[High,Low,Close],First Period = 7,Second Period = 14,Third Period = 28) = Array(outReal)

talib.TRIX talib.WILLR