module Bitstamp::HTTP::Ticker

Public Instance Methods

hourly_ticker(currency_pair:) click to toggle source
# File lib/bitstamp/http/ticker.rb, line 7
def hourly_ticker(currency_pair:)
  return call(request_uri('v2', 'ticker_hour', currency_pair), 'GET', nil)
end
ticker(currency_pair:) click to toggle source
# File lib/bitstamp/http/ticker.rb, line 3
def ticker(currency_pair:)
  return call(request_uri('v2', 'ticker', currency_pair), 'GET', nil)
end