Remove multiple Pine Script indicators: SSFDSP, STARCHANNEL, STBANDS, STC, UBANDS, UCHANNEL, VWAPBANDS, and VWAPSD. These indicators were deleted to streamline the library and remove unused or redundant code.

This commit is contained in:
Miha Kralj
2026-02-20 18:44:56 -08:00
parent 3dd05f23e4
commit cbeefc9d64
283 changed files with 23963 additions and 3838 deletions
+1 -6
View File
@@ -275,12 +275,7 @@ public class SigmoidTests
[Fact]
public void Calculate_Span_MatchesStreaming()
{
double[] source = new double[100];
var rng = new Random(42);
for (int i = 0; i < source.Length; i++)
{
source[i] = rng.NextDouble() * 200 - 100;
}
double[] source = new GBM(seed: 42).Fetch(100, DateTime.UtcNow.Ticks, TimeSpan.FromMinutes(1)).CloseValues.ToArray();
double[] spanOutput = new double[source.Length];
Sigmoid.Batch(source.AsSpan(), spanOutput.AsSpan());