pub struct Minimum<T>(/* private fields */);
Expand description
§Minimum Value Calculation for Rolling Windows
A specialized module for tracking minimum values in rolling windows of financial time-series data.
Uses an efficient data structure to maintain the minimum value at all times, providing constant-time lookups and amortized constant-time updates. This approach is particularly valuable for technical analysis indicators that require identifying price extremes, such as Donchian channels, volatility measures, and support/resistance level detection.
The implementation is optimized for financial time-series analysis where identifying minimum values within specific lookback periods is essential for decision-making processes.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Minimum<T>
impl<T> RefUnwindSafe for Minimum<T>where
T: RefUnwindSafe,
impl<T> Send for Minimum<T>where
T: Send,
impl<T> Sync for Minimum<T>where
T: Sync,
impl<T> Unpin for Minimum<T>
impl<T> UnwindSafe for Minimum<T>where
T: UnwindSafe,
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