quantwave-plugins 0.5.1

A high-performance, Polars-native technical analysis library for Rust.
Documentation
1
2
3
4
5
6
7
8
9
use serde::{Deserialize, Serialize};

#[derive(Deserialize, Serialize)]
pub struct SmaKwargs {
    pub period: usize,
}

// Polars Expression Plugins were removed because they required PyO3, 
// which was causing version conflicts. The Python package now uses UniFFI exclusively.