Files
Miha Kralj 060649192f docs: remove C# Implementation Considerations sections, clean up temp scripts, reorganize test files
- Remove 'C# Implementation Considerations' sections from 34 indicator .md files
- Delete 29 temp PowerShell scripts (_fix_mojibake.ps1, _hex_scan.ps1, etc.)
- Move test files into tests/ subdirectories for consistent project structure
- Add trader-focused bullet points to indicator documentation
2026-03-12 12:34:16 -07:00

156 lines
4.9 KiB
C#

using TradingPlatform.BusinessLayer;
namespace QuanTAlib.Tests;
public class TrendflexIndicatorTests
{
[Fact]
public void TrendflexIndicator_Constructor_SetsDefaults()
{
var indicator = new TrendflexIndicator();
Assert.Equal(20, indicator.Period);
Assert.Equal(SourceType.Close, indicator.Source);
Assert.True(indicator.ShowColdValues);
Assert.Equal("TRENDFLEX - Ehlers Trendflex Indicator", indicator.Name);
Assert.True(indicator.SeparateWindow);
Assert.True(indicator.OnBackGround);
}
[Fact]
public void TrendflexIndicator_MinHistoryDepths_EqualsZero()
{
var indicator = new TrendflexIndicator();
Assert.Equal(0, TrendflexIndicator.MinHistoryDepths);
Assert.Equal(0, ((IWatchlistIndicator)indicator).MinHistoryDepths);
}
[Fact]
public void TrendflexIndicator_ShortName_IncludesPeriodAndSource()
{
var indicator = new TrendflexIndicator { Period = 30 };
Assert.Contains("TRENDFLEX", indicator.ShortName, StringComparison.Ordinal);
Assert.Contains("30", indicator.ShortName, StringComparison.Ordinal);
}
[Fact]
public void TrendflexIndicator_SourceCodeLink_IsValid()
{
var indicator = new TrendflexIndicator();
Assert.Contains("github.com", indicator.SourceCodeLink, StringComparison.Ordinal);
Assert.Contains("Trendflex.Quantower.cs", indicator.SourceCodeLink, StringComparison.Ordinal);
}
[Fact]
public void TrendflexIndicator_Initialize_CreatesInternalIndicator()
{
var indicator = new TrendflexIndicator { Period = 20 };
indicator.Initialize();
// After init, one line series should exist (Trendflex is single output)
Assert.Single(indicator.LinesSeries);
}
[Fact]
public void TrendflexIndicator_ProcessUpdate_HistoricalBar_ComputesValue()
{
var indicator = new TrendflexIndicator { Period = 3 };
indicator.Initialize();
var now = DateTime.UtcNow;
indicator.HistoricalData.AddBar(now, 100, 105, 95, 102);
var args = new UpdateArgs(UpdateReason.HistoricalBar);
indicator.ProcessUpdate(args);
Assert.Equal(1, indicator.LinesSeries[0].Count);
Assert.True(double.IsFinite(indicator.LinesSeries[0].GetValue(0)));
}
[Fact]
public void TrendflexIndicator_ProcessUpdate_NewBar_ComputesValue()
{
var indicator = new TrendflexIndicator { Period = 3 };
indicator.Initialize();
var now = DateTime.UtcNow;
indicator.HistoricalData.AddBar(now, 100, 105, 95, 102);
indicator.HistoricalData.AddBar(now.AddMinutes(1), 102, 108, 100, 106);
indicator.ProcessUpdate(new UpdateArgs(UpdateReason.HistoricalBar));
indicator.ProcessUpdate(new UpdateArgs(UpdateReason.NewBar));
Assert.Equal(2, indicator.LinesSeries[0].Count);
}
[Fact]
public void TrendflexIndicator_InternalIndicator_HandlesBarCorrection()
{
// Test the underlying Trendflex with isNew=false (bar correction)
var ma = new Trendflex(3);
var now = DateTime.UtcNow;
for (int i = 0; i < 10; i++)
{
ma.Update(new TValue(now.AddMinutes(i).Ticks, 100 + i), isNew: true);
}
double beforeCorrection = ma.Last.Value;
// Correct last bar with a very different value
ma.Update(new TValue(now.AddMinutes(9).Ticks, 200), isNew: false);
double afterCorrection = ma.Last.Value;
Assert.NotEqual(beforeCorrection, afterCorrection);
Assert.True(double.IsFinite(afterCorrection));
}
[Fact]
public void TrendflexIndicator_DifferentSourceTypes()
{
foreach (SourceType sourceType in new[] { SourceType.Close, SourceType.Open, SourceType.High, SourceType.Low })
{
var indicator = new TrendflexIndicator();
indicator.Source = sourceType;
Assert.Equal(sourceType, indicator.Source);
}
}
[Fact]
public void TrendflexIndicator_MultipleHistoricalBars()
{
var indicator = new TrendflexIndicator { Period = 5 };
indicator.Initialize();
var now = DateTime.UtcNow;
for (int i = 0; i < 20; i++)
{
indicator.HistoricalData.AddBar(now.AddMinutes(i), 100 + i, 105 + i, 95 + i, 102 + i);
indicator.ProcessUpdate(new UpdateArgs(i == 0 ? UpdateReason.HistoricalBar : UpdateReason.NewBar));
}
Assert.Equal(20, indicator.LinesSeries[0].Count);
// All values should be finite
for (int i = 0; i < 20; i++)
{
Assert.True(double.IsFinite(indicator.LinesSeries[0].GetValue(i)));
}
}
[Fact]
public void TrendflexIndicator_PeriodChange_UpdatesConfig()
{
var indicator = new TrendflexIndicator();
indicator.Period = 25;
Assert.Equal(25, indicator.Period);
indicator.Period = 50;
Assert.Equal(50, indicator.Period);
}
}