Skip to content

Commit

Permalink
Merge pull request #3 from Time02/master
Browse files Browse the repository at this point in the history
add get all ticker
  • Loading branch information
zhouaini528 authored Aug 13, 2021
2 parents f5e2e0f + 3c2501f commit 93e7f23
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/Api/Exchange/Market.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@ public function getTicker(array $data=[]){
return $this->exec();
}

/**
*GET https://api.coinex.com/v1/market/ticker/all
* */
public function getTickerAll(array $data=[]){
$this->type='GET';
$this->path='/market/ticker/all';
$this->data=$data;
return $this->exec();
}

/**
*GET https://api.coinex.com/v1/market/depth
* */
Expand Down

0 comments on commit 93e7f23

Please sign in to comment.