pub struct BasicIndexes {
pub ma: MovingAverageResults,
pub rsi: RSIResult,
pub bb: BBResult,
pub atr: f64,
pub roc: ROCResult,
pub momentum: MomentumResult,
pub stochastic: StochResult,
pub support_resistance: SRResult,
}Fields§
§ma: MovingAverageResults§rsi: RSIResult§bb: BBResult§atr: f64§roc: ROCResult§momentum: MomentumResult§stochastic: StochResult§support_resistance: SRResultAuto Trait Implementations§
impl Freeze for BasicIndexes
impl RefUnwindSafe for BasicIndexes
impl Send for BasicIndexes
impl Sync for BasicIndexes
impl Unpin for BasicIndexes
impl UnwindSafe for BasicIndexes
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