이talib.APO()
함수는 계산에 사용됩니다절대 가격 오시레이터.
이 값의 반환 값은talib.APO()
함수는: 1차원 배열입니다.
배열
talib.APO ((인리얼) talib.APO ((inReal, optInFastPeriod) talib.APO ((inReal, optInFastPeriod, optInSlowPeriod) (실제, 빠른 기간, 느린 기간) talib.APO ((inReal, optInFastPeriod, optInSlowPeriod, optInMAType)
이inReal
K선 데이터를 지정하는 매개 변수입니다.
inReal
사실
{@struct/Record Record} 구조 배열, 수치 배열
의optInFastPeriod
패러미터는 빠른 기간을 설정하는 데 사용됩니다. 기본 값은 12입니다.
optInFastPeriod
거짓
번호
의optInSlowPeriod
이 매개 변수는 느린 기간을 설정하는 데 사용됩니다. 기본 값은 26입니다.
optSlowPeriod
거짓
번호
의optInMAType
매개 변수는 평균 유형을 설정하는 데 사용됩니다. 기본 값은 0입니다.
optInMAType
거짓
번호
function main() {
var records = exchange.GetRecords()
var ret = talib.APO(records)
Log(ret)
}
import talib
def main():
records = exchange.GetRecords()
ret = talib.APO(records.Close)
Log(ret)
void main() {
auto records = exchange.GetRecords();
auto ret = talib.APO(records);
Log(ret);
}
이APO()
그 기능은 탈리브 라이브러리 문서에 다음과 같이 설명되어 있습니다.APO(Records[Close],Fast Period = 12,Slow Period = 26,MA Type = 0) = Array(outReal)