├── .buildkite └── pipeline.yaml ├── .envrc ├── .github └── pull_request_template.md ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── benches ├── alma.rs ├── center_of_gravity.rs ├── correlation_trend_indicator.rs ├── cumulative.rs ├── cyber_cycle.rs ├── ehlers_fisher_transform.rs ├── ema.rs ├── hl_normalizer.rs ├── laguerre_filter.rs ├── laguerre_rsi.rs ├── my_rsi.rs ├── noise_elimination_technology.rs ├── polarized_fractal_efficiency.rs ├── re_flex.rs ├── roc.rs ├── roofing_filter.rs ├── rsi.rs ├── sma.rs ├── super_smoother.rs ├── trend_flex.rs ├── vsct.rs ├── vst.rs └── welford_online.rs ├── examples ├── basic_chainable_view.rs └── basic_single_view.rs ├── flake.lock ├── flake.nix ├── img ├── agplv3.png ├── alma.png ├── center_of_gravity.png ├── center_of_gravity_normalized.png ├── correlation_trend_indicator.png ├── cumulative.png ├── cyber_cycle.png ├── cyber_cycle_normalized.png ├── echo.png ├── ehlers_fisher_transform.png ├── ema.png ├── laguerre_filter.png ├── laguerre_rsi.png ├── monero_donations_qrcode.png ├── my_rsi.png ├── net_my_rsi.png ├── polarized_fractal_efficiency.png ├── re_flex.png ├── re_flex_normalized.png ├── roc.png ├── roc_normalized.png ├── roofing_filter.png ├── rsi.png ├── rsi_normalized.png ├── sma.png ├── super_smoother.png ├── trend_flex.png ├── trend_flex_normalized.png ├── vsct.png └── welford_online_sliding.png ├── mprocs.yaml └── src ├── lib.rs ├── plot.rs ├── pure_functions ├── add.rs ├── constant.rs ├── divide.rs ├── echo.rs ├── gte.rs ├── lte.rs ├── mod.rs ├── multiply.rs ├── subtract.rs └── tanh.rs ├── rolling ├── drawdown.rs ├── ln_return.rs ├── mod.rs └── welford_rolling.rs ├── sliding_windows ├── alma.rs ├── binary_entropy.rs ├── center_of_gravity.rs ├── correlation_trend_indicator.rs ├── cumulative.rs ├── cyber_cycle.rs ├── ehlers_fisher_transform.rs ├── ema.rs ├── hl_normalizer.rs ├── lag.rs ├── laguerre_filter.rs ├── laguerre_rsi.rs ├── max.rs ├── min.rs ├── mod.rs ├── my_rsi.rs ├── noise_elimination_technology.rs ├── polarized_fractal_efficiency.rs ├── re_flex.rs ├── roc.rs ├── roofing_filter.rs ├── rsi.rs ├── sma.rs ├── super_smoother.rs ├── trend_flex.rs ├── variance_stabilizing_transformation.rs ├── vsct.rs └── welford_online.rs └── test_data.rs /.buildkite/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/.buildkite/pipeline.yaml -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.idea 3 | /vendor 4 | /img 5 | /.direnv 6 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/README.md -------------------------------------------------------------------------------- /benches/alma.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/alma.rs -------------------------------------------------------------------------------- /benches/center_of_gravity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/center_of_gravity.rs -------------------------------------------------------------------------------- /benches/correlation_trend_indicator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/correlation_trend_indicator.rs -------------------------------------------------------------------------------- /benches/cumulative.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/cumulative.rs -------------------------------------------------------------------------------- /benches/cyber_cycle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/cyber_cycle.rs -------------------------------------------------------------------------------- /benches/ehlers_fisher_transform.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/ehlers_fisher_transform.rs -------------------------------------------------------------------------------- /benches/ema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/ema.rs -------------------------------------------------------------------------------- /benches/hl_normalizer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/hl_normalizer.rs -------------------------------------------------------------------------------- /benches/laguerre_filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/laguerre_filter.rs -------------------------------------------------------------------------------- /benches/laguerre_rsi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/laguerre_rsi.rs -------------------------------------------------------------------------------- /benches/my_rsi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/my_rsi.rs -------------------------------------------------------------------------------- /benches/noise_elimination_technology.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/noise_elimination_technology.rs -------------------------------------------------------------------------------- /benches/polarized_fractal_efficiency.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/polarized_fractal_efficiency.rs -------------------------------------------------------------------------------- /benches/re_flex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/re_flex.rs -------------------------------------------------------------------------------- /benches/roc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/roc.rs -------------------------------------------------------------------------------- /benches/roofing_filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/roofing_filter.rs -------------------------------------------------------------------------------- /benches/rsi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/rsi.rs -------------------------------------------------------------------------------- /benches/sma.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/sma.rs -------------------------------------------------------------------------------- /benches/super_smoother.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/super_smoother.rs -------------------------------------------------------------------------------- /benches/trend_flex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/trend_flex.rs -------------------------------------------------------------------------------- /benches/vsct.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/vsct.rs -------------------------------------------------------------------------------- /benches/vst.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/vst.rs -------------------------------------------------------------------------------- /benches/welford_online.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/benches/welford_online.rs -------------------------------------------------------------------------------- /examples/basic_chainable_view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/examples/basic_chainable_view.rs -------------------------------------------------------------------------------- /examples/basic_single_view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/examples/basic_single_view.rs -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/flake.nix -------------------------------------------------------------------------------- /img/agplv3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/agplv3.png -------------------------------------------------------------------------------- /img/alma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/alma.png -------------------------------------------------------------------------------- /img/center_of_gravity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/center_of_gravity.png -------------------------------------------------------------------------------- /img/center_of_gravity_normalized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/center_of_gravity_normalized.png -------------------------------------------------------------------------------- /img/correlation_trend_indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/correlation_trend_indicator.png -------------------------------------------------------------------------------- /img/cumulative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/cumulative.png -------------------------------------------------------------------------------- /img/cyber_cycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/cyber_cycle.png -------------------------------------------------------------------------------- /img/cyber_cycle_normalized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/cyber_cycle_normalized.png -------------------------------------------------------------------------------- /img/echo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/echo.png -------------------------------------------------------------------------------- /img/ehlers_fisher_transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/ehlers_fisher_transform.png -------------------------------------------------------------------------------- /img/ema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/ema.png -------------------------------------------------------------------------------- /img/laguerre_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/laguerre_filter.png -------------------------------------------------------------------------------- /img/laguerre_rsi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/laguerre_rsi.png -------------------------------------------------------------------------------- /img/monero_donations_qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/monero_donations_qrcode.png -------------------------------------------------------------------------------- /img/my_rsi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/my_rsi.png -------------------------------------------------------------------------------- /img/net_my_rsi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/net_my_rsi.png -------------------------------------------------------------------------------- /img/polarized_fractal_efficiency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/polarized_fractal_efficiency.png -------------------------------------------------------------------------------- /img/re_flex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/re_flex.png -------------------------------------------------------------------------------- /img/re_flex_normalized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/re_flex_normalized.png -------------------------------------------------------------------------------- /img/roc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/roc.png -------------------------------------------------------------------------------- /img/roc_normalized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/roc_normalized.png -------------------------------------------------------------------------------- /img/roofing_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/roofing_filter.png -------------------------------------------------------------------------------- /img/rsi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/rsi.png -------------------------------------------------------------------------------- /img/rsi_normalized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/rsi_normalized.png -------------------------------------------------------------------------------- /img/sma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/sma.png -------------------------------------------------------------------------------- /img/super_smoother.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/super_smoother.png -------------------------------------------------------------------------------- /img/trend_flex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/trend_flex.png -------------------------------------------------------------------------------- /img/trend_flex_normalized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/trend_flex_normalized.png -------------------------------------------------------------------------------- /img/vsct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/vsct.png -------------------------------------------------------------------------------- /img/welford_online_sliding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/img/welford_online_sliding.png -------------------------------------------------------------------------------- /mprocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/mprocs.yaml -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/plot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/plot.rs -------------------------------------------------------------------------------- /src/pure_functions/add.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/pure_functions/add.rs -------------------------------------------------------------------------------- /src/pure_functions/constant.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/pure_functions/constant.rs -------------------------------------------------------------------------------- /src/pure_functions/divide.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/pure_functions/divide.rs -------------------------------------------------------------------------------- /src/pure_functions/echo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/pure_functions/echo.rs -------------------------------------------------------------------------------- /src/pure_functions/gte.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/pure_functions/gte.rs -------------------------------------------------------------------------------- /src/pure_functions/lte.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/pure_functions/lte.rs -------------------------------------------------------------------------------- /src/pure_functions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/pure_functions/mod.rs -------------------------------------------------------------------------------- /src/pure_functions/multiply.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/pure_functions/multiply.rs -------------------------------------------------------------------------------- /src/pure_functions/subtract.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/pure_functions/subtract.rs -------------------------------------------------------------------------------- /src/pure_functions/tanh.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/pure_functions/tanh.rs -------------------------------------------------------------------------------- /src/rolling/drawdown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/rolling/drawdown.rs -------------------------------------------------------------------------------- /src/rolling/ln_return.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/rolling/ln_return.rs -------------------------------------------------------------------------------- /src/rolling/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/rolling/mod.rs -------------------------------------------------------------------------------- /src/rolling/welford_rolling.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/rolling/welford_rolling.rs -------------------------------------------------------------------------------- /src/sliding_windows/alma.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/alma.rs -------------------------------------------------------------------------------- /src/sliding_windows/binary_entropy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/binary_entropy.rs -------------------------------------------------------------------------------- /src/sliding_windows/center_of_gravity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/center_of_gravity.rs -------------------------------------------------------------------------------- /src/sliding_windows/correlation_trend_indicator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/correlation_trend_indicator.rs -------------------------------------------------------------------------------- /src/sliding_windows/cumulative.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/cumulative.rs -------------------------------------------------------------------------------- /src/sliding_windows/cyber_cycle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/cyber_cycle.rs -------------------------------------------------------------------------------- /src/sliding_windows/ehlers_fisher_transform.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/ehlers_fisher_transform.rs -------------------------------------------------------------------------------- /src/sliding_windows/ema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/ema.rs -------------------------------------------------------------------------------- /src/sliding_windows/hl_normalizer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/hl_normalizer.rs -------------------------------------------------------------------------------- /src/sliding_windows/lag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/lag.rs -------------------------------------------------------------------------------- /src/sliding_windows/laguerre_filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/laguerre_filter.rs -------------------------------------------------------------------------------- /src/sliding_windows/laguerre_rsi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/laguerre_rsi.rs -------------------------------------------------------------------------------- /src/sliding_windows/max.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/max.rs -------------------------------------------------------------------------------- /src/sliding_windows/min.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/min.rs -------------------------------------------------------------------------------- /src/sliding_windows/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/mod.rs -------------------------------------------------------------------------------- /src/sliding_windows/my_rsi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/my_rsi.rs -------------------------------------------------------------------------------- /src/sliding_windows/noise_elimination_technology.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/noise_elimination_technology.rs -------------------------------------------------------------------------------- /src/sliding_windows/polarized_fractal_efficiency.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/polarized_fractal_efficiency.rs -------------------------------------------------------------------------------- /src/sliding_windows/re_flex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/re_flex.rs -------------------------------------------------------------------------------- /src/sliding_windows/roc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/roc.rs -------------------------------------------------------------------------------- /src/sliding_windows/roofing_filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/roofing_filter.rs -------------------------------------------------------------------------------- /src/sliding_windows/rsi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/rsi.rs -------------------------------------------------------------------------------- /src/sliding_windows/sma.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/sma.rs -------------------------------------------------------------------------------- /src/sliding_windows/super_smoother.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/super_smoother.rs -------------------------------------------------------------------------------- /src/sliding_windows/trend_flex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/trend_flex.rs -------------------------------------------------------------------------------- /src/sliding_windows/variance_stabilizing_transformation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/variance_stabilizing_transformation.rs -------------------------------------------------------------------------------- /src/sliding_windows/vsct.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/vsct.rs -------------------------------------------------------------------------------- /src/sliding_windows/welford_online.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/sliding_windows/welford_online.rs -------------------------------------------------------------------------------- /src/test_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathisWellmann/sliding_features-rs/HEAD/src/test_data.rs --------------------------------------------------------------------------------