| 4 | |
| 5 | #[derive(Debug, Deserialize)] |
| 6 | struct OhlcRow { |
| 7 | open: f64, |
| 8 | high: f64, |
| 9 | low: f64, |
| 10 | close: f64, |
| 11 | } |
| 12 | |
| 13 | fn load_ohlc() -> (Vec<f64>, Vec<f64>, Vec<f64>, Vec<f64>) { |
| 14 | let path = std::path::Path::new(env!("CARGO_MANIFEST_DIR")) |
nothing calls this directly
no outgoing calls
no test coverage detected