Open losvelle opened 3 years ago
Looking to see if Donchian Channels can be added
you can easily accomplish that using the min, max functions given by the tulip indicators for fast calculation: upper_donchian = ti.max(high, period) lower_donchian = ti.min(low, period)
Looking to see if Donchian Channels can be added