atelier/lib.rs
1//! # Atelier
2//! Provides a computational framework that can be used as a workshop to develop Financial Machine Learning models, especifically battle tested to the level of Market microstructure.
3//! Features include:
4//! * **Market Simulation**: A synthetic simulation of a market, as detailed as the provided configuration.
5//! * **Market Replay**: A high-fidelity reproduction of what actually happened, all the way down to the data granularity that is provided.
6
7#![allow(dead_code)]
8#![allow(warnings)]
9
10/// Core data types and data structures.
11pub mod data;
12
13/// Stochastic data generation with probabilistic models.
14pub mod generators;
15
16/// Metrics calculation about various aspects and processes.
17pub mod metrics;
18
19/// Messages structures for: Errors, Success, Events, and Logs.
20pub mod messages;