ypho/bittrex

There is no license information available for the latest version (dev-master) of this package.

API Wrapper for the Bittrex cryptocurrency exchange

dev-master 2017-06-14 22:52 UTC

This package is auto-updated.

Last update: 2024-06-11 17:59:56 UTC


README

This package is a wrapper for the Bittrex.com Exchange. It can be used to check the current market, check your portfolio and place buy and sell orders.

Requirements

  • Account on bittrex.com, with an API key and API secret.

Usage

Install this package using:

composer require ypho/bittrex

Create an instance of the bittrex object, and call one of the available methods.

use Ypho\Bittrex\Client;

$key = 'here-comes-the-api-key-from-bittrex';
$secret = 'this-is-the-api-secret-from-bittrex';

// Create a new Bittrex client object
$btx = new Client($key, $secret);

// Get the current values for the BTC-LTC market
$ticker = $btx->ticker('BTC-LTC);

// Get the current orderbook for the BTC-DGB market
$oderBook = $btx->orderBook('BTC-DGB');

// Get your open orders for the BTC-ETH market
$orders = $btx->orderHistory('BTC-ETH);