Trait baseline::bar::OHLC

source ·
pub trait OHLC {
    type Type;

    fn open(&self) -> Self::Type;
    fn high(&self) -> Self::Type;
    fn low(&self) -> Self::Type;
    fn close(&self) -> Self::Type;
}

Required Associated Types

Required Methods

Trait Implementations

Implementors