Error on Publish the products but the reports only saying errors count 1 but does not indicate what errors.
Hi I having issue on Error on Publish the products but the reports only saying errors count 1 but does not indicate what errors.
Test report for version 1.0
Validation state: Validation completed with errors
- Errors count1
- Started2026.04.24 12:45:53
- Finished2026.04.24 13:14:03
- TypeExpert Advisor
test on EURUSD,H1 (netting) there are no trading operations test on XAUUSD,D1 (netting) log files size exceeded 2049 MB, test terminated Anyone got any idea?
Without seeing your code, we can only guess. Here are some tips:
- 2017.08.07
- www.mql5.com
Hi I having issue on Error on Publish the products but the reports only saying errors count 1 but does not indicate what errors.
You must see this:
test on EURUSD,H1 (netting) there are no trading operations test on XAUUSD,D1 (netting) log files size exceeded 2049 MB, test terminated
Hi I having issue on Error on Publish the products but the reports only saying errors count 1 but does not indicate what errors.
Test report for version 1.0
Validation state: Validation completed with errors
- Errors count1
- Started2026.04.24 12:45:53
- Finished2026.04.24 13:14:03
- TypeExpert Advisor
test on EURUSD,H1 (netting) there are no trading operations test on XAUUSD,D1 (netting) log files size exceeded 2049 MB, test terminated Anyone got any idea?
Yes it does.
You are filling the log file with more then 2 GB of data, it's not allowed.
Hello, easy fix.
Get rid of "Print()" statements on the OnTick function, or OnTimer function. That usually causes the log file to exceed 2GB.
For the "no trading operations", make sure that your code has inputs in the first place eg
input double lotSize;
should be:
input double lotSize = 1;
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hi I having issue on Error on Publish the products but the reports only saying errors count 1 but does not indicate what errors.
Test report for version 1.0
Validation state: Validation completed with errors
test on EURUSD,H1 (netting) there are no trading operations test on XAUUSD,D1 (netting) log files size exceeded 2049 MB, test terminated Anyone got any idea?