pub type MacdResult = Result<TripleVec, IndicatorError>;
pub enum MacdResult { Ok((Vec<f64>, Vec<f64>, Vec<f64>)), Err(IndicatorError), }
Contains the success value
Contains the error value