Hi,
Is it possible to provide a code for a zero lag indicator to be used on Pi? I am providing a code below that I found. May be, it can be used as a reference:
//
// @author LazyBear
//
study(title = "Almost Zero Lag EMA [LazyBear]", shorttitle="ZeroLagEMA_LB", overlay=true)
length=input(10)
src=close
ema1=ema(src, length)
ema2=ema(ema1, length)
d=ema1-ema2
zlema=ema1+d
plot(zlema)
Thanks,
Ganesh