Class: ItbitApiWrapper
- Inherits:
-
Object
- Object
- ItbitApiWrapper
- Defined in:
- lib/bitex_bot/models/itbit_api_wrapper.rb
Class Method Summary collapse
- .amount_and_quantity(order_id, transactions) ⇒ Object
- .balance ⇒ Object
- .order_book ⇒ Object
- .orders ⇒ Object
- .place_order(type, price, quantity) ⇒ Object
- .setup(settings) ⇒ Object
- .transactions ⇒ Object
-
.user_transactions ⇒ Object
We don’t need to fetch the list of transactions for itbit since we wont actually use them later.
Class Method Details
.amount_and_quantity(order_id, transactions) ⇒ Object
43 44 45 46 |
# File 'lib/bitex_bot/models/itbit_api_wrapper.rb', line 43 def self.amount_and_quantity(order_id, transactions) order = Itbit::Order.find(order_id) [order.volume_weighted_average_price * order.amount_filled, order.amount_filled] end |
.balance ⇒ Object
18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/bitex_bot/models/itbit_api_wrapper.rb', line 18 def self.balance balances = Itbit::Wallet.all .find{|i| i[:id] == Itbit.default_wallet_id }[:balances] usd = balances.find{|x| x[:currency] == :usd } btc = balances.find{|x| x[:currency] == :xbt } { "btc_balance" => btc[:total_balance], "btc_reserved" => btc[:total_balance] - btc[:available_balance], "btc_available" => btc[:available_balance], "usd_balance" => usd[:total_balance], "usd_reserved" => usd[:total_balance] - usd[:available_balance], "usd_available" => usd[:available_balance], "fee" => 0.5 } end |
.order_book ⇒ Object
14 15 16 |
# File 'lib/bitex_bot/models/itbit_api_wrapper.rb', line 14 def self.order_book Itbit::XBTUSDMarketData.orders.stringify_keys end |
.orders ⇒ Object
33 34 35 |
# File 'lib/bitex_bot/models/itbit_api_wrapper.rb', line 33 def self.orders Itbit::Order.all(status: :open) end |
.place_order(type, price, quantity) ⇒ Object
48 49 50 |
# File 'lib/bitex_bot/models/itbit_api_wrapper.rb', line 48 def self.place_order(type, price, quantity) Itbit::Order.create!(type, :xbtusd, quantity, price, wait: true) end |
.setup(settings) ⇒ Object
2 3 4 5 6 7 8 |
# File 'lib/bitex_bot/models/itbit_api_wrapper.rb', line 2 def self.setup(settings) Itbit.client_key = settings.itbit.client_key Itbit.secret = settings.itbit.secret Itbit.user_id = settings.itbit.user_id Itbit.default_wallet_id = settings.itbit.default_wallet_id Itbit.sandbox = settings.sandbox end |
.transactions ⇒ Object
10 11 12 |
# File 'lib/bitex_bot/models/itbit_api_wrapper.rb', line 10 def self.transactions Itbit::XBTUSDMarketData.trades.collect{|t| Hashie::Mash.new(t) } end |
.user_transactions ⇒ Object
We don’t need to fetch the list of transactions for itbit since we wont actually use them later.
39 40 41 |
# File 'lib/bitex_bot/models/itbit_api_wrapper.rb', line 39 def self.user_transactions [] end |