pub struct CandlestickMsg {
Show 15 fields pub exchange: String, pub market_type: MarketType, pub symbol: String, pub pair: String, pub msg_type: MessageType, pub timestamp: i64, pub json: String, pub begin_time: i64, pub open: f64, pub high: f64, pub low: f64, pub close: f64, pub volume: f64, pub period: String, pub quote_volume: Option<f64>,
}

Fields

exchange: String

The exchange name, unique for each exchage

market_type: MarketType

Market type

symbol: String

Exchange-specific trading symbol or id, recognized by RESTful API

pair: String

Unified pair, base/quote, e.g., BTC/USDT

msg_type: MessageType

Message type

timestamp: i64

Unix timestamp, in milliseconds

json: String

the original JSON message

begin_time: i64

Begin time of the candle cycle, in seconds

open: f64high: f64low: f64close: f64volume: f64

base volume

period: String

m, minute; H, hour; D, day; W, week; M, month; Y, year

quote_volume: Option<f64>

quote volume

Trait Implementations

Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.