I want to use three moving averages in one indicator, but one of the moving averages has offset in its inputs. I can not use plotshape in the way that I want. Version 5 pine script:
indicator("Kestrel", overlay = true)
ma1 = ta.sma (close, 5)
ma2 = ta.sma (close, 14)
ma3 = ta.sma (close, 200)
plot (ma1, color = color.red, linewidth = 2)
plot (ma2, color = color.blue, linewidth = 2, offset = 3)
plot (ma3, color = color.lime, linewidth = 2)
How can I use plotshape and omit plots from my indicator.? Thnxs