Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • in reply to: 21 Day Program: Errors and Solutions #254118 Reply
    Ashley Regan
    Participant

    I figured it out on my own.

    in the source code change

    ENUM_ORDER_TYPE_FILLING GetOrderFillingType()
    {
    const int oftIndex=(int) SymbolInfoInteger(_Symbol,SYMBOL_FILLING_MODE);
    const ENUM_ORDER_TYPE_FILLING fillType=(ENUM_ORDER_TYPE_FILLING)(oftIndex>0 ? oftIndex-1 : oftIndex);

    return (fillType);
    }

     

    to

     

    ENUM_ORDER_TYPE_FILLING GetOrderFillingType()
    {
    return (ORDER_FILLING_IOC);
    }

     

    USDJPY trades can now trade for me without error

    in reply to: 21 Day Program: Errors and Solutions #252269 Reply
    Ashley Regan
    Participant

    here is a link to the ea, the complied version and the settings I am using:

     

    The account size is 20000 gbp

    in reply to: Top 10 EAs: Errors and Solutions #252081 Reply
    Ashley Regan
    Participant

    One of your robots is not working for me, the 30051010 USDJPY 5M (April 2024) is not trading. In the experts tab within MT5 I get the message “Error: actionTrade::ManageOrderSend(): OrderCheck(): Invalid order filling type” I have tried restart the robot but still get the same error message. Is there anything I can do to get it working or is the issue with the robot?

    in reply to: 21 Day Program: Errors and Solutions #251360 Reply
    Ashley Regan
    Participant

    Do you have an email address?

    in reply to: 21 Day Program: Errors and Solutions #250997 Reply
    Ashley Regan
    Participant

    Hello Miroslav. It is odd the other robots work for me. The broker is FTMO. How would you like me to send the robot? Do you have an email address?

    in reply to: 21 Day Program: Errors and Solutions #250588 Reply
    Ashley Regan
    Participant

    in the experts tab I get the message “Error: actionTrade::ManageOrderSend(): OrderCheck(): Invalid order filling type” I have tried restart the robot but still get the same error message. Is there anything I can do to get it working or is the issue with the robot?

Viewing 6 posts - 1 through 6 (of 6 total)
Scroll to Top