binance-ruby icon indicating copy to clipboard operation
binance-ruby copied to clipboard

Ruby gem for the Binance API.

Results 8 binance-ruby issues
Sort by recently updated
recently updated
newest added

https://binance-docs.github.io/apidocs/spot/en/#symbol-price-ticker ticker endpoints supports sending an array of symbols and the current ticker! method does not allow you to do that, you can get info only about a single symbol....

Changed the exchange_info! method, had to use it Today, now it can receive symbol as well

With `BINANCE_TEST_NET_ENABLE=true` On this test code ```ruby require 'rubygems' require 'bundler/setup' require 'binance-ruby' Binance::Api.all_coins_info! ``` My Gemfile ```ruby source 'https://rubygems.org' gem 'binance-ruby' ``` I am getting the following errors: ```...

To allow API pull fiat currency history , useful for auditing .

With the current approach, all requests return only the response body, that is, a JSON that is converted into a hash. That means it's not possible to know information about...

module Binance module Api class Request include HTTParty #need for sub-account with email params **query_string_normalizer proc { |query| query.map do |key, value| [value].flatten.map {|v| "#{key}=#{v}"}.join('&') end.join('&') }**

websocket.rb will use wss://stream.binance.com:9443/stream despite of env BINANCE_TEST_NET_ENABLE