atelier-0.0.6 has been yanked.
Atelier
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. Features include:
- Market Replay: A high-fidelity reproduction of what actually happened, all the way down to the data granularity that is provided.
- Market Simulation: A synthetic simulation of a market, as detailed as the provided configuration.
Example: Synthetic Orderbook
use Orderbook;
let bid_price = 50_000.00;
let ask_price = 50_100.00;
let tick_size = 100.0;
let n_levels = 200;
let n_orders = 300;
let i_ob = synthetize;