mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-24 13:38:05 +00:00
+semver: fix
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user