quantwave-core 0.1.4

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
#[derive(Debug, Clone)]
pub struct ParamDef {
    pub name: &'static str,
    pub default: &'static str,
    pub description: &'static str,
}

#[derive(Debug, Clone)]
pub struct IndicatorMetadata {
    pub name: &'static str,
    pub description: &'static str,
    pub params: &'static [ParamDef],
    pub formula_source: &'static str,
    pub formula_latex: &'static str,
    pub gold_standard_file: &'static str,
    pub category: &'static str,
}