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
@@ -36,12 +36,12 @@ public class HtTrendmodeTests
{
var indicator = new HtTrendmode();
// Use a mix of trending and cycling data
var rnd = new Random(42);
for (int i = 0; i < 100; i++)
// Use GBM-generated price data
var gbm = new GBM(seed: 42);
var bars = gbm.Fetch(100, DateTime.UtcNow.Ticks, TimeSpan.FromMinutes(1));
for (int i = 0; i < bars.Count; i++)
{
double value = 100.0 + Math.Sin(i * 0.1) * 5 + rnd.NextDouble();
var result = indicator.Update(new TValue(DateTime.UtcNow.AddMinutes(i), value));
var result = indicator.Update(bars[i].C);
// After warmup, output should be 0 or 1
if (i >= 40)