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

exchange.GetPeriod

FMZ 양자 거래 플랫폼 웹 사이트 페이지에서 설정된 K-라인 기간을 얻으십시오 라이브 거래에서 역 테스트 및 전략을 실행 할 때, 즉 기본 K-라인 기간을 호출 할 때 사용exchange.GetRecords()매개 변수를 전달하지 않고 작동합니다.

K-선 기간은 초, 정수 값은 초입니다. 번호

교환.GetPeriod (()

function main() {
    // For example, the K-line period set on the website page of the FMZ Quant Trading platform during backtesting and live trading is 1 hour.
    var period = exchange.GetPeriod()
    Log("K-line period:", period / (60 * 60), "hours")
}
def main():
    period = exchange.GetPeriod()
    Log("K-line period:", period / (60 * 60), "hours")
void main() {
    auto period = exchange.GetPeriod();
    Log("K-line period:", period / (60 * 60.0), "hours");
}

{@fun/Market/exchange.GetRecords exchange.GetRecords}

exchange.GetRecords exchange.SetMaxBarLen