Update Python installation and dependencies

This commit is contained in:
Miha Kralj
2023-05-05 08:10:27 -07:00
parent 56f8db2949
commit 9714dedcba
6 changed files with 123 additions and 37 deletions
+3 -4
View File
@@ -2,7 +2,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Title>QuanTAlib</Title>
<Version>0.2.0</Version>
<Version>0.2.5</Version>
<AssemblyVersion>0.2.5</AssemblyVersion>
<FileVersion>0.2.5</FileVersion>
<Product>Library of TA Calculations, Charts and Strategies for Quantower</Product>
<Description>Quantitative Technical Analysis Library in C# for Quantower</Description>
<RepositoryType>git</RepositoryType>
@@ -33,9 +35,6 @@
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageLicenseFile>
</PackageLicenseFile>
<AssemblyVersion>0.2.1.0</AssemblyVersion>
<FileVersion>0.2.1.0</FileVersion>
<InformationalVersion>0.2.1-dev.2+Branch.dev.Sha.cb5fe2dc86a78fe9358da810d17952c82299ed3d</InformationalVersion>
<SuppressNETSdkWarningProperty>NETSDK1057</SuppressNETSdkWarningProperty>
<SuppressNETSdkWarningProperty>IDE1006</SuppressNETSdkWarningProperty>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
+3 -3
View File
@@ -29,9 +29,9 @@ public class CROSS_Series : Pair_TSeries_Indicator {
val = TValue1.v == TValue2.v ? 0 : val;
double over = TValue1.v > TValue2.v ? 1 : val;
val = (this._previous < over) ? 1 : -1;
(System.DateTime t, double v) result = ((TValue1.t > TValue2.t) ? TValue1.t : TValue2.t,
((this._previous == over) || Double.IsNaN(this._previous) || (this._previous == 0)) ? 0 : val);
val = (_previous < over) ? 1 : -1;
val = ((_previous == over) || Double.IsNaN(this._previous) || (this._previous == 0)) ? 0 : val;
(System.DateTime t, double v) result = ((TValue1.t > TValue2.t) ? TValue1.t : TValue2.t,val);
this._previous = over;