sliding_features 10.0.0

Modular sliding window with various signal processing functions and technical indicators
Documentation
/// Example showing how to use a single View
extern crate time_series_generator;

use std::num::NonZeroUsize;

use rand::{
    SeedableRng,
    rngs::SmallRng,
};
use sliding_features::{
    View,
    pure_functions::Echo,
    sliding_windows::Rsi,
};
use time_series_generator::generate_standard_normal;

fn main() {
    let mut rsi = Rsi::new(Echo::new(), NonZeroUsize::new(14).unwrap());

    // generate dummy values
    let mut rng = SmallRng::seed_from_u64(0);
    let vals = generate_standard_normal(&mut rng, 1024, 100.0);
    for r in &vals {
        rsi.update(*r); // update the rsi computation with the newest value
        let last = rsi.last(); // get the latest rsi value
        println!("last rsi value: {:?}", last);
    }
}