How can I get the last trade result in mql4 bot?
I mean the part of code, mine does not work.
This is code, how can I do it?
int a = 0;
while(a == 0){
OrderSend(Symbol(),OP_BUY,0.01,price,5,0,(Ask+0.0002),0,0,0,Green);
a = 1;
}
//if(OrderSelect(OrdersTotal()-1, SELECT_BY_POS)==true){
// Print("Profit for the order 10 " + OrderProfit());
//}
//else{
// Print("OrderSelect returned the error of " + GetLastError());
//}
OrderSelect(OrderTicket(), SELECT_BY_POS);
Print("Profit for the order 10 " + OrderProfit());
OrderModify(OrderTicket(),OrderOpenPrice(),(Ask-0.0001),0,0,0);
if(OrderProfit()<0){
OrderSend(Symbol(),OP_SELL,0.01,price,5,0,0,0,0,0,Green);
}
else{
OrderSend(Symbol(),OP_BUY,0.01,price,5,0,0,0,0,0,Red);
}
question from:
https://stackoverflow.com/questions/65936413/how-can-i-get-last-trade-result 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…