Hi
How can I create an alert on my indicator, without having to return my “MyCondition” variable ?
SMA20 = Average[20](close)
SMA50 = Average[50](close)
MyCondition = SMA20 Crosses Over SMA50
Return
Best Reguards,
ZeroCafeine
Hi
the simple solution I found is to return the boolean variable, and set the value equal to 1 like on the picture
SMA20 = Average[20](close)
SMA22 = Average[22](close)
MyCondition = SMA20 Crosses Over SMA22
MyCondition = SMA20 Crosses Under SMA22
Return MyCondition
Can anyone tell me how to make a permanent alert because once my alert is triggered, the song here circled in the blue circle changes value?
best reguards
I’m still a bit new to alerts,
Do you know if it is possible to program the alert only once per candle? Or is it possible to give a maximum duration for the alert
Alert can be set either to repeat or to sound once only … both settings for each occurrence of the condition.
Go Main Toolbar > Settings . Platform Settings and enter Alert in the search bar.
Let us know if you have problems.