AbzParticipant
Veteran
Hello,
is it possible to tell the screener to look for specifis stocks and have different parameteres for each stock then i dont need to make 1 screener for every stock i want to monitor. And is there possible to get an email or sms when these stocks appear on the screener?
// indicators for stock 1
Will = Williams[60](close)
Rs = RSI[20](close)
// Conditions to enter Long positions
c1 = Will >= -40
c2 = Rs <= 50
condition = c1 and c2
screener[condition]
// indicators for stock 2
Will = Williams[50](close)
Rs = RSI[30](close)
// Conditions to enter Long positions
c1 = Will >= -20
c2 = Rs <= 10
condition = c1 and c2
screener[condition]
I’m sorry but no, there is no emails or sms alerts possible for screeners.
About defining different screeners conditions for each stock in the same proscreener code, you could use the EQUITYFRAME instruction.
AbzParticipant
Veteran
i tried EQUITYFRAME before i posted the question. i coud not get it to work. coud you help me to place the code , i tried a stock in norwegian market is the market then “OSE” ? i tried on stock STL and NHY. is it possible for you to place them in the code for me?