Project

bittrex-rb

0.01
No commit activity in last 3 years
No release in over 3 years
Ruby Bittrex.com client
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 12.3

Runtime

~> 0.16
~> 2.1
 Project Readme

Bittrex

This gem allows you to connect and send requests to Bittrex exchange.

Example

client = Bittrex::Api.new("API_KEY", "API_SECRET")

client.summaries

cclient.balances

client.balance('BTC')

client.ticker('USD-BTC')

client.orderbook('USD-BTC', 'buy', 50)

client.market_history('USD-BTC', 10)

client.buy('USD-BTC', 1, 7500)

client.sell('USD-BTC', 1, 10000)

client.cancel(order_id)

client.open_orders('USD-BTC')

client.order_history('USD-BTC', 5)

Installation

Add this line to your application's Gemfile:

gem 'bittrex-rb', git: 'git://github.com/vizakenjack/ruby-bittrex-api.git'

And then execute:

$ bundle

Or install it yourself as:

$ gem install bittrex-rb

Require it at the top of the script:

$ require 'bittrex-rb'

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)