mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-15 09:08:04 +00:00
- 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
258 lines
8.9 KiB
C#
258 lines
8.9 KiB
C#
// PIVOTWOOD Validation Tests - Woodie's Pivot Points
|
|
// Self-consistency validation: math correctness, streaming==batch, streaming==span,
|
|
// streaming==batchAll, determinism, Calculate, level ordering.
|
|
// No external library implements Woodie's Pivot Points with bar-to-bar granularity.
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace QuanTAlib.Tests;
|
|
|
|
public sealed class PivotwoodValidationTests
|
|
{
|
|
private static TBarSeries CreateGbmBars(int count = 500, int seed = 42)
|
|
{
|
|
var gbm = new GBM(startPrice: 100.0, mu: 0.05, sigma: 0.20, seed: seed);
|
|
return gbm.Fetch(count, DateTime.UtcNow.Ticks, TimeSpan.FromMinutes(1));
|
|
}
|
|
|
|
// ── Math correctness ────────────────────────────────────────────
|
|
[Fact]
|
|
public void MathCorrectness_WoodieFormula()
|
|
{
|
|
var bars = CreateGbmBars();
|
|
var ind = new Pivotwood();
|
|
|
|
for (int i = 0; i < bars.Count; i++)
|
|
{
|
|
ind.Update(bars[i], isNew: true);
|
|
|
|
if (i < 1) { continue; }
|
|
|
|
double pH = bars[i - 1].High;
|
|
double pL = bars[i - 1].Low;
|
|
double pC = bars[i - 1].Close;
|
|
|
|
double expectedPP = (pH + pL + 2.0 * pC) / 4.0;
|
|
double range = pH - pL;
|
|
|
|
Assert.Equal(expectedPP, ind.PP, 10);
|
|
Assert.Equal(2.0 * expectedPP - pL, ind.R1, 10);
|
|
Assert.Equal(2.0 * expectedPP - pH, ind.S1, 10);
|
|
Assert.Equal(expectedPP + range, ind.R2, 10);
|
|
Assert.Equal(expectedPP - range, ind.S2, 10);
|
|
Assert.Equal(pH + 2.0 * (expectedPP - pL), ind.R3, 10);
|
|
Assert.Equal(pL - 2.0 * (pH - expectedPP), ind.S3, 10);
|
|
}
|
|
}
|
|
|
|
// ── Streaming == Batch ──────────────────────────────────────────
|
|
[Fact]
|
|
public void Streaming_Matches_Batch_PP()
|
|
{
|
|
var bars = CreateGbmBars();
|
|
|
|
// Streaming
|
|
var ind = new Pivotwood();
|
|
var streamPP = new List<double>(bars.Count);
|
|
for (int i = 0; i < bars.Count; i++)
|
|
{
|
|
ind.Update(bars[i], isNew: true);
|
|
streamPP.Add(ind.PP);
|
|
}
|
|
|
|
// Batch
|
|
var batchResult = Pivotwood.Batch(bars);
|
|
|
|
for (int i = 0; i < bars.Count; i++)
|
|
{
|
|
if (double.IsNaN(streamPP[i]))
|
|
{
|
|
Assert.True(double.IsNaN(batchResult[i].Value));
|
|
continue;
|
|
}
|
|
Assert.Equal(streamPP[i], batchResult[i].Value, 10);
|
|
}
|
|
}
|
|
|
|
// ── Streaming == Span ───────────────────────────────────────────
|
|
[Fact]
|
|
public void Streaming_Matches_Span_PP()
|
|
{
|
|
var bars = CreateGbmBars();
|
|
|
|
// Streaming
|
|
var ind = new Pivotwood();
|
|
var streamPP = new List<double>(bars.Count);
|
|
for (int i = 0; i < bars.Count; i++)
|
|
{
|
|
ind.Update(bars[i], isNew: true);
|
|
streamPP.Add(ind.PP);
|
|
}
|
|
|
|
// Span
|
|
int len = bars.Count;
|
|
var ppOut = new double[len];
|
|
Pivotwood.Batch(bars.HighValues, bars.LowValues, bars.CloseValues, ppOut);
|
|
|
|
for (int i = 0; i < len; i++)
|
|
{
|
|
if (double.IsNaN(streamPP[i]))
|
|
{
|
|
Assert.True(double.IsNaN(ppOut[i]));
|
|
continue;
|
|
}
|
|
Assert.Equal(streamPP[i], ppOut[i], 10);
|
|
}
|
|
}
|
|
|
|
// ── Streaming == BatchAll (all 7 levels) ────────────────────────
|
|
[Fact]
|
|
public void Streaming_Matches_BatchAll_AllLevels()
|
|
{
|
|
var bars = CreateGbmBars();
|
|
|
|
// Streaming
|
|
var ind = new Pivotwood();
|
|
var sPP = new List<double>(bars.Count);
|
|
var sR1 = new List<double>(bars.Count);
|
|
var sS1 = new List<double>(bars.Count);
|
|
var sR2 = new List<double>(bars.Count);
|
|
var sS2 = new List<double>(bars.Count);
|
|
var sR3 = new List<double>(bars.Count);
|
|
var sS3 = new List<double>(bars.Count);
|
|
for (int i = 0; i < bars.Count; i++)
|
|
{
|
|
ind.Update(bars[i], isNew: true);
|
|
sPP.Add(ind.PP);
|
|
sR1.Add(ind.R1);
|
|
sS1.Add(ind.S1);
|
|
sR2.Add(ind.R2);
|
|
sS2.Add(ind.S2);
|
|
sR3.Add(ind.R3);
|
|
sS3.Add(ind.S3);
|
|
}
|
|
|
|
// BatchAll
|
|
int len = bars.Count;
|
|
var ppOut = new double[len];
|
|
var r1Out = new double[len];
|
|
var s1Out = new double[len];
|
|
var r2Out = new double[len];
|
|
var s2Out = new double[len];
|
|
var r3Out = new double[len];
|
|
var s3Out = new double[len];
|
|
|
|
Pivotwood.BatchAll(
|
|
bars.HighValues, bars.LowValues, bars.CloseValues,
|
|
ppOut, r1Out, s1Out, r2Out, s2Out, r3Out, s3Out);
|
|
|
|
for (int i = 0; i < len; i++)
|
|
{
|
|
if (double.IsNaN(sPP[i]))
|
|
{
|
|
Assert.True(double.IsNaN(ppOut[i]));
|
|
continue;
|
|
}
|
|
Assert.Equal(sPP[i], ppOut[i], 10);
|
|
Assert.Equal(sR1[i], r1Out[i], 10);
|
|
Assert.Equal(sS1[i], s1Out[i], 10);
|
|
Assert.Equal(sR2[i], r2Out[i], 10);
|
|
Assert.Equal(sS2[i], s2Out[i], 10);
|
|
Assert.Equal(sR3[i], r3Out[i], 10);
|
|
Assert.Equal(sS3[i], s3Out[i], 10);
|
|
}
|
|
}
|
|
|
|
// ── Determinism ─────────────────────────────────────────────────
|
|
[Fact]
|
|
public void Determinism_TwoRuns_IdenticalResults()
|
|
{
|
|
var bars = CreateGbmBars();
|
|
|
|
var ind1 = new Pivotwood();
|
|
var ind2 = new Pivotwood();
|
|
|
|
for (int i = 0; i < bars.Count; i++)
|
|
{
|
|
ind1.Update(bars[i], isNew: true);
|
|
ind2.Update(bars[i], isNew: true);
|
|
}
|
|
|
|
Assert.Equal(ind1.PP, ind2.PP, 15);
|
|
Assert.Equal(ind1.R1, ind2.R1, 15);
|
|
Assert.Equal(ind1.S1, ind2.S1, 15);
|
|
Assert.Equal(ind1.R2, ind2.R2, 15);
|
|
Assert.Equal(ind1.S2, ind2.S2, 15);
|
|
Assert.Equal(ind1.R3, ind2.R3, 15);
|
|
Assert.Equal(ind1.S3, ind2.S3, 15);
|
|
}
|
|
|
|
// ── Calculate factory ───────────────────────────────────────────
|
|
[Fact]
|
|
public void Calculate_ReturnsValidResults()
|
|
{
|
|
var bars = CreateGbmBars();
|
|
var (results, indicator) = Pivotwood.Calculate(bars);
|
|
|
|
Assert.NotNull(results);
|
|
Assert.NotNull(indicator);
|
|
Assert.Equal(bars.Count, results.Count);
|
|
Assert.True(indicator.IsHot);
|
|
}
|
|
|
|
// ── Level Ordering ──────────────────────────────────────────────
|
|
[Fact]
|
|
public void LevelOrdering_S3_LessThan_S2_LessThan_S1_LessThan_PP_LessThan_R1_LessThan_R2_LessThan_R3()
|
|
{
|
|
var bars = CreateGbmBars();
|
|
var ind = new Pivotwood();
|
|
|
|
for (int i = 0; i < bars.Count; i++)
|
|
{
|
|
ind.Update(bars[i], isNew: true);
|
|
|
|
if (!ind.IsHot) { continue; }
|
|
|
|
// For Woodie's pivots with positive range, strict ordering holds
|
|
if (bars[i - 1].High > bars[i - 1].Low)
|
|
{
|
|
Assert.True(ind.S3 < ind.S2, $"S3 ({ind.S3}) should be < S2 ({ind.S2}) at bar {i}");
|
|
Assert.True(ind.S2 < ind.S1, $"S2 ({ind.S2}) should be < S1 ({ind.S1}) at bar {i}");
|
|
Assert.True(ind.S1 < ind.PP, $"S1 ({ind.S1}) should be < PP ({ind.PP}) at bar {i}");
|
|
Assert.True(ind.PP < ind.R1, $"PP ({ind.PP}) should be < R1 ({ind.R1}) at bar {i}");
|
|
Assert.True(ind.R1 < ind.R2, $"R1 ({ind.R1}) should be < R2 ({ind.R2}) at bar {i}");
|
|
Assert.True(ind.R2 < ind.R3, $"R2 ({ind.R2}) should be < R3 ({ind.R3}) at bar {i}");
|
|
}
|
|
}
|
|
}
|
|
|
|
// ── Close-weight bias ───────────────────────────────────────────
|
|
[Fact]
|
|
public void CloseWeightBias_PP_DiffersFromClassicPivot()
|
|
{
|
|
var bars = CreateGbmBars();
|
|
var woodie = new Pivotwood();
|
|
var classic = new Pivot();
|
|
|
|
for (int i = 0; i < bars.Count; i++)
|
|
{
|
|
woodie.Update(bars[i], isNew: true);
|
|
classic.Update(bars[i], isNew: true);
|
|
|
|
if (!woodie.IsHot) { continue; }
|
|
|
|
double pH = bars[i - 1].High;
|
|
double pL = bars[i - 1].Low;
|
|
double pC = bars[i - 1].Close;
|
|
|
|
// When close != (H+L)/2, Woodie and Classic PP differ
|
|
double midpoint = (pH + pL) * 0.5;
|
|
if (Math.Abs(pC - midpoint) > 1e-10)
|
|
{
|
|
Assert.NotEqual(woodie.PP, classic.PP);
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|