Overview

Namespaces

  • Sotr
    • Crypto
      • Bitstamp
      • Btce

Classes

  • Sotr\Crypto\AbstractApi
  • Sotr\Crypto\AbstractRequestSigner
  • Sotr\Crypto\AccountBalance
  • Sotr\Crypto\Bitstamp\BitstampApi
  • Sotr\Crypto\Bitstamp\BitstampRequestSigner
  • Sotr\Crypto\Btce\BtceApi
  • Sotr\Crypto\Btce\BtceCurrencyPairResolver
  • Sotr\Crypto\Btce\BtceRequestSigner
  • Sotr\Crypto\CurrencyPair
  • Sotr\Crypto\Ticker
  • Sotr\Crypto\TimestampNonceGenerator

Interfaces

  • Sotr\Crypto\CurrencyPairResolverInterface
  • Sotr\Crypto\ExchangeApiInterface
  • Sotr\Crypto\NonceGeneratorInterface
  • Sotr\Crypto\RequestSignerInterface
  • Overview
  • Namespace
  • Class
 1: <?php
 2: namespace Sotr\Crypto;
 3: 
 4: class Ticker
 5: {
 6:     protected $last;
 7:     protected $high;
 8:     protected $low;
 9:     protected $bid;
10:     protected $ask;
11: 
12:     public function __construct($last, $high, $low, $bid, $ask)
13:     {
14:         $this->last = $last;
15:         $this->high = $high;
16:         $this->low = $low;
17:         $this->bid = $bid;
18:         $this->ask = $ask;
19:     }
20: }
21: 
API documentation generated by ApiGen