作者 karlet

feat:增加调整杠杆

@@ -231,6 +231,12 @@ class BinanceSpot @@ -231,6 +231,12 @@ class BinanceSpot
231 $method = 'GET'; 231 $method = 'GET';
232 return $this->requestAccount($method, $path, $param); 232 return $this->requestAccount($method, $path, $param);
233 } 233 }
  234 + //调整全仓最大杠杆 (USER_DATA)
  235 + public function maxLeverageMargin($param){
  236 + $path = '/sapi/v1/margin/max-leverage';
  237 + $method = 'POST';
  238 + return $this->requestAccount($method, $path, $param);
  239 + }
234 240
235 /* 241 /*
236 * ================================== 242 * ==================================