module Binance::Spot::Market

def ticker_24hr(symbol: nil)

Other tags:
    See: https://binance-docs.github.io/apidocs/spot/en/#24hr-ticker-price-change-statistics -

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