[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
+2 -2
View File
@@ -156,8 +156,8 @@ public class AdoscTests
// Apply 5 corrections with different values
for (int i = 0; i < 5; i++)
{
var correctedBar = new TBar(bar20.Time, bar20.Open * (1 + i * 0.01), bar20.High * (1 + i * 0.01),
bar20.Low * (1 + i * 0.01), bar20.Close * (1 + i * 0.01), bar20.Volume);
var correctedBar = new TBar(bar20.Time, bar20.Open * (1 + (i * 0.01)), bar20.High * (1 + (i * 0.01)),
bar20.Low * (1 + (i * 0.01)), bar20.Close * (1 + (i * 0.01)), bar20.Volume);
adosc.Update(correctedBar, isNew: false);
}