trading-maid 1.0.2

A high-fidelity crypto futures backtesting and live trading framework with matching, margin, leverage and liquidation simulation.
Documentation
pub use async_trait;
pub mod context;
pub mod data;
pub mod engine;
pub mod exchange;
pub mod indicator;
pub mod local_exchange;
pub mod order;
pub mod series;
pub mod strategy;
pub mod util;

pub mod prelude {
    pub use crate::context::*;
    pub use crate::data::*;
    pub use crate::engine::*;
    pub use crate::exchange::*;
    pub use crate::indicator::*;
    pub use crate::local_exchange::*;
    pub use crate::order::*;
    pub use crate::series::*;
    pub use crate::strategy::*;
    pub use crate::util::*;
    pub use anyhow;
    pub use async_trait::*;
}