OrderDelete

 

Hi when you call the OrderDelete function how do you tell it to delete the arrow the prevoious call to OrderSend has created on the chart. I have an EA that adjusts orders on the start of each new bar and I am getting left with dozens of unfilled order arrows on the chart ....

Right now I just call OrderDelete(TicketNumber);

thanks

Paul

 

Some people like these arrows.:-)

If you don't want these arrows at all, replace the last element in the function OrderSend(......,colour) to OrderSend(.....,CLR_NONE).

 
Roger wrote >>

Some people like these arrows.:-)

If you don't want these arrows at all, replace the last element in the function OrderSend(......,colour) to OrderSend(.....,CLR_NONE).

Thanks Roger ...

Reason: