avin 0.4.0

Open source cross-platform trading system
Documentation
1
2
3
4
5
6
7
8
9
10
11
use avin::utils;

fn main() -> eframe::Result {
    utils::init_logger();

    eframe::run_native(
        "AVIN - Tester",
        eframe::NativeOptions::default(),
        Box::new(|cc| Ok(Box::new(avin::gui::Tester::new(cc)))),
    )
}