module Binance::Spot::Market

def book_ticker(symbol: nil)

Other tags:
    See: https://developers.binance.com/docs/binance-spot-api-docs/rest-api#symbol-order-book-ticker -

Parameters:
  • symbol (String) -- the symbol
def book_ticker(symbol: nil)
  @session.public_request(
    path: '/api/v3/ticker/bookTicker',
    params: { symbol: symbol }
  )
end