stock-trek 0.2.10

Stock Trek time-series analysis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::dto::raw_decimal::RawDecimal;

#[derive(Debug)]
pub struct RawMarketOhlcv {
    pub open: RawDecimal,
    pub high: RawDecimal,
    pub low: RawDecimal,
    pub close: RawDecimal,
    pub volume: RawDecimal,
    pub quote_volume: RawDecimal,
    pub vwap: RawDecimal,
}