[CodeFactor] Apply fixes to commit 9697fac

This commit is contained in:
codefactor-io
2026-03-14 05:03:08 +00:00
parent 9697facfb4
commit e35ff7fa3f
164 changed files with 458 additions and 530 deletions
+1 -1
View File
@@ -211,7 +211,7 @@ public sealed class Adxvma : AbstractBase
double sc = Math.Max(0.0, Math.Min(adxVal / 100.0, 1.0));
// Adaptive EMA
double result = double.IsNaN(_state.Result) ? sourceValue : _state.Result + sc * (sourceValue - _state.Result);
double result = double.IsNaN(_state.Result) ? sourceValue : _state.Result + (sc * (sourceValue - _state.Result));
// Update state
_state = new AdxvmaState(