Which ChartEvent does this...?

 
What is the ChartEvent that recognizes that an order has been placed or modified manually?  Thanks in advance. 
 
macpee:
What is the ChartEvent that recognizes that an order has been placed or modified manually?  Thanks in advance. 

No, OnChartEvent() only works for graphical objects and mouse clicks on a chart.

You need to monitor all open trades for any change.

 
In MQL5 there is OnTrade() where you could hook your event handler to. But not in MQL4. See also here: https://www.mql5.com/en/forum/60425
OnTrade() operates in mql4?
OnTrade() operates in mql4?
  • 2015.06.19
  • www.mql5.com
OnTrade() operates in mql4? Accustomed to mql5, I see that does not work in mql4... It's like that...
 
lippmaje:
In MQL5 there is OnTrade() where you could hook your event handler to. But not in MQL4. See also here: https://www.mql5.com/en/forum/60425
Thanks all