Struct quantaxis_rs::indicators::LLV[][src]

pub struct LLV {
    pub cached: Vec<f64>,
    // some fields omitted
}

Returns the lowest value in a given time frame.

Parameters

  • n - size of the time frame (integer greater than 0). Default value is 14.

Example

use quantaxis_rs::indicators::LLV;
use quantaxis_rs::Next;

let mut min = LLV::new(3).unwrap();
assert_eq!(min.next(10.0), 10.0);
assert_eq!(min.next(11.0), 10.0);
assert_eq!(min.next(12.0), 10.0);
assert_eq!(min.next(13.0), 11.0);

Fields

cached: Vec<f64>

Implementations

impl LLV[src]

pub fn new(n: u32) -> Result<Self>[src]

pub fn new_init(n: u32, vec: Vec<f64>) -> Result<Self>[src]

Trait Implementations

impl Clone for LLV[src]

impl Debug for LLV[src]

impl Default for LLV[src]

impl Display for LLV[src]

impl<'a, T: Low> Next<&'a T> for LLV[src]

type Output = f64

impl Next<f64> for LLV[src]

type Output = f64

impl Reset for LLV[src]

impl Update<f64> for LLV[src]

type Output = f64

Auto Trait Implementations

impl RefUnwindSafe for LLV

impl Send for LLV

impl Sync for LLV

impl Unpin for LLV

impl UnwindSafe for LLV

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,