refresh with new QT DLL

This commit is contained in:
Miha Kralj
2024-10-12 20:36:37 -07:00
parent cc45cebeb4
commit b3b3b24a25
65 changed files with 2593 additions and 1189 deletions
+4 -1
View File
@@ -37,7 +37,10 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\quantower\**\*.csproj" />
<ProjectReference Include="..\lib\*.csproj" />
<ProjectReference Include="..\quantower\Volatility\_Volatility.csproj" Aliases="volatility" />
<ProjectReference Include="..\quantower\Averages\_Averages.csproj" Aliases="averages" />
<ProjectReference Include="..\quantower\Statistics\_Statistics.csproj" Aliases="statistics" />
</ItemGroup>
</Project>
+8 -2
View File
@@ -1,7 +1,13 @@
extern alias volatility;
extern alias averages;
extern alias statistics;
using Xunit;
using System;
using System.Reflection;
using TradingPlatform.BusinessLayer;
using statistics::QuanTAlib;
using averages::QuanTAlib;
using volatility::QuanTAlib;
namespace QuanTAlib
{
@@ -83,7 +89,7 @@ namespace QuanTAlib
[Fact] public void Slope() => TestIndicator<SlopeIndicator>("slope");
[Fact] public void Stddev() => TestIndicator<StddevIndicator>("stddev");
[Fact] public void Variance() => TestIndicator<VarianceIndicator>("variance");
[Fact] public void Zscore() => TestIndicator<ZScoreIndicator>("zScore");
[Fact] public void Zscore() => TestIndicator<ZscoreIndicator>("zScore");
// Volatility Indicators
[Fact] public void Atr() => TestIndicator<AtrIndicator>("atr");