[][src]Struct cxmr_ta_core::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::{Calculate, Next};

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

Methods

impl SlowStochastic[src]

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

Trait Implementations

impl Calculate for SlowStochastic[src]

impl Clone for SlowStochastic[src]

impl Debug for SlowStochastic[src]

impl Default for SlowStochastic[src]

impl Display for SlowStochastic[src]

impl<T: High + Low + Close> Next<T> for SlowStochastic[src]

impl Reset for SlowStochastic[src]

Auto Trait Implementations

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> 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.