Method: Bitfinex::RESTv1HistoricalData#history
- Defined in:
- lib/rest/v1/historical_data.rb
#history(currency = "usd", params = {}) ⇒ Array
View all of your balance ledger entries.
@example:
client.history
14 15 16 17 18 |
# File 'lib/rest/v1/historical_data.rb', line 14 def history(currency="usd", params = {}) check_params(params, %i{since until limit wallet}) params.merge!({currency: currency}) authenticated_post("history", params: params).body end |