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
+4 -4
View File
@@ -114,10 +114,10 @@ public sealed class Ubands : AbstractBase
_state = default;
_p_state = default;
_residualBuffer.Clear();
Upper = default;
Middle = default;
Lower = default;
Width = default;
Upper = new TValue(DateTime.UtcNow, double.NaN);
Middle = new TValue(DateTime.UtcNow, double.NaN);
Lower = new TValue(DateTime.UtcNow, double.NaN);
Width = new TValue(DateTime.UtcNow, double.NaN);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]