golden 0.1.5

All in one trading engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use time::OffsetDateTime;

pub mod csv;

pub trait BaseData{}

#[derive(Clone, Debug)]
pub struct Bar {
    pub date: OffsetDateTime,
    pub open: f64,
    pub high: f64,
    pub low: f64,
    pub close: f64,
    pub volume: f64,
    pub wap: f64,
    pub count: i32,
}