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

Class AlignedOhlcvColumns

crates/openquant/src/data_processing.rs:43–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41
42#[derive(Debug, Clone, PartialEq)]
43pub struct AlignedOhlcvColumns {
44 pub timestamps_us: Vec<i64>,
45 pub symbols: Vec<String>,
46 pub open: Vec<Option<f64>>,
47 pub high: Vec<Option<f64>>,
48 pub low: Vec<Option<f64>>,
49 pub close: Vec<Option<f64>>,
50 pub volume: Vec<Option<f64>>,
51 pub adj_close: Vec<Option<f64>>,
52 pub is_missing_bar: Vec<bool>,
53}
54
55#[derive(Debug, Clone, PartialEq)]
56pub struct DataQualityReport {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected