pub struct StrategyIndicators {
pub ema_fast: Vec<f64>,
pub ema_slow: Vec<f64>,
pub atr: Vec<f64>,
}Expand description
Bundle of per-strategy indicator series.
Fields§
§ema_fast: Vec<f64>§ema_slow: Vec<f64>§atr: Vec<f64>Trait Implementations§
Source§impl Clone for StrategyIndicators
impl Clone for StrategyIndicators
Source§fn clone(&self) -> StrategyIndicators
fn clone(&self) -> StrategyIndicators
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for StrategyIndicators
impl RefUnwindSafe for StrategyIndicators
impl Send for StrategyIndicators
impl Sync for StrategyIndicators
impl Unpin for StrategyIndicators
impl UnsafeUnpin for StrategyIndicators
impl UnwindSafe for StrategyIndicators
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