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

다시 시작Robot

RestartRobot이 방법은 라이브 거래를 재개하기 위해 사용됩니다.API KEY요청에 해당하는 FMZ 양 거래 플랫폼 계정입니다. 다시 시작 된 라이브 거래의 ID는robotId parameter.

{
    "code": 0,
    "data": {
        // 1 means running
        "result": 1,          
        "error": null
    }
}

robotId이 매개 변수를 사용 하 여 라이브 거래의 ID를 지정 하 고 다시 시작 됩니다.GetRobotList라이브 트레이딩 ID를 포함하는 계정에 라이브 트레이딩 정보를 얻는 방법. 로봇 사실 번호 실시간 거래 구성 매개 변수, 매개 변수settings포맷은 다음과 같습니다.

{
    "name": "hedge test",
    // Strategy parameter
    "args": [["Interval", 500]],            
    // Strategy ID, which can be obtained with "GetStrategyList" method
    "strategy": 25189,                      
    // K-line period parameter, "60" means 60 seconds
    "period": 60,                           
    // Specify on which docker to run; if the attribute is not written, it will be automatically assigned to run
    "node" : 51924,                         
    // Custom field
    "appid": "member2",                     
    "exchanges": [
        // ZB; "pid" can be obtained by "GetPlatformList" method
        {"pid": 15445, "pair": "ETH_BTC"},     
        // OKX; 2 exchange objects are configured
        {"pid": 13802, "pair": "BCH_BTC"},     
        
        // In addition to the platforms ("pid" identification) configured by the FMZ dashboard, you can also set exchange configuration information that has not been configured to operate live trading
        {"eid": "OKEX", "pair": "ETH_BTC", "meta" :{"AccessKey": "xxx", "SecretKey": "yyy"}},
        {"eid": "Huobi", "pair": "BCH_BTC", "meta" :{"AccessKey": "xxx", "SecretKey": "yyy"}}
    ]
}

플랫폼과 같은 민감한 정보를 사용할 때API KEY,"meta":{"AccessKey":"xxx","SecretKey":"yyy"}구성을 통해eid, 당신은 FMZ가 데이터를 저장하지 않는다는 것을 알아야합니다. 데이터는 직접 도커 프로그램에 전송됩니다. 그래서 이 정보는 실시간 거래가 생성되거나 다시 시작될 때마다 구성되어야합니다.

교환을 지원하는 플러그인을 사용하는 라이브 거래를 다시 시작하려면,settings매개 변수, 당신은 다음 설정을 해야 합니다exchanges속성:

{"eid": "Exchange", "label" : "testXXX", "pair": "ETH_BTC", "meta" :{"AccessKey": "123", "SecretKey": "1234", "Front" : "http://127.0.0.1:6666/XXX"}}

label이 속성은 현재에 의해 액세스 교환 객체에 대한 라벨을 설정합니다.일반 프로토콜,exchange.GetLabel()전략의 역할입니다.

설정 거짓 JSON 객체

만약 라이브 거래가 확장된 API에 의해 생성된다면, 확장된 API는RestartRobot (RobotId, Settings)재시작에 사용해야 합니다.settings매개 변수를 통과해야 합니다. 플랫폼 페이지에서 생성 된 라이브 거래는 확장 된 API를 통해 또는 페이지의 버튼을 클릭하여 다시 시작할 수 있습니다.settings매개 변수를 통과하면RobotId매개 변수, 현재 실시간 거래 설정에 따라 라이브 거래를 시작합니다.

정지Robot GetRobot 상세한 정보