Hello! Probably yes, problem with MetaQuotes validation system. Wait for some time (hours, sometimes 2 days) and try again.
I found some general information related -
1. The checks a trading robot must pass before publication in the Market - the article
2. Solving Automatic Validation Problems Arising During Product Submission in MQL5 Market - blog post
3. there are no trading operations - the forum thread

- www.mql5.com
Hello, my EA validation failed with the message: "EURUSD: no history data from 2022.02.01 00:00 to 2022.09.01 00:00 there are no trading operations" My code does not have runtime errors and works in local tests with complete history data. How can I proceed with the Market upload? Is this a system issue? Thank you.
had the same issue in an indicator recently .
put this limitation in to test it and it passed : (not recommended though)
if(((long)time[i])>1672610355)However it does not imply a pure date + data problem as it also cuts the testing range in half . so you may be looking at a slow ea

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hello, my EA validation failed with the message: "EURUSD: no history data from 2022.02.01 00:00 to 2022.09.01 00:00 there are no trading operations" My code does not have runtime errors and works in local tests with complete history data. How can I proceed with the Market upload? Is this a system issue? Thank you.