MCPcopy Create free account
hub / github.com/Open-Quant/openquant / OhlcvColumns

Class OhlcvColumns

crates/openquant/src/data_processing.rs:18–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16
17#[derive(Debug, Clone, PartialEq)]
18pub 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)]
30pub struct AlignedOhlcvRow {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected