
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
Hello,
1. What is the strategy (the idea) behind this EA ? It just open a buy order if there is no opened order.
if(total < 1){
...
ticket=OrderSend(Symbol(),OP_BUY,Lots,Ask,3,SL,TP,TradeComment,MagicNumber,0,White);
...
It doesn't use any indicator. Strange !!
Then, it use a TrailingStop loop: for(cnt=total-1; cnt>=0; cnt--)
So, what is the strategy?
2. Could you test it (using the Tester in MT4) ? I did it.
Why (as most EA) it failed using model "Every Tick" and it perform using the model "Control Points" ?
Thanks.