Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
Miha Kralj
2024-11-03 16:26:12 -08:00
10 changed files with 7 additions and 16 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ public class StatisticsUpdateTests
double open = GetRandomDouble();
double high = open + Math.Abs(GetRandomDouble());
double low = open - Math.Abs(GetRandomDouble());
double close = low + (high - low) * GetRandomDouble();
double close = low + ((high - low) * GetRandomDouble());
return new TBar(DateTime.Now, open, high, low, close, 1000, IsNew);
}