Attention to all signal sender, what uses MT4 automatic platform!

Discussion in 'Automated Trading' started by igor00, Jun 6, 2007.

  1. igor00

    igor00

    Hi !

    I am user of fxdd-auto. Can you run your expert advisor (what sends signals) at one's terminal without change of build (just rename the file liveupdate.exe)? Becouse new builds can have bugs. If it work, let's it work.

    If you will have some trouble may be better run expert advisor on build <= 202. :cool:

    Thankyou!


    PS: New bug in build 205
    ===============
    double Price()
    {
    return(1.0);
    }
    int start()
    {
    double IT2 = 2.0*Price(); // IT2= 1 !!!!!!!!!!!!!!!!!!!!!!!!
    double IT3 = 3.0*Price(); // IT3=3 ok
    double IT4 = 4.0*Price(); // IT4=4 ok
    Comment (Price()," ",IT2," ",IT3," ",IT4);
    return(0);
    }
    ========================