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
+2 -11
View File
@@ -487,19 +487,10 @@ public class UiTests
public void Batch_LargeDataset_NoStackOverflow()
{
const int dataLen = 10000;
double[] source = new double[dataLen];
var bars = new GBM(seed: 42).Fetch(dataLen, DateTime.UtcNow.Ticks, TimeSpan.FromMinutes(1));
double[] source = bars.CloseValues.ToArray();
double[] output = new double[dataLen];
// Fill with realistic data
double price = 100.0;
var rng = new Random(42);
for (int i = 0; i < dataLen; i++)
{
double change = (rng.NextDouble() - 0.5) * 2; // -1% to +1%
price *= (1 + change / 100);
source[i] = price;
}
Ui.Batch(source, output, DefaultPeriod);
// Verify all outputs are valid