Binance.Ticker (dwarves_binancex v0.1.23)

Struct for representing a result row as returned by /api/v1/ticker/24hr

defstruct [
  :symbol,
  :price_change,
  :price_change_percent,
  :weighted_avg_price,
  :last_price,
  :lastQty,
  :openPrice,
  :highPrice,
  :lowPrice,
  :volume,
  :quoteVolume,
  :open_time,
  :close_time,
  :first_id,
  :last_id,
  :count
]

Link to this section Summary

Link to this section Functions

Link to this function

new(map_or_kwlist, opts \\ [])

Specs

new(ExConstructor.map_or_kwlist(), Keyword.t()) :: %Binance.Ticker{
  close_time: term(),
  count: term(),
  first_id: term(),
  highPrice: term(),
  lastQty: term(),
  last_id: term(),
  last_price: term(),
  lowPrice: term(),
  openPrice: term(),
  open_time: term(),
  price_change: term(),
  price_change_percent: term(),
  quoteVolume: term(),
  symbol: term(),
  volume: term(),
  weighted_avg_price: term()
}