kraken_ruby
kraken_ruby copied to clipboard
Ruby Gem for Kraken Exchange API
Provides balance information with hold trade and free funds
Currently, the only way to check for error is to look at the content of the returned string. Not always easy, assume you need to know the actual content of...
Hi, The result that I get from the system does not provide me enough information. Example:
After installing the gem and trying to load it with `require 'kraken_ruby'` I get the following error: ``` /Users/blabla/.rbenv/versions/2.3.1/lib/ruby/2.3.0/rubygems/core_ext/kernel_require.rb:55:in `require': cannot load such file -- kraken_ruby (LoadError) from /Users/blabla/.rbenv/versions/2.3.1/lib/ruby/2.3.0/rubygems/core_ext/kernel_require.rb:55:in `require'...
Allows an API client to query recent deposits and withdrawals. A bug in Kraken's API prevents `withdraw_status` to be called with the "Query Funds" permission. You need withdrawal permission to...
Steps to reproduce, using RVM with Ruby 2.3.0 on a Mac (El Capitan), bundler 1.11.2: Gemfile contents: ``` rb source 'https://rubygems.org' ruby "2.3.0" gem 'kraken_ruby', '0.5' ``` ``` sh rvm...
Line 108: ``` ruby def trade_volume(asset_pairs) opts['pair'] = asset_pairs post_private 'TradeVolume', opts end ``` Should probably be: ``` ruby def trade_volume(asset_pairs, opts={}) opts['pair'] = asset_pairs post_private 'TradeVolume', opts end ```
Hey, I was about to start writing a gem for Kraken trading this morning, when I ran across your repository here on GitHub. I see you were last active about...