quantwave 0.1.10

A high-performance, Polars-native technical analysis library for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! QuantWave: A high-performance technical analysis library.
//! 
//! This is the main umbrella crate that re-exports the core engine and Polars integration.

pub use quantwave_core as core;

#[cfg(feature = "polars")]
pub use quantwave_polars as polars;

/// Prelude for common traits and types.
pub mod prelude {
    pub use quantwave_core::traits::*;
    pub use quantwave_core::indicators::*;
    
    #[cfg(feature = "polars")]
    pub use quantwave_polars::prelude::*;
}