class Kucoin::Api::Endpoints::Markets::Histories

Public Instance Methods

klines(symbol, type, options={}) click to toggle source
# File lib/kucoin/api/endpoints/markets/histories.rb, line 11
def klines symbol, type, options={}
  open.ku_request :get, :klines, symbol: symbol, type: type, **options
end
trade(symbol) click to toggle source
# File lib/kucoin/api/endpoints/markets/histories.rb, line 7
def trade symbol
  open.ku_request :get, :trade, symbol: symbol
end