[][src]Struct cxmr_ta_core::indicators::FastStochastic

pub struct FastStochastic { /* fields omitted */ }

Fast stochastic oscillator.

The stochastic oscillator is a momentum indicator comparing the closing price of a security to the range of its prices over a certain period of time.

Formula

Fast stochastic oscillator formula

Where:

  • %Kt - value of fast stochastic oscillator
  • Ct - close price of the current period
  • Ln - lowest price for the last n periods
  • Hn - highest price for the last n periods

Parameters

  • length - number of periods (integer greater than 0). Default is 14.

Example

use ta::indicators::FastStochastic;
use ta::{Calculate, Next};

let mut stoch = FastStochastic::new(5).unwrap();
assert_eq!(stoch.calc(20.0), 50.0);
assert_eq!(stoch.calc(30.0), 100.0);
assert_eq!(stoch.calc(40.0), 100.0);
assert_eq!(stoch.calc(35.0), 75.0);
assert_eq!(stoch.calc(15.0), 0.0);

Methods

impl FastStochastic[src]

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

pub fn length(&self) -> u32[src]

Trait Implementations

impl Calculate for FastStochastic[src]

impl Clone for FastStochastic[src]

impl Debug for FastStochastic[src]

impl Default for FastStochastic[src]

impl Display for FastStochastic[src]

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

impl Reset for FastStochastic[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.