quant-suite 0.1.1

A project aimed at creating tools for auto-trading, back-testing, and market analysis.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod models;

pub use models::price_alert::PriceAlert;

#[derive(thiserror::Error, Debug)]
pub enum Error {}

#[derive(Debug, Clone, PartialEq)]
pub enum AlertSet {
    High(f64),
    Low(f64),
}