module Bitfinex::RESTv1Ticker
Public Instance Methods
ticker(symbol = "btcusd")
click to toggle source
Gives innermost bid and asks and information on the most recent trade, as well as high, low and volume of the last 24 hours.
@param symbol [string] The name of hthe symbol @return [Hash] @example:
client.ticker
# File lib/rest/v1/ticker.rb, line 9 def ticker(symbol = "btcusd") get("pubticker/#{symbol}").body end