quantwave_core/indicators/
metadata.rs1#[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,
13 pub usage: &'static str,
15 pub keywords: &'static [&'static str],
17 pub ehlers_summary: &'static str,
19 pub params: &'static [ParamDef],
20 pub formula_source: &'static str,
21 pub formula_latex: &'static str,
22 pub gold_standard_file: &'static str,
23 pub category: &'static str,
24}