mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-23 04:58:08 +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:
@@ -16,8 +16,8 @@ cg(series float src, simple int length) =>
|
||||
float price = nz(src[count - 1])
|
||||
num += count * price
|
||||
den += price
|
||||
float result = den != 0 ? num / den : (length + 1) / 2.0
|
||||
result - (length + 1) / 2.0
|
||||
float result = den != 0 ? -num / den : -(length + 1) / 2.0
|
||||
result + (length + 1) / 2.0
|
||||
|
||||
// ---------- Main loop ----------
|
||||
|
||||
|
||||
Reference in New Issue
Block a user