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
+3 -4
View File
@@ -240,13 +240,12 @@ public class HomodValidationTests
public void Homod_HandlesVolatileInput()
{
var homod = new Homod(6, 50);
var random = new Random(42);
var bars = new GBM(seed: 42).Fetch(500, DateTime.UtcNow.Ticks, TimeSpan.FromSeconds(1));
// Highly volatile random input
// Highly volatile GBM input
for (int i = 0; i < 500; i++)
{
double value = 100.0 + (random.NextDouble() - 0.5) * 50;
var result = homod.Update(new TValue(DateTime.UtcNow.AddSeconds(i), value));
var result = homod.Update(bars.Close[i]);
Assert.True(double.IsFinite(result.Value));
if (homod.IsHot)