mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-18 10:38:05 +00:00
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>
80 lines
2.1 KiB
C#
80 lines
2.1 KiB
C#
using TradingPlatform.BusinessLayer;
|
|
using QuanTAlib;
|
|
|
|
namespace QuanTAlib.Tests;
|
|
|
|
public class BopIndicatorTests
|
|
{
|
|
[Fact]
|
|
public void BopIndicator_Constructor_SetsDefaults()
|
|
{
|
|
var indicator = new BopIndicator();
|
|
|
|
Assert.Equal("BOP - Balance of Power", indicator.Name);
|
|
Assert.True(indicator.SeparateWindow);
|
|
Assert.True(indicator.OnBackGround);
|
|
}
|
|
|
|
[Fact]
|
|
public void BopIndicator_MinHistoryDepths_EqualsZero()
|
|
{
|
|
var indicator = new BopIndicator();
|
|
|
|
Assert.Equal(0, BopIndicator.MinHistoryDepths);
|
|
IWatchlistIndicator watchlistIndicator = indicator;
|
|
Assert.Equal(0, watchlistIndicator.MinHistoryDepths);
|
|
}
|
|
|
|
[Fact]
|
|
public void BopIndicator_ShortName_IsBop()
|
|
{
|
|
var indicator = new BopIndicator();
|
|
indicator.Initialize();
|
|
|
|
Assert.Equal("BOP", indicator.ShortName);
|
|
}
|
|
|
|
[Fact]
|
|
public void BopIndicator_SourceCodeLink_IsValid()
|
|
{
|
|
var indicator = new BopIndicator();
|
|
|
|
Assert.Contains("github.com", indicator.SourceCodeLink, StringComparison.Ordinal);
|
|
Assert.Contains("Bop.Quantower.cs", indicator.SourceCodeLink, StringComparison.Ordinal);
|
|
}
|
|
|
|
[Fact]
|
|
public void BopIndicator_Initialize_CreatesInternalBop()
|
|
{
|
|
var indicator = new BopIndicator();
|
|
|
|
// Initialize should not throw
|
|
indicator.Initialize();
|
|
|
|
// After init, line series should exist (BOP)
|
|
Assert.Single(indicator.LinesSeries);
|
|
}
|
|
|
|
[Fact]
|
|
public void BopIndicator_ProcessUpdate_HistoricalBar_ComputesValue()
|
|
{
|
|
var indicator = new BopIndicator();
|
|
indicator.Initialize();
|
|
|
|
// Add historical data
|
|
var now = DateTime.UtcNow;
|
|
indicator.HistoricalData.AddBar(now, 10, 20, 5, 15);
|
|
|
|
// Process update
|
|
var args = new UpdateArgs(UpdateReason.HistoricalBar);
|
|
indicator.ProcessUpdate(args);
|
|
|
|
// Line series should have a value
|
|
double bop = indicator.LinesSeries[0].GetValue(0);
|
|
|
|
// Open=10, High=20, Low=5, Close=15
|
|
// Range=15, Diff=5, BOP=0.333...
|
|
Assert.Equal(1.0 / 3.0, bop, 6);
|
|
}
|
|
}
|