Refactor TBar struct for improved equality comparison and string representation; update Benchmark program structure for better organization; modify Averages project file to include specific source files; add Directory.Build.props for common project settings; implement comprehensive tests for Ema, Sma, and Wma indicators; create mock classes for TradingPlatform.BusinessLayer to facilitate testing; enhance Quantower test project configuration for better test management.

This commit is contained in:
Miha Kralj
2025-12-01 18:40:23 -08:00
parent 626a2afa9b
commit 1d145d0622
12 changed files with 1098 additions and 114175 deletions
+16
View File
@@ -0,0 +1,16 @@
<Project>
<!-- Set project-specific intermediate output paths before SDK import -->
<PropertyGroup Condition="'$(MSBuildProjectName)' == 'Averages'">
<BaseIntermediateOutputPath>obj\Averages\</BaseIntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(MSBuildProjectName)' == 'Quantower.Tests'">
<BaseIntermediateOutputPath>obj\Tests\</BaseIntermediateOutputPath>
</PropertyGroup>
<!-- Common settings for all quantower projects -->
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>