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

Class OhlcvRow

crates/openquant/src/data_processing.rs:6–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4
5#[derive(Debug, Clone, PartialEq)]
6pub struct OhlcvRow {
7 pub timestamp: NaiveDateTime,
8 pub symbol: String,
9 pub open: f64,
10 pub high: f64,
11 pub low: f64,
12 pub close: f64,
13 pub volume: f64,
14 pub adj_close: f64,
15}
16
17#[derive(Debug, Clone, PartialEq)]
18pub struct OhlcvColumns {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected