이GetRobotList
이 방법은 FMZ 양자 거래 플랫폼 계정에 해당하는 라이브 거래 목록을 얻기 위해 사용됩니다.API KEY
신청서에서
{
"code": 0,
"data": {
"result": {
"all": 53,
"robots": [{
"date": "2017-12-25 09:29:27",
"end_time": "2017-12-28 17:44:21",
"id": 66054,
// If the value is 1, the live trading is a virtual platform live trading
"is_sandbox": 1,
"name": "C++ test strategy",
"node_guid": "705d9aaaaaaaa93b49baaaaa787581cb087",
"profit": 0,
"public": 0,
"refresh": 151345645647000,
"start_time": "2017-12-28 17:44:15",
"status": 3,
"strategy_id": 65365,
"strategy_isowner": true,
"strategy_name": "C++ Version Docker API Test Strategy(cryptocurrency futures and spot markets)",
"wd": 0
}, ...
]
},
"error": null
}
}
페이징 쿼리 오프셋 설정
오프셋
거짓
번호
페이징 쿼리 길이 설정
길이가
거짓
번호
쿼리해야 하는 라이브 거래의 상태를 지정하고 확장된 API 인터페이스를 참조하십시오.실시간 거래 코드합격-1
모든 라이브 트레이딩을 얻기 위해.
robot상황
거짓
번호
쿼리하려는 라이브 트레이딩의 사용자 지정 레이블을 지정하면 이 레이블의 모든 라이브 트레이딩을 필터링할 수 있습니다.
라벨
거짓
문자열
이봐요Python
languageprint(api('GetRobotList', 'member2'))
: 사용자 지정 라벨로 모든 라이브 거래의 정보를 인쇄member2
. print(api('GetRobotList', 0, 5, -1, 'member2'))
: 0에서 5까지의 페이지와member2
.