Struct coinbase_api::Candle[][src]

pub struct Candle(_, _, _, _, _, _);

(time, low, high, open, close, volume)

  • time: Bucket start time.
  • low: Lowest price during the bucket interval.
  • high: Highest price during the bucket interval.
  • open: Opening price (first trade) in the bucket interval.
  • close: Closing price (last trade) in the bucket interval.
  • volume: Volume of trading activity during the bucket interval.

Trait Implementations

impl Debug for Candle
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Candle

impl Sync for Candle