Class: Mcoin::Market::Okex

Inherits:
Base
  • Object
show all
Defined in:
lib/mcoin/market/okex.rb

Overview

:nodoc:

Constant Summary collapse

ENDPOINT =
'https://www.okex.com/api/v1/ticker.do?symbol=%<type>s_%<currency>s'

Instance Attribute Summary

Attributes inherited from Base

#results

Instance Method Summary collapse

Methods inherited from Base

#establish_connection, #fetch, #initialize, #name, #to_ticker

Constructor Details

This class inherits a constructor from Mcoin::Market::Base

Instance Method Details

#watch(type, currency) ⇒ Object



9
10
11
# File 'lib/mcoin/market/okex.rb', line 9

def watch(type, currency)
  @pairs.add({ type: type.to_s.downcase, currency: currency.to_s.downcase })
end