semver fix

This commit is contained in:
Miha Kralj
2024-11-04 15:02:19 -08:00
parent aeae3c466f
commit 5b333bd2ec
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -20,8 +20,8 @@ public class OscillatorsUpdateTests
private TBar GetRandomBar(bool IsNew)
{
double open = GetRandomDouble();
double high = open + Math.abs(GetRandomDouble());
double low = open - Math.abs(GetRandomDouble());
double high = open + Math.Abs(GetRandomDouble());
double low = open - Math.Abs(GetRandomDouble());
double close = low + ((high - low) * GetRandomDouble());
return new TBar(DateTime.Now, open, high, low, close, 1000, IsNew);
}