normalization of methods

This commit is contained in:
Miha Kralj
2026-02-10 21:33:16 -08:00
parent 915d7a007b
commit 6d6259a47d
527 changed files with 10525 additions and 2123 deletions
+2 -2
View File
@@ -13,7 +13,7 @@ public class WadValidationTests
public void Wad_BatchMatchesStreaming()
{
// Batch calculation
var batchResult = Wad.Calculate(_data.Bars);
var batchResult = Wad.Batch(_data.Bars);
// Streaming calculation
var wad = new Wad();
@@ -37,7 +37,7 @@ public class WadValidationTests
var spanOutput = new double[high.Length];
// Span calculation
Wad.Calculate(high, low, close, volume, spanOutput);
Wad.Batch(high, low, close, volume, spanOutput);
// Streaming calculation
var wad = new Wad();