Jump to content

Dan1977

Members
  • Posts

    18
  • Joined

  • Last visited

Posts posted by Dan1977

  1. the linked version solved some of the problems mentioned in this thread:

     

    hidden SL and TP: To avoid error 130. Using the variables sl_hidden, tp_hidden, (applied only if ECN_Support = TRUE)

     

    extern bool lower_tp: if set to true, the EA will close the position after reaching 2/3 of the gap instead of the full gap.

     

    extern bool close_on_mon_2am: if set to true, the EA will close the position on Monday 2 AM server time. If, in addition extern bool close_only_in_profit is set to true, the EA will close the position on monday 2 AM only if the position is in profit. It had been set to close the position on Monday 2 AM GMT, so change the line

     

    if ((DayOfWeek() == 1 && TimeHour(TimeCurrent()) >= 2) || DayOfWeek() >= 2)

     

    to

     

    if ((DayOfWeek() == 0 && TimeHour(TimeCurrent()) >= 21) || DayOfWeek() >= 1)

    if you are running the EA with ATC brokers (GMT-5)

     

    or to

    if ((DayOfWeek() == 1 && TimeHour(TimeCurrent()) >= 3) || DayOfWeek() >= 2)

    if you are running the EA with Alpari (GMT+1)

     

    etc...

     

    I've not try it yet, so please post if you find problems or bugs. thanks.

     

    (link removed due to bug. Below is the updated version link)

    hxxp://mir.cr/PLQRSPD0

  2. Hello fellows.

     

    I am adding here small EA. It does two things:

     

    1.

    Put hidden extra SL. For cases like if you don’t trust your EA’s SL method, or if the EA SL is too big. For example, it’ll be very useful with the original megadroid.

    2.

    TP and SL execution validate. Execute the SL/TP even if your broker ignores your TP or SL like happened here: http://www.forexpeacearmy.com/public/review/www.fxcbs.com

    Of course it doesn’t mean that now you can trade with scam brokers. They’ll find other way to scam you, but it can ensure your SL/TP execution, besides the broker execution system.

     

    Just open new chart (EURUSD, or any other 24 hours major pair, any time frame), beside your EA chart, and set the inputs carefully.

     

    I haven’t tried it yet, so it is better to try it in demo account before using it in live.

     

    http://www.mirrorcreator.com/files/1MRLRP8F/

  3. I get the next message

     

    "Dan1977, you do not have permission to access this page. This could be due to one of several reasons:

     

    1. Your user account may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?

    2. If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.

    "

     

    and it is very strange because I wrote in this thread the most of the EA that should optimize the strategy, and now I can not post the update for it.

×
×
  • Create New...