Hi
Kalenzo is a programmer highly reccomended by owners of forex-tsd as a good programmer.That was the only reason for hiring him.I did not know some TSD scammers were working together.
Here is another programmer who tried to help because the SCAMMER was not replying to emails
Here is comments on the last EA you send me, the Oilfxpro_trader_v1.3 rsioma.trigger5:
After reviewing the code, I found a couple of issues:
1. Is this EA a hedging strategy between EU & GU where you long on one pair and short the other at the same time? If that is the case then this EA has a huge bug: It will long or short on both EU & GU when you get a signal.
2. Since the EA trades 2 symbols at the same time, the EA won't work under MT4 Tester. You can't backtest with this EA.
3. The correlation between EU & GU signal code has a bug, and that's why you get no trades at all:
bool getSignal(int mode)
{
int i=0;
if(separatedSignal(mode,1,"EURUSD"))
{
for( i = ColerationBarsToCheck; i<=0;i--)
{
if(separatedSignal(mode,i,"GBPUSD")) return(true);
}
}
else if(separatedSignal(mode,1,"GBPUSD"))
{
i=0;
for( i = ColerationBarsToCheck; i<=0;i--)
{
if(separatedSignal(mode,i,"EURUSD")) return(true);
}
}
else
return(false);
}
You should change i<=0 into i>=1 in both places. Because of this bug, getSignal() always return false, so no signal to trade.
OILFXPRO