
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
can anyone show me how to call renkomaker.ex4 into EA using icustom like the following custum indicator SuperTrend.
//+------------------------------------------------------------------+
int signal()
{
int signal=2;
if(iCustom(NULL,0,"SuperTrend",10,3.0,0,bars_closed)!=EMPTY_VALUE) signal=0;
if(iCustom(NULL,0,"SuperTrend",10,3.0,1,bars_closed)!=EMPTY_VALUE) signal=1;
return(signal);
}
//+------------------------------------------------------------------+
thanks.