Aurex Lions / Publications
Forum
Synchronize RSI value with EA
Hi, newbie here. I'm trying to synchronize indicator values (for example: RSI) with EA. Here's the code #property strict #include <Trade\Trade.mqh> CTrade trade; input int RSIPeriod = 9 ; int rsiHandle; int OnInit () { rsiHandle = iRSI ( _Symbol , PERIOD_H1 , RSIPeriod, PRICE_CLOSE ); return