| 16 | |
| 17 | #[derive(Debug, Clone, PartialEq)] |
| 18 | pub struct OhlcvColumns { |
| 19 | pub timestamps_us: Vec<i64>, |
| 20 | pub symbols: Vec<String>, |
| 21 | pub open: Vec<f64>, |
| 22 | pub high: Vec<f64>, |
| 23 | pub low: Vec<f64>, |
| 24 | pub close: Vec<f64>, |
| 25 | pub volume: Vec<f64>, |
| 26 | pub adj_close: Vec<f64>, |
| 27 | } |
| 28 | |
| 29 | #[derive(Debug, Clone, PartialEq)] |
| 30 | pub struct AlignedOhlcvRow { |
nothing calls this directly
no outgoing calls
no test coverage detected