How to make real time chart EA to run like a control point model? - page 2

 
The difference between every tick and control point in testing is that every tick
Opens the orders in a row, so I created this code to save time interval.
that fits for 4 Hours Period .
this code is allowed to open an order every 12.5 minutes.
however, the result was not very similar or identical to Controll Point.
I don't know what the order opening in Controll Point test mode depends on. I don't really think it's fringe.
If anyone knows how Controll Point test is programmed or info about it please let me know.
or if you develop the code that everytick test module returns result like Controll Point please let me know as I've been trying to achieve this for a long time.

Thank you very much.


int start(){

  

static int time_waiting =  TimeCurrent() + 750;    // 750 Sec   =  12.5 M

if (TimeCurrent()>= time_waiting){     

  Your_Code_Call ();    

time_waiting=TimeCurrent()+750;       // 750 Sec   =  12.5 M

Comment("Order");

  }

}

Reason: