What is the strategy behind BUYBUYBUY_MT4_Ron_V01 ?

 
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.
Reason: