|
...
|
...
|
@@ -86,6 +86,13 @@ class Api |
|
|
|
$method = 'POST';
|
|
|
|
return $this->request($path, $method, $param, $this->apiInfo);
|
|
|
|
}
|
|
|
|
//撤销订单
|
|
|
|
public function cancelOrder($param)
|
|
|
|
{
|
|
|
|
$path = '/api/v5/trade/cancel-order';
|
|
|
|
$method = 'POST';
|
|
|
|
return $this->request($path, $method, $param, $this->apiInfo);
|
|
|
|
}
|
|
|
|
//查看账户余额
|
|
|
|
public function accountBalance($param)
|
|
|
|
{
|
...
|
...
|
|