mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-07-28 09:47:43 +00:00
dfeb23bf3d
- Implemented SgmaIndicator class in C# with properties for Period, Degree, and Source. - Added unit tests for SgmaIndicator covering constructor defaults, initialization, and various update scenarios. - Created a new Quantower adapter for the SGMA indicator, including input parameters and line series setup. - Removed legacy SGMA implementation and tests to streamline the codebase. - Updated project files to include new indicator and tests in the build process. - Generated a missing indicators report and outlined a plan for oscillator documentation rewrite.
37 lines
1.8 KiB
XML
37 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<AssemblyName>Dynamics</AssemblyName>
|
|
<AlgoType>Indicator</AlgoType>
|
|
<OutputPath>bin\$(Configuration)\</OutputPath>
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
<IsPackable>false</IsPackable>
|
|
<SonarQubeExclude>true</SonarQubeExclude>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Drawing.Common" Version="8.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="IndicatorExtensions.cs" />
|
|
<Compile Include="..\lib\core\**\*.cs" Exclude="..\lib\core\**\*.Tests.cs;..\lib\core\**\obj\**;..\lib\core\**\bin\**" />
|
|
<Compile Include="..\lib\trends_FIR\**\*.cs" Exclude="..\lib\trends_FIR\**\*.Tests.cs;..\lib\trends_FIR\**\obj\**;..\lib\trends_FIR\**\bin\**" />
|
|
<Compile Include="..\lib\trends_IIR\**\*.cs" Exclude="..\lib\trends_IIR\**\*.Tests.cs;..\lib\trends_IIR\**\obj\**;..\lib\trends_IIR\**\bin\**" />
|
|
<Compile Include="..\lib\momentum\**\*.cs" Exclude="..\lib\momentum\**\*.Tests.cs;..\lib\momentum\**\obj\**;..\lib\momentum\**\bin\**" />
|
|
<Compile Include="..\lib\dynamics\**\*.cs" Exclude="..\lib\dynamics\**\*.Tests.cs;..\lib\dynamics\**\obj\**;..\lib\dynamics\**\bin\**" />
|
|
<Reference Include="TradingPlatform.BusinessLayer">
|
|
<HintPath>..\.github\TradingPlatform.BusinessLayer.dll</HintPath>
|
|
</Reference>
|
|
<None Include="..\.github\TradingPlatform.BusinessLayer.xml">
|
|
<Link>TradingPlatform.BusinessLayer.xml</Link>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<Target Name="CopyCustomContent" AfterTargets="AfterBuild" Condition="'$(IsLocalBuild)' == 'true' AND $([MSBuild]::IsOSPlatform('Windows'))">
|
|
<Copy SourceFiles="$(OutputPath)\Dynamics.dll" DestinationFolder="$(QuantowerRoot)\Settings\Scripts\Indicators\QuanTAlib\Dynamics" />
|
|
</Target>
|
|
|
|
</Project>
|