[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
@@ -137,7 +137,7 @@ public class VwadValidationTests
// Bar 2: sumVol=450, volWeight=150/450=0.333, MFM=-0.333, weightedMfv=150*(-0.333)*0.333=-16.67
// cumVwad = 44.4 - 16.67 = 27.8
double expectedBar2 = expectedBar1 + 150 * (-1.0 / 3.0) * (150.0 / 450.0);
double expectedBar2 = expectedBar1 + (150 * (-1.0 / 3.0) * (150.0 / 450.0));
Assert.Equal(expectedBar2, results[2], 6);
}