Skip to content

Commit

Permalink
add cancel_by_symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
zhouaini528 committed Feb 15, 2022
1 parent 188dda3 commit 134c815
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/Api/Spot/Orders.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,14 @@ public function getDealDetail(array $data=[]){
$this->data=$data;
return $this->exec();
}

/**
*DELETE /open/api/v2/order/cancel_by_symbol
* */
public function deleteCancelBySymbol(array $data=[]){
$this->type='DELETE';
$this->path='/open/api/v2/order/cancel_by_symbol';
$this->data=$data;
return $this->exec();
}
}

0 comments on commit 134c815

Please sign in to comment.