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

Class AlignedOhlcvRow

crates/openquant/src/data_processing.rs:30–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28
29#[derive(Debug, Clone, PartialEq)]
30pub struct AlignedOhlcvRow {
31 pub timestamp: NaiveDateTime,
32 pub symbol: String,
33 pub open: Option<f64>,
34 pub high: Option<f64>,
35 pub low: Option<f64>,
36 pub close: Option<f64>,
37 pub volume: Option<f64>,
38 pub adj_close: Option<f64>,
39 pub is_missing_bar: bool,
40}
41
42#[derive(Debug, Clone, PartialEq)]
43pub struct AlignedOhlcvColumns {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected