[][src]Struct cci_rs::CCI

pub struct CCI { /* fields omitted */ }

Build Status

Commodity Channel Index (CCI)

use cci_rs::CCI;
use ta_common::traits::Indicator;

let mut cci = CCI::new(5);
assert_eq!(cci.next([82.15, 81.29, 81.59]), None);
assert_eq!(cci.next([81.89, 80.64, 81.06]), None);
assert_eq!(cci.next([83.03, 81.31, 82.87]), None);
assert_eq!(cci.next([83.30, 82.65, 83.00]), None);
assert_eq!(cci.next([83.85, 83.07, 83.61]), Some(105.01453488372036));
assert_eq!(cci.next([83.90, 83.11, 83.15]), Some(64.23611111111184));
assert_eq!(cci.next([83.33, 82.49, 82.84]), Some(-29.632609278624987));
assert_eq!(cci.next([84.30, 82.30, 83.99]), Some(69.54436450839174));
assert_eq!(cci.next([84.84, 84.15, 84.55]), Some(166.66666666667416));
assert_eq!(cci.next([85.00, 84.11, 84.36]), Some(82.02011106108519));
assert_eq!(cci.next([85.90, 84.03, 85.53]), Some(95.50079686159197));
assert_eq!(cci.next([86.58, 85.39, 86.54]), Some(130.91226756520678));
assert_eq!(cci.next([86.98, 85.76, 86.89]), Some(99.16327453640989));
assert_eq!(cci.next([88.00, 87.17, 87.77]), Some(116.34153237206694));
assert_eq!(cci.next([87.87, 87.01, 87.29]), Some(71.92795354899985));

Implementations

impl CCI[src]

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

Trait Implementations

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

Auto Trait Implementations

impl RefUnwindSafe for CCI

impl Send for CCI

impl Sync for CCI

impl Unpin for CCI

impl UnwindSafe for CCI

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.