quantwave_core/indicators/metadata.rs
1#[derive(Debug, Clone)]
2pub struct ParamDef {
3 pub name: &'static str,
4 pub default: &'static str,
5 pub description: &'static str,
6}
7
8#[derive(Debug, Clone)]
9pub struct IndicatorMetadata {
10 pub name: &'static str,
11 pub description: &'static str,
12 pub params: &'static [ParamDef],
13 pub formula_source: &'static str,
14 pub formula_latex: &'static str,
15 pub gold_standard_file: &'static str,
16 pub category: &'static str,
17}