Getting Started with Rust
QuantWave is built in Rust and provides high-performance crates for both core logic and Polars integration.
Installation
Add the crates you need to your Cargo.toml:
Quick Start (Polars)
use polars::prelude::*;
use quantwave_polars::TA;
fn main() -> PolarsResult<()> {
let df = df.lazy()
.ta()
.rsi("close", 14)
.collect()?;
Ok(())
}