mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-25 05:48:06 +00:00
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:
@@ -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)]
|
||||
|
||||
Reference in New Issue
Block a user