• Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)

RSI notification

Oneilboy

New Member
Credits
0
Hi,

is there a possibility to get a notification if the the RSI is below or higher then the levels that I put in MT4 and what pair?
 
I think this need to modify indicator with add new code for the alert
maybe you need contact programmer to working this job, or if you can learn how to attach alert in indicator by own selves its good.
 
Hi,

is there a possibility to get a notification if the the RSI is below or higher then the levels that I put in MT4 and what pair?

Code:
handle_iRSI=iRSI(_Symbol, _Period, period_RSI, PRICE_CLOSE);
if(CopyBuffer(handle_iRSI,0,0,5,rsi)!=5) return;
double rsi_val = NormalizeDouble(rsi[0],2);
if(rsi_val<30) alert("Price lower than 30% RSI");
if(rsi_val>70) alert("Price higher than 70% RSI");
 
Back
Top