Bittrex v3.0.0 Bittrex.Candle View Source

A Bittrex Candle.

Link to this section Summary

Types

t()
  • tick: time stamp of tick in UTC.
  • open: open.
  • high: high.
  • low: low.
  • close: close.
  • volume: volume.
  • base_volume: base volume

Link to this section Types

Link to this type

t() View Source
t() :: %Bittrex.Candle{
  base_volume: number(),
  close: number(),
  high: number(),
  low: number(),
  open: number(),
  tick: NaiveDateTime.t(),
  volume: number()
}

  • tick: time stamp of tick in UTC.
  • open: open.
  • high: high.
  • low: low.
  • close: close.
  • volume: volume.
  • base_volume: base volume.