| 4 | |
| 5 | #[derive(Debug, Clone, PartialEq)] |
| 6 | pub struct OhlcvRow { |
| 7 | pub timestamp: NaiveDateTime, |
| 8 | pub symbol: String, |
| 9 | pub open: f64, |
| 10 | pub high: f64, |
| 11 | pub low: f64, |
| 12 | pub close: f64, |
| 13 | pub volume: f64, |
| 14 | pub adj_close: f64, |
| 15 | } |
| 16 | |
| 17 | #[derive(Debug, Clone, PartialEq)] |
| 18 | pub struct OhlcvColumns { |
nothing calls this directly
no outgoing calls
no test coverage detected