[CodeFactor] Apply fixes to commit 0606491

This commit is contained in:
codefactor-io
2026-03-12 19:37:50 +00:00
parent 060649192f
commit 8f79257155
384 changed files with 1197 additions and 1215 deletions
@@ -29,7 +29,7 @@ public class TrimaValidationTests
var qResult = trima.Update(_testData.Data);
// Calculate Skender Composite TRIMA: SMA(SMA(x, p1), p2)
int p1 = period / 2 + 1;
int p1 = (period / 2) + 1;
int p2 = (period + 1) / 2;
var sma1Results = _testData.SkenderQuotes.GetSma(p1).ToList();