quantwave-plugins 0.1.8

A high-performance, Polars-native technical analysis library for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use polars::prelude::*;
use quantwave_core::indicators::smoothing::SMA;
use quantwave_core::traits::Next;
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.