pub struct MovingAverageResults {
pub sma: SMAValues,
pub ema: EMAValues,
pub macd: Option<MACDResult>,
}Expand description
The consolidated results for moving averages.
Fields§
§sma: SMAValuesThe Simple Moving Average values.
ema: EMAValuesThe Exponential Moving Average values.
macd: Option<MACDResult>The MACD result (if available).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MovingAverageResults
impl RefUnwindSafe for MovingAverageResults
impl Send for MovingAverageResults
impl Sync for MovingAverageResults
impl Unpin for MovingAverageResults
impl UnwindSafe for MovingAverageResults
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more