Maybe a bit late response.
Actual msg are recorded under \logs folder and files are saved per day.
file names are like per day in the format of
YYYYMMDD.log
there are 3 types of msg and you may read those log file, and count how many of msg are there.
if your EA generates too many of msg, Brokers might limit your EA as it writes too many to server.
More likely, EA was trying to modify SL/TP every tick and it is overloading server.
Modify your EA as majority of EA msgs are generated by OrderModify(xxxx) with trailing stop.
Some tricks to reduce msg are:
* only modify SL/TP when new candle shows up
* only modify SL/TP on certain time interval ( using timer is good way to check and modify )
* only modify SL/TP when certain pip has changed from last, not ever tick
- www.mql5.com
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
(Click on Journal with right button, and click on view, so you see the numbers of messages send, see the image)