mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-06 04:57:44 +00:00
86fe32a682
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat> Co-authored-by: Warp <agent@warp.dev>
215 lines
6.3 KiB
C#
215 lines
6.3 KiB
C#
using Xunit;
|
|
using TradingPlatform.BusinessLayer;
|
|
|
|
namespace QuanTAlib.Tests;
|
|
|
|
public class SlopeIndicatorTests
|
|
{
|
|
[Fact]
|
|
public void SlopeIndicator_Constructor_SetsDefaults()
|
|
{
|
|
var indicator = new SlopeIndicator();
|
|
|
|
Assert.Equal(SourceType.Close, indicator.Source);
|
|
Assert.True(indicator.ShowColdValues);
|
|
Assert.Equal("SLOPE - First Derivative (Velocity)", indicator.Name);
|
|
Assert.True(indicator.SeparateWindow);
|
|
Assert.False(indicator.OnBackGround);
|
|
}
|
|
|
|
[Fact]
|
|
public void SlopeIndicator_MinHistoryDepths_IsTwo()
|
|
{
|
|
var indicator = new SlopeIndicator();
|
|
Assert.Equal(2, indicator.MinHistoryDepths);
|
|
}
|
|
|
|
[Fact]
|
|
public void SlopeIndicator_ShortName_IsSlope()
|
|
{
|
|
var indicator = new SlopeIndicator();
|
|
Assert.Equal("SLOPE", indicator.ShortName);
|
|
}
|
|
|
|
[Fact]
|
|
public void SlopeIndicator_Initialize_CreatesLineSeries()
|
|
{
|
|
var indicator = new SlopeIndicator();
|
|
indicator.Initialize();
|
|
|
|
Assert.Equal(2, indicator.LinesSeries.Count);
|
|
Assert.Equal("Slope", indicator.LinesSeries[0].Name);
|
|
Assert.Equal("Zero", indicator.LinesSeries[1].Name);
|
|
}
|
|
|
|
[Fact]
|
|
public void SlopeIndicator_ProcessUpdate_HistoricalBar_ComputesValue()
|
|
{
|
|
var indicator = new SlopeIndicator();
|
|
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.Equal(1, indicator.LinesSeries[1].Count);
|
|
}
|
|
|
|
[Fact]
|
|
public void SlopeIndicator_ProcessUpdate_NewBar_ComputesValue()
|
|
{
|
|
var indicator = new SlopeIndicator();
|
|
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 SlopeIndicator_ProcessUpdate_NewTick_ProcessesWithoutError()
|
|
{
|
|
var indicator = new SlopeIndicator();
|
|
indicator.Initialize();
|
|
|
|
var now = DateTime.UtcNow;
|
|
indicator.HistoricalData.AddBar(now, 100, 105, 95, 102);
|
|
|
|
indicator.ProcessUpdate(new UpdateArgs(UpdateReason.HistoricalBar));
|
|
indicator.ProcessUpdate(new UpdateArgs(UpdateReason.NewTick));
|
|
|
|
Assert.Equal(2, indicator.LinesSeries[0].Count);
|
|
}
|
|
|
|
[Fact]
|
|
public void SlopeIndicator_MultipleUpdates_ProducesCorrectSequence()
|
|
{
|
|
var indicator = new SlopeIndicator();
|
|
indicator.Initialize();
|
|
|
|
var now = DateTime.UtcNow;
|
|
|
|
for (int i = 0; i < 20; i++)
|
|
{
|
|
indicator.HistoricalData.AddBar(
|
|
now.AddMinutes(i),
|
|
100 + i * 2,
|
|
105 + i * 2,
|
|
95 + i * 2,
|
|
102 + i * 2);
|
|
indicator.ProcessUpdate(new UpdateArgs(UpdateReason.HistoricalBar));
|
|
}
|
|
|
|
Assert.Equal(20, indicator.LinesSeries[0].Count);
|
|
|
|
for (int i = 0; i < 20; i++)
|
|
{
|
|
Assert.True(double.IsFinite(indicator.LinesSeries[0].GetValue(i)));
|
|
Assert.Equal(0, indicator.LinesSeries[1].GetValue(i));
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void SlopeIndicator_DifferentSourceTypes_Work()
|
|
{
|
|
var sources = new[]
|
|
{
|
|
SourceType.Open,
|
|
SourceType.High,
|
|
SourceType.Low,
|
|
SourceType.Close,
|
|
SourceType.HL2,
|
|
SourceType.HLC3,
|
|
};
|
|
|
|
foreach (var source in sources)
|
|
{
|
|
var indicator = new SlopeIndicator { Source = source };
|
|
indicator.Initialize();
|
|
|
|
var now = DateTime.UtcNow;
|
|
indicator.HistoricalData.AddBar(now, 100, 110, 90, 105);
|
|
indicator.ProcessUpdate(new UpdateArgs(UpdateReason.HistoricalBar));
|
|
|
|
Assert.Equal(1, indicator.LinesSeries[0].Count);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void SlopeIndicator_ShowColdValues_False_SetsNaN()
|
|
{
|
|
var indicator = new SlopeIndicator { ShowColdValues = false };
|
|
indicator.Initialize();
|
|
|
|
var now = DateTime.UtcNow;
|
|
indicator.HistoricalData.AddBar(now, 100, 105, 95, 102);
|
|
indicator.ProcessUpdate(new UpdateArgs(UpdateReason.HistoricalBar));
|
|
|
|
Assert.True(double.IsNaN(indicator.LinesSeries[0].GetValue(0)));
|
|
}
|
|
|
|
[Fact]
|
|
public void SlopeIndicator_Uptrend_ProducesPositiveSlope()
|
|
{
|
|
var indicator = new SlopeIndicator();
|
|
indicator.Initialize();
|
|
|
|
var now = DateTime.UtcNow;
|
|
|
|
for (int i = 0; i < 10; i++)
|
|
{
|
|
double price = 100 + i * 5;
|
|
indicator.HistoricalData.AddBar(now.AddMinutes(i), price, price + 2, price - 2, price);
|
|
indicator.ProcessUpdate(new UpdateArgs(UpdateReason.HistoricalBar));
|
|
}
|
|
|
|
double lastSlope = indicator.LinesSeries[0].GetValue(0);
|
|
Assert.True(lastSlope > 0);
|
|
}
|
|
|
|
[Fact]
|
|
public void SlopeIndicator_Downtrend_ProducesNegativeSlope()
|
|
{
|
|
var indicator = new SlopeIndicator();
|
|
indicator.Initialize();
|
|
|
|
var now = DateTime.UtcNow;
|
|
|
|
for (int i = 0; i < 10; i++)
|
|
{
|
|
double price = 200 - i * 5;
|
|
indicator.HistoricalData.AddBar(now.AddMinutes(i), price, price + 2, price - 2, price);
|
|
indicator.ProcessUpdate(new UpdateArgs(UpdateReason.HistoricalBar));
|
|
}
|
|
|
|
double lastSlope = indicator.LinesSeries[0].GetValue(0);
|
|
Assert.True(lastSlope < 0);
|
|
}
|
|
|
|
[Fact]
|
|
public void SlopeIndicator_FlatPrices_ProducesZeroSlope()
|
|
{
|
|
var indicator = new SlopeIndicator();
|
|
indicator.Initialize();
|
|
|
|
var now = DateTime.UtcNow;
|
|
|
|
for (int i = 0; i < 5; i++)
|
|
{
|
|
indicator.HistoricalData.AddBar(now.AddMinutes(i), 100, 105, 95, 100);
|
|
indicator.ProcessUpdate(new UpdateArgs(UpdateReason.HistoricalBar));
|
|
}
|
|
|
|
double lastSlope = indicator.LinesSeries[0].GetValue(0);
|
|
Assert.Equal(0, lastSlope);
|
|
}
|
|
}
|