semver fix

This commit is contained in:
Miha Kralj
2024-11-04 14:57:02 -08:00
parent aeae3c466f
commit 5b333bd2ec
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -252,6 +252,7 @@ jobs:
(github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev')) ||
github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
+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);
}