pub struct IntraBarConfig {
pub compute_hurst: bool,
pub compute_permutation_entropy: bool,
}Expand description
Issue #128: Configuration for intra-bar feature computation.
Controls which expensive complexity features (Hurst, Permutation Entropy) are computed within each bar. ITH and statistical features are always computed.
Fields§
§compute_hurst: boolWhether to compute intra-bar Hurst exponent (requires >= 64 trades)
compute_permutation_entropy: boolWhether to compute intra-bar Permutation Entropy (requires >= 60 trades)
Trait Implementations§
Source§impl Clone for IntraBarConfig
impl Clone for IntraBarConfig
Source§fn clone(&self) -> IntraBarConfig
fn clone(&self) -> IntraBarConfig
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 IntraBarConfig
impl Debug for IntraBarConfig
Source§impl Default for IntraBarConfig
impl Default for IntraBarConfig
Source§fn default() -> IntraBarConfig
fn default() -> IntraBarConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for IntraBarConfig
impl RefUnwindSafe for IntraBarConfig
impl Send for IntraBarConfig
impl Sync for IntraBarConfig
impl Unpin for IntraBarConfig
impl UnsafeUnpin for IntraBarConfig
impl UnwindSafe for IntraBarConfig
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