Desperate newbie needing help to set alert
Posted: Thu May 26, 2022 2:22 pm
Hello everyone, I'm glad that I found this forum today . I thank in advance anyone who will provide some useful guidance . Pinescript is not that easy for me, quite frustrating at the time . I'm reading doc for hours but can't figure out how to make what's in mi mind
Here is a ZLSMA which can be set on a different timeframe and color change :
I would be so happy if it would be possible to set buy alert on this when color is blue AND price closes above the line and Sell alert on the opposit ( line turning red AND bar close below it
Thank you so much in advance for your precious help <3
Here is a ZLSMA which can be set on a different timeframe and color change :
Code: Select all
//
indicator(title='ZLSMA Trend- alerts', shorttitle='ZLSMA Trend alert', overlay=true, timeframe='')
length = input(title='Length', defval=32)
offset = input(title='Offset', defval=0)
src = input(close, title='Source')
lsma = ta.linreg(src, length, offset)
lsma2 = ta.linreg(lsma, length, offset)
eq = lsma - lsma2
zlsma = lsma + eq
zcolorchange = input(title='Change Color ?', defval=true)
zColor = zcolorchange ? zlsma > zlsma[1] ? color.blue : color.red : color.yellow
plot(zlsma, title='LagF', linewidth=4, color=zColor, transp=0)
//alertcondition(zcolorchange=color.blue, title="Buy", message="green buy")
//alertcondition(zcolorchange=color.red, title="Buy", message="green buy")
Thank you so much in advance for your precious help <3