class Cryptoexchange::Models::Ticker
Attributes
ask[RW]
base[RW]
bid[RW]
change[RW]
high[RW]
last[RW]
low[RW]
market[RW]
payload[RW]
target[RW]
timestamp[RW]
volume[RW]
Public Class Methods
new(params = {})
click to toggle source
Volume is always in base
# File lib/cryptoexchange/models/ticker.rb, line 10 def initialize(params = {}) params.each { |key, value| send "#{key}=", value } end