Module: Bitfinex::RESTv1FundingBook
- Included in:
- RESTv1
- Defined in:
- lib/rest/v1/funding_book.rb
Instance Method Summary collapse
-
#funding_book(currency = "usd", params = {}) ⇒ Hash
Get the full margin funding book.
Instance Method Details
#funding_book(currency = "usd", params = {}) ⇒ Hash
Get the full margin funding book
@example:
client.funding_book
11 12 13 14 |
# File 'lib/rest/v1/funding_book.rb', line 11 def funding_book(currency="usd", params = {}) check_params(params, %i{limit_bids limit_asks}) get("lendbook/#{currency}", params: params).body end |