chapaty 1.1.3

An event-driven Rust engine for building and evaluating quantitative trading agents. Features a Gym-style API for algorithmic backtesting and reinforcement learning.
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod chapaty {
    pub mod bq_exporter {
        pub mod v1 {
            include!("proto_gen/chapaty.bq_exporter.v1.rs");
        }
    }

    pub mod data {
        pub mod v1 {
            include!("proto_gen/chapaty.data.v1.rs");
        }
    }
}