| 28 | |
| 29 | #[derive(Debug, Clone, PartialEq)] |
| 30 | pub struct AlignedOhlcvRow { |
| 31 | pub timestamp: NaiveDateTime, |
| 32 | pub symbol: String, |
| 33 | pub open: Option<f64>, |
| 34 | pub high: Option<f64>, |
| 35 | pub low: Option<f64>, |
| 36 | pub close: Option<f64>, |
| 37 | pub volume: Option<f64>, |
| 38 | pub adj_close: Option<f64>, |
| 39 | pub is_missing_bar: bool, |
| 40 | } |
| 41 | |
| 42 | #[derive(Debug, Clone, PartialEq)] |
| 43 | pub struct AlignedOhlcvColumns { |
nothing calls this directly
no outgoing calls
no test coverage detected