using TradingPlatform.BusinessLayer; using Xunit; namespace QuanTAlib.Tests; public class AberrQuantowerTests { [Fact] public void Constructor_SetsDefaults() { var indicator = new AberrIndicator(); Assert.Equal(20, indicator.Period); Assert.Equal(2.0, indicator.Multiplier); Assert.Equal(SourceType.Close, indicator.Source); Assert.True(indicator.ShowColdValues); Assert.Equal("ABERR - Aberration Bands", indicator.Name); Assert.False(indicator.SeparateWindow); Assert.True(indicator.OnBackGround); } [Fact] public void MinHistoryDepths_MatchesPeriod() { var indicator = new AberrIndicator { Period = 25 }; Assert.Equal(25, indicator.MinHistoryDepths); } [Fact] public void ShortName_IncludesParameters() { var indicator = new AberrIndicator { Period = 15, Multiplier = 1.5 }; Assert.Contains("15", indicator.ShortName, StringComparison.Ordinal); Assert.Contains("1.5", indicator.ShortName, StringComparison.Ordinal); } [Fact] public void Initialize_CreatesThreeLineSeries() { var indicator = new AberrIndicator { Period = 14 }; indicator.Initialize(); Assert.Equal(3, indicator.LinesSeries.Count); Assert.Equal("Middle", indicator.LinesSeries[0].Name); Assert.Equal("Upper", indicator.LinesSeries[1].Name); Assert.Equal("Lower", indicator.LinesSeries[2].Name); } [Fact] public void ProcessUpdate_HistoricalBar_ComputesValue() { var indicator = new AberrIndicator { 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))); Assert.True(double.IsFinite(indicator.LinesSeries[1].GetValue(0))); Assert.True(double.IsFinite(indicator.LinesSeries[2].GetValue(0))); } [Fact] public void ProcessUpdate_NewBar_ComputesValue() { var indicator = new AberrIndicator { 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 ProcessUpdate_NewTick_ProcessesWithoutError() { var indicator = new AberrIndicator { Period = 5 }; 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 ProcessUpdate_EmptyData_HandlesGracefully() { var indicator = new AberrIndicator { Period = 5 }; indicator.Initialize(); var args = new UpdateArgs(UpdateReason.NewBar); var exception = Record.Exception(() => indicator.ProcessUpdate(args)); Assert.Null(exception); } [Fact] public void MultipleUpdates_ProducesCorrectSequence() { var indicator = new AberrIndicator { Period = 5 }; indicator.Initialize(); var now = DateTime.UtcNow; for (int i = 0; i < 10; 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(10, indicator.LinesSeries[0].Count); Assert.Equal(10, indicator.LinesSeries[1].Count); Assert.Equal(10, indicator.LinesSeries[2].Count); // All values should be finite for (int i = 0; i < 10; i++) { Assert.True(double.IsFinite(indicator.LinesSeries[0].GetValue(i))); Assert.True(double.IsFinite(indicator.LinesSeries[1].GetValue(i))); Assert.True(double.IsFinite(indicator.LinesSeries[2].GetValue(i))); } } [Fact] public void BandRelationship_UpperAboveLowerBelowMiddle() { var indicator = new AberrIndicator { Period = 5, Multiplier = 2.0 }; indicator.Initialize(); var now = DateTime.UtcNow; // Use varying prices to create volatility var prices = new[] { 100, 105, 98, 110, 95, 115, 92, 118, 90, 120 }; for (int i = 0; i < prices.Length; i++) { indicator.HistoricalData.AddBar(now.AddMinutes(i), prices[i], prices[i] + 5, prices[i] - 3, prices[i] + 2, 1000); indicator.ProcessUpdate(new UpdateArgs(i == 0 ? UpdateReason.HistoricalBar : UpdateReason.NewBar)); } // After warmup, upper >= middle >= lower (when there is volatility) double middle = indicator.LinesSeries[0].GetValue(0); double upper = indicator.LinesSeries[1].GetValue(0); double lower = indicator.LinesSeries[2].GetValue(0); Assert.True(upper >= middle, $"Upper ({upper}) should be >= Middle ({middle})"); Assert.True(lower <= middle, $"Lower ({lower}) should be <= Middle ({middle})"); } [Fact] public void Multiplier_AffectsBandWidth() { var now = DateTime.UtcNow; // Use varying prices to create volatility var prices = new[] { 100, 105, 98, 110, 95, 115, 92, 118, 90, 120 }; // Narrow bands with multiplier 1.0 var narrowIndicator = new AberrIndicator { Period = 5, Multiplier = 1.0 }; narrowIndicator.Initialize(); // Wide bands with multiplier 3.0 var wideIndicator = new AberrIndicator { Period = 5, Multiplier = 3.0 }; wideIndicator.Initialize(); for (int i = 0; i < prices.Length; i++) { narrowIndicator.HistoricalData.AddBar(now.AddMinutes(i), prices[i], prices[i] + 5, prices[i] - 3, prices[i] + 2, 1000); narrowIndicator.ProcessUpdate(new UpdateArgs(i == 0 ? UpdateReason.HistoricalBar : UpdateReason.NewBar)); wideIndicator.HistoricalData.AddBar(now.AddMinutes(i), prices[i], prices[i] + 5, prices[i] - 3, prices[i] + 2, 1000); wideIndicator.ProcessUpdate(new UpdateArgs(i == 0 ? UpdateReason.HistoricalBar : UpdateReason.NewBar)); } double narrowWidth = narrowIndicator.LinesSeries[1].GetValue(0) - narrowIndicator.LinesSeries[2].GetValue(0); double wideWidth = wideIndicator.LinesSeries[1].GetValue(0) - wideIndicator.LinesSeries[2].GetValue(0); Assert.True(wideWidth > narrowWidth, $"Wide bands ({wideWidth}) should be wider than narrow bands ({narrowWidth})"); } [Fact] public void SourceType_CanBeChanged() { var indicator = new AberrIndicator { Source = SourceType.Close }; Assert.Equal(SourceType.Close, indicator.Source); indicator.Source = SourceType.HLC3; Assert.Equal(SourceType.HLC3, indicator.Source); } [Fact] public void ShowColdValues_CanBeToggled() { var indicator = new AberrIndicator { ShowColdValues = true }; Assert.True(indicator.ShowColdValues); indicator.ShowColdValues = false; Assert.False(indicator.ShowColdValues); } [Fact] public void SourceCodeLink_IsValid() { var indicator = new AberrIndicator(); Assert.Contains("github.com", indicator.SourceCodeLink, StringComparison.OrdinalIgnoreCase); Assert.Contains("Aberr.Quantower.cs", indicator.SourceCodeLink, StringComparison.Ordinal); } }