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