fRSI(SelectedSymbol, PERIOD_CURRENT, 14, PRICE_CLOSE, 0);
double fRSI(string sy,ENUM_TIMEFRAMES SelectedTimeFrame,int period,ENUM_APPLIED_PRICE applied_price,int shift)
{
double buf[1];
int handle=iRSI(sy,SelectedTimeFrame,period,applied_price);
if(handle<0)
{
OpenNewTrade = false;
return(0);
}...