pub struct PossibleRsiParams {
pub period: Option<usize>,
pub rsi_mode: Option<String>,
pub norm_period: Option<usize>,
pub normalization_mode: Option<String>,
pub normalization_length: Option<usize>,
pub nonlag_period: Option<usize>,
pub dynamic_zone_period: Option<usize>,
pub buy_probability: Option<f64>,
pub sell_probability: Option<f64>,
pub signal_type: Option<String>,
pub run_highpass: Option<bool>,
pub highpass_period: Option<usize>,
}Fields§
§period: Option<usize>§rsi_mode: Option<String>§norm_period: Option<usize>§normalization_mode: Option<String>§normalization_length: Option<usize>§nonlag_period: Option<usize>§dynamic_zone_period: Option<usize>§buy_probability: Option<f64>§sell_probability: Option<f64>§signal_type: Option<String>§run_highpass: Option<bool>§highpass_period: Option<usize>Trait Implementations§
Source§impl Clone for PossibleRsiParams
impl Clone for PossibleRsiParams
Source§fn clone(&self) -> PossibleRsiParams
fn clone(&self) -> PossibleRsiParams
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 moreSource§impl Debug for PossibleRsiParams
impl Debug for PossibleRsiParams
Auto Trait Implementations§
impl Freeze for PossibleRsiParams
impl RefUnwindSafe for PossibleRsiParams
impl Send for PossibleRsiParams
impl Sync for PossibleRsiParams
impl Unpin for PossibleRsiParams
impl UnsafeUnpin for PossibleRsiParams
impl UnwindSafe for PossibleRsiParams
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