feat: add new indicators (Decay, Edecay, MinusDi, MinusDm, PlusDi, PlusDm, Maxindex, Minindex, Sarext) and update pine scripts, core libs, validation tests, and python bindings

This commit is contained in:
Miha Kralj
2026-03-09 13:45:46 -07:00
parent 8e43d62cbb
commit 031f1b5fe6
491 changed files with 6156 additions and 5590 deletions
+5
View File
@@ -369,6 +369,11 @@ public sealed class Squeeze : ITValuePublisher
SqueezeOn = false;
}
/// <summary>
/// Span-based batch Squeeze calculation. Populates both the momentum and squeeze-state output spans.
/// </summary>
/// <param name="momOut">Output span for Squeeze momentum values (linear regression of detrended price).</param>
/// <param name="sqOut">Output span for squeeze-state values (positive when Bollinger Bands are inside Keltner Channel).</param>
public static void Batch(
ReadOnlySpan<double> high,
ReadOnlySpan<double> low,