Type Alias yata::core::Candlestick

source ·
pub type Candlestick = Candle;
Expand description

Just an alias for Candle

Aliased Type§

struct Candlestick {
    pub open: f64,
    pub high: f64,
    pub low: f64,
    pub close: f64,
    pub volume: f64,
}

Fields§

§open: f64

Open value of the candle

§high: f64

High value of the candle

§low: f64

Low value of the candle

§close: f64

Close value of the candle

§volume: f64

Volume value of the candle