CodeBase Bug: Code validation completed with errors

 
mql5\Scripts\Export_Summary_By_Days.mq5(12,11) : error 106: can't open 'MQL5\Include\Trade\DealInfo.mqh' include file
mql5\Scripts\Export_Summary_By_Days.mq5(74,4) : error 256: 'CDealInfo' - undeclared identifier
mql5\Scripts\Export_Summary_By_Days.mq5(74,14) : error 256: 'deal' - undeclared identifier

I get the above errors from online code validation trying to publish the script file.

The same script file can be compiled with NO errors by MetaEditor on my desktop.

I am not really able to figure out what is the cause of error here, any help please!

//+------------------------------------------------------------------+
//|                                       Export_Summary_By_Days.mq5 |
//|                                        Copyright © 2018, Amr Ali |
//|                             https://www.mql5.com/en/users/amrali |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2018, Amr Ali"
#property link      "https://www.mql5.com/en/users/amrali"
#property version   "2.000"
#property description "The script exports summary of closed trades grouped by each trading day to .csv file"
#property script_show_inputs

#include <Trade\DealInfo.mqh>

https://www.mql5.com/en/code/25700

Export Summary Grouped by Trading Days
Export Summary Grouped by Trading Days
  • www.mql5.com
The script exports summary of closed trades grouped by each trading day to .csv file
 
Yes, there is a problem. The developers were given.
 
Vladimir Karputov:
Yes, there is a problem. The developers were given.

Thanks for your help.