[][src]Struct ta::indicators::SlowStochastic

pub struct SlowStochastic { /* fields omitted */ }

Slow stochastic oscillator.

Basically it is a fast stochastic oscillator smoothed with exponential moving average.

Parameters

  • stochastic_n - number of periods for fast stochastic (integer greater than 0). Default is 14. *ema_n - length for EMA (integer greater than 0). Default is 3.

Example

use ta::indicators::SlowStochastic;
use ta::Next;

let mut stoch = SlowStochastic::new(3, 2).unwrap();
assert_eq!(stoch.next(10.0), 50.0);
assert_eq!(stoch.next(50.0).round(), 83.0);
assert_eq!(stoch.next(50.0).round(), 94.0);
assert_eq!(stoch.next(30.0).round(), 31.0);
assert_eq!(stoch.next(55.0).round(), 77.0);

Methods

impl SlowStochastic[src]

pub fn new(stochastic_n: u32, ema_n: u32) -> Result<Self>[src]

Trait Implementations

impl Reset for SlowStochastic[src]

impl Next<f64> for SlowStochastic[src]

type Output = f64

impl<'a, T: High + Low + Close> Next<&'a T> for SlowStochastic[src]

type Output = f64

impl Default for SlowStochastic[src]

impl Clone for SlowStochastic[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Display for SlowStochastic[src]

impl Debug for SlowStochastic[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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<T> Any for T where
    T: 'static + ?Sized
[src]