作者 karlet

feat:查询所有挂单

@@ -94,6 +94,13 @@ class BinanceFutures @@ -94,6 +94,13 @@ class BinanceFutures
94 return $this->requestAccount($method, $path, $param); 94 return $this->requestAccount($method, $path, $param);
95 } 95 }
96 96
  97 + //查询所有挂单
  98 + public function openOrders($param)
  99 + {
  100 + $path = '/fapi/v1/openOrders';
  101 + $method = 'GET';
  102 + return $this->requestAccount($method, $path, $param);
  103 + }
97 //取消所有订单 104 //取消所有订单
98 public function cancelAllOpenOrders($param) 105 public function cancelAllOpenOrders($param)
99 { 106 {