Custom Indicator made into Strategy....

 

f

Files:
 

EA builder and binary options ?

i think you won't get any help here. Search for EA builder in this forum.

 

Since another frequent poster here, already has a pro-forma response to "EA Builder" queries, I am just going to quote him:

WHRoeder:
  • We hate EA builder
  • You couldn't be bothered to learn mql4, therefor there is no common language for us to communicate.
  • There are only two choices: learn to code it, or pay someone. We're not going to code it FOR you. We are willing to HELP you when you post your attempt (using SRC) and the nature of your problem, but we are not going to debug your hundreds lines of code.
  • EA builder makes bad code counting up while closing multiple orders.
  • EA builder makes bad code Bars is unreliable (max bars on chart) volume is unreliable (miss ticks) Always use time
  • EA builder makes bad code Not adjusting for 4/5 digit brokers
  • EA builder makes bad code not adjusting for ECN brokers.
  • EA builder makes bad code not checking return codes.
  • EATree uses objects on chart to save values - not persistent storage (files or GV+Flush.) No recovery (crash/reboot.)
 

That plus

  1.   //--- main loop
       for(int i = limit-1; i >= 0; i--)
         {
          if (i >= MathMin(5000-1, rates_total-1-50)) continue; //omit some old rates to prevent "Array out of range" or slow calculation   
          //Indicator Buffer 1
    Do your lookbacks correctly.
  2. if(iOpen(NULL, PERIOD_M1, 1+i) < iClose(NULL, PERIOD_M1, 1+i)
    Your indicator and EA, only works on the M1 chart.
  3. The tester has no idea about binary options.
 
FMIC:

Since another frequent poster here, already has a pro-forma response to "EA Builder" queries, I am just going to quote him:

Very helpful, thanks
 
martyloo:
Very helpful, thanks
Thank WHRoeder, not me!
Reason: