This commit is contained in:
Miha Kralj
2026-01-18 22:39:58 -08:00
parent 4673f48a70
commit 8c484e872e
9 changed files with 26 additions and 34 deletions
+1 -1
View File
@@ -227,7 +227,7 @@ public sealed class Adosc : ITValuePublisher
// 5. Compute compensated EMA values (same logic as Ema.cs Compute method)
// Compensator decays: e *= decay, then result = ema / (1 - e) until e <= threshold
double fastValue, slowValue;
double fastValue = 0, slowValue = 0;
if (!fastCompensated)
{