Struct ux_indicators::indicators::RateOfChange[][src]

pub struct RateOfChange { /* fields omitted */ }

Rate of Change (ROC)

Formula

ROC = (Pricet - Pricet-n) / Pricet-n * 100

Where:

  • ROC - current value of Rate of Change indicator
  • Pt - price at the moment
  • Pt-n - price n periods ago

Parameters

  • length - number of periods (n), integer greater than 0

Example

use core::indicators::RateOfChange;
use core::Next;

let mut roc = RateOfChange::new(2).unwrap();
assert_eq!(roc.next(10.0), 0.0);            //  0
assert_eq!(roc.next(9.7).round(), -3.0);    //  (9.7 - 10) / 10  * 100 = -3
assert_eq!(roc.next(20.0).round(), 100.0);  //  (20 - 10)  / 10  * 100 = 100
assert_eq!(roc.next(20.0).round(), 106.0);  //  (20 - 9.7) / 9.7 * 100 = 106

Links

Implementations

impl RateOfChange[src]

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

Trait Implementations

impl Clone for RateOfChange[src]

impl Debug for RateOfChange[src]

impl Default for RateOfChange[src]

impl Display for RateOfChange[src]

impl<'a, T: Close> Next<&'a T> for RateOfChange[src]

type Output = f64

impl Next<f64> for RateOfChange[src]

type Output = f64

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