Experts: GreenTrade

 

GreenTrade:

The Expert Advisor trades based on iMA and iRSI signals. Values of iMA on four bars are compared. Indices of these bars can be optimized.

GreenTrade indices

Author: Vladimir Karputov

 
Hi, nice EA, do you have it for MT4?
 
zizou_05_fx :
Hi, nice EA, do you have it for MT4?

Not.

 

I would consider instead of:

 if(CalculateAllPositions()>InpMaxPosition)
      return;

you should have put:

 if(CalculateAllPositions()>=InpMaxPosition)
      return;

Thanks for the code.

Reason: