Getting MessageBox info from an indicator

 

Hi,


Let's say I've got an EA that displays a MessageBox at some point. Is there a way for an indi to get the text displayed in that messagebox? I was thinking something like CHARTEVENT_OBJECT_CREATE, but that method does not detect messageboxes. 

 
No.
 
If you have the source of the EA, then you could create a hidden object on the chart to which the indicator knows the name. This way you can exchange details or data between the EA and the Indicator.

Additionally, you can use a custom event and send it to the chart, which the indicator will receive.

But that's all only possible with the source on both sides.
Reason: