[][src]Struct dx_rs::ADXR

pub struct ADXR { /* fields omitted */ }

Average Directional Movement Index Rate (ADXR)

use ta_common::traits::Indicator;
use dx_rs::ADXR;
let mut adxr = ADXR::new(5);
assert_eq!(adxr.next([82.15, 81.29, 81.59]), None);
assert_eq!(adxr.next([81.89, 80.64, 81.06]), None);
assert_eq!(adxr.next([83.03, 81.31, 82.87]), None);
assert_eq!(adxr.next([83.30, 82.65, 83.00]), None);
assert_eq!(adxr.next([83.85, 83.07, 83.61]), None);
assert_eq!(adxr.next([83.90, 83.11, 83.15]), None);
assert_eq!(adxr.next([83.33, 82.49, 82.84]), None);
assert_eq!(adxr.next([84.30, 82.30, 83.99]), None);
assert_eq!(adxr.next([84.84, 84.15, 84.55]), None);
assert_eq!(adxr.next([85.00, 84.11, 84.36]), None);
assert_eq!(adxr.next([85.90, 84.03, 85.53]), None);
assert_eq!(adxr.next([86.58, 85.39, 86.54]), None);
assert_eq!(adxr.next([86.98, 85.76, 86.89]), Some(51.49047068971688));
assert_eq!(adxr.next([88.00, 87.17, 87.77]), Some(55.63390965480972));
assert_eq!(adxr.next([87.87, 87.01, 87.29]), Some(59.25861713224057));

Calculation

ADXR=(ADXt + ADXt-(period-1))/2;

Implementations

impl ADXR[src]

pub fn new(period: u32) -> ADXR[src]

Trait Implementations

impl Indicator<[f64; 3], Option<f64>> for ADXR[src]

Auto Trait Implementations

impl RefUnwindSafe for ADXR

impl Send for ADXR

impl Sync for ADXR

impl Unpin for ADXR

impl UnwindSafe for ADXR

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