+semver: fix

This commit is contained in:
Miha Kralj
2024-09-22 20:10:05 -07:00
parent 6f11a5e0dc
commit b7e22d4243
20 changed files with 18 additions and 24 deletions
-1
View File
@@ -53,7 +53,6 @@ public class Rma : AbstractBase {
rma = (_lastRMA * (_index - 1) + Input.Value) / _index;
} else {
// Wilder's smoothing method
//rma = (_lastRMA * (_period - 1) + Input.Value) / _period;
rma = _alpha * (Input.Value - _lastRMA) + _lastRMA;
}