pub struct MacdSeries {
pub macd: Vec<Option<f64>>,
pub signal: Vec<Option<f64>>,
pub histogram: Vec<Option<f64>>,
pub params: MacdParams,
}Expand description
Aligned MACD / signal / histogram series.
Fields§
§macd: Vec<Option<f64>>§signal: Vec<Option<f64>>§histogram: Vec<Option<f64>>§params: MacdParamsImplementations§
Trait Implementations§
Source§impl Clone for MacdSeries
impl Clone for MacdSeries
Source§fn clone(&self) -> MacdSeries
fn clone(&self) -> MacdSeries
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MacdSeries
impl Debug for MacdSeries
Source§impl PartialEq for MacdSeries
impl PartialEq for MacdSeries
impl StructuralPartialEq for MacdSeries
Auto Trait Implementations§
impl Freeze for MacdSeries
impl RefUnwindSafe for MacdSeries
impl Send for MacdSeries
impl Sync for MacdSeries
impl Unpin for MacdSeries
impl UnsafeUnpin for MacdSeries
impl UnwindSafe for MacdSeries
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more