Attachments forums

List of attachments posted on this forum.


All files on forums: 160896

Can you check why is my EA not placing tp and sl on market orders ?

xzerax, Sun Apr 16, 2023 8:39 am

my ea uses pending and market orders to place trades when conditions met ,, however it is not placing any tp or sl on market orders ,, i tried changing the code and disable market orders even ,, but i ran into many orders ... help me please ?

my try to disable market orders (faild) :

// Disable market orders
bool send_order = false;

// Check if the order type is market
if (OrderType() == OP_BUY || OrderType() == OP_SELL) {
send_order = false;
}
All files in topic