Jump to content

r_a_u_l

Members
  • Posts

    124
  • Joined

  • Last visited

Posts posted by r_a_u_l

  1. maybe a forum moderator should show mr. Augustine where the rules of this forum are posted

     

    i do not think it is allowed to use such a language

     

    and more over, Capella's contributions are well appreciated (on this forum and another)

     

    but hey... go on...

     

    in the mean time, do not bother to reply -- i am giving up on this forum

     

    enjoy your language, and may the green pips be with you

     

    best regards

  2. My point was - don't waste time on so called arbitrage EA's when there are working strategies on other EA's.

     

    Contrary to you, I know how broker systems works. And I also for sure know how arbitrage works in theory as well as in practice (as a financial mathematician and computer programmer). And what about the truth?! Direct us to ANYONE who can show a real, live working account that can be verified, that uses an arbitrage EA? The ones that are sold and have been sold by vendors only refer to demo-accounts. Why?! Simply because it only works on demo-accounts.

     

    And when it comes to EA's. I have published one that can be found at another fx forum, which btw is available for free. What have you contributed to?

     

     

    PM me

     

    i can show you

     

    investor password

     

    best regards

  3. hi

     

    i have this code sequence:

     

    //////////////

    if (NewOrdersPlacedS) {

    if (flagS == TRUE) {

    for (cnt = OrdersTotal() - 1; cnt >= 0; cnt--) {

    if (OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES)) {

    if (OrderSymbol() == Symbol() && OrderMagicNumber() == MagicNumberS) {

    if (OrderType() == OP_SELL) {

    ErrorS = OrderModify(OrderTicket(), AveragePriceS, OrderStopLoss(), PriceTargetS, 0, Red);

    if (ErrorS == -1) ShowERROR (ErrorS,0,0);

    NewOrdersPlacedS = FALSE;

    }

    }

    }

    }

    }

    }

    /////////////////

     

    i want the code to do the following:

     

    -- if (ErrorS == -1) ShowERROR (ErrorS,0,0);

     

    -- try again every 5 seconds until order is modified

     

    can anyone guide me alter the code?

     

    best regards,

     

    raul

×
×
  • Create New...