Skip to content

v1.1.1

Compare
Choose a tag to compare
@butschster butschster released this 02 Mar 10:03
· 47 commits to master since this release

Added new method for getting ticker information

$pairs = $client->getTicker(string|array $pair) : Butschster\Kraken\Objects\TickerCollection;

foreach($pairs as $pair) {
    $pair->name();
    $pair->askPrice();
    $pair->askWholeLotVolume();
    $pair->askLotVolume();
    $pair->askLotVolume();
    ...
}