Struct coinnect::types::Ticker [] [src]

pub struct Ticker {
    pub timestamp: i64,
    pub pair: Pair,
    pub last_trade_price: Price,
    pub lowest_ask: Price,
    pub highest_bid: Price,
    pub volume: Option<Volume>,
}

Fields

UNIX timestamp in ms (when the response was received)

The Pair corresponding to the Ticker returned (maybe useful later for asynchronous APIs)

Last trade price found in the history

Lowest ask price found in Orderbook

Highest bid price found in Orderbook

Last 24 hours volume (quote-volume)

Trait Implementations

impl Debug for Ticker
[src]

Formats the value using the given formatter.