-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
130 lines (103 loc) · 1.88 KB
/
Copy pathCargo.toml
File metadata and controls
130 lines (103 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
cargo-features = ["edition2024"]
[package]
name = "sliding_features"
version = "9.2.0"
authors = ["MathisWellmann <wellmannmathis@gmail.com>"]
edition = "2024"
license-file = "LICENSE"
description = "Modular sliding window with various signal processing functions and technical indicators"
repository = "https://github.com/MathisWellmann/sliding_features-rs"
readme = "README.md"
keywords = [
"sliding-window",
"signal-processing",
"modular",
"technical-analysis",
"indicators",
]
categories = ["algorithms", "mathematics"]
exclude = ["img/"]
[dependencies]
getset = "0.1"
num = "0.4"
watermill = "0.1.2"
[dev-dependencies]
ballpark = "1"
time_series_generator = "0.4.1"
rand = "0.10"
romu = "0.8"
round = "0.1"
plotters = "0.3"
criterion = "0.8"
[[bench]]
name = "alma"
harness = false
[[bench]]
name = "center_of_gravity"
harness = false
[[bench]]
name = "correlation_trend_indicator"
harness = false
[[bench]]
name = "cumulative"
harness = false
[[bench]]
name = "cyber_cycle"
harness = false
[[bench]]
name = "ehlers_fisher_transform"
harness = false
[[bench]]
name = "ema"
harness = false
[[bench]]
name = "hl_normalizer"
harness = false
[[bench]]
name = "laguerre_filter"
harness = false
[[bench]]
name = "laguerre_rsi"
harness = false
[[bench]]
name = "mad_scaler"
harness = false
[[bench]]
name = "my_rsi"
harness = false
[[bench]]
name = "noise_elimination_technology"
harness = false
[[bench]]
name = "polarized_fractal_efficiency"
harness = false
[[bench]]
name = "re_flex"
harness = false
[[bench]]
name = "roc"
harness = false
[[bench]]
name = "roofing_filter"
harness = false
[[bench]]
name = "rsi"
harness = false
[[bench]]
name = "sma"
harness = false
[[bench]]
name = "super_smoother"
harness = false
[[bench]]
name = "trend_flex"
harness = false
[[bench]]
name = "vst"
harness = false
[[bench]]
name = "vsct"
harness = false
[[bench]]
name = "welford_online"
harness = false