Libraries: Report - page 8

 
Added to CustomReport
input bool AllReports = false;   // All Reports


It is now possible to get multiple reports in one action. Example.

 
An interactive HTML report can now be created for portfolios from closed-source Market Advisors.
TesterPortfolio - портфель ТС
TesterPortfolio - портфель ТС
  • 2020.01.16
  • www.mql5.com
Возьмем третий пункт. Допустим, взяли несколько приглянувшихся советников из Маркета. Настроили их для каждого символа. TesterPortfolio запустит все варианты одновременно, показав общую торговую статистику (просадка эквити на реальных тиках и т.д.). Чаще всего использую для оценки диверсификации различных настроек своих ТС. Использование. На...
 
The library has been updated.
 
fxsaber:
The library has been updated.

Thank you. The library is very useful, I was about to write my own. I hope to get my hands on the rest of your libraries.

 
#define  REPORT_TESTER             // The tester will automatically record reports
#define  REPORT_TESTER_INPUTS      // The single pass report will show EA input parameters - requires DLL resolution.
#define  REPORT_INTERACTIVE_CHARTS // Adds interactive graphs to the report.
#define  REPORT_BROWSER            // Creating a report with browser startup - requires DLL permission.
#include <Report.mqh> // https://www.mql5.com/en/code/18801

#include <..\Experts\Examples\Moving Average\Moving Average.mq5>
Doesn't work. No graphics, browser won't open. In the terminal dll settings it is allowed
Files:
1_Report.zip  42 kb
 
Rorschach:
Doesn't work. No graphics, browser won't open. In the terminal dll settings it is allowed

Forum on trading, automated trading systems and testing of trading strategies

Indicators: Tick Indicator ZoomPrice

fxsaber, 2020.06.29 11:12 AM

Don't download zip archives - it's an ancient KB bug. Either manually grab each file, or (which is much easier) download the indicator from ME.

 
fxsaber:

I'm downloading everything file by file. I'll check it again.

upd Not the first time, but it worked. I still don't understand what the problem is.

The Files folder is not downloaded using the method above.

 
It would be desirable to customise the list of columns in the table, as well as to provide an auto-off mode, because, for example, for reports in which there is no commission or SL/TP are not used, space is wasted in width and all other information is either small or does not fit into the screen.
 
Stanislav Korotky:
It would be desirable to customise the list of columns in the table, as well as to provide for an auto-off mode, because, for example, for reports in which there is no commission or SL/TP are not used, space is wasted in width and all other information is either small or does not fit into the screen.

At the moment it is like this.

const string REPORT:: Shablon = FIELD(N) + FIELD(Ticket) + FIELD(OpenTime) + FIELD(Type) + FIELD(Lots) + FIELD(Symbol) +
                                FIELD(OpenPrice) + FIELD(StopLoss) + FIELD(TakeProfit) + FIELD(CloseTime) + FIELD(ClosePrice) +
                                FIELD(Commission) + FIELD(Swap) + FIELD(Profit) + FIELD(Comment) + FIELD(Pips) +
#ifdef  REPORT_SLIPPAGE
//FIELD(OpenPriceRequest) + FIELD(ClosePriceRequest) +
                                FIELD(SlipPage) +
#endif // REPORT_SLIPPAGE
                                FIELD(MagicNumber) + FIELD(LengthTime) + FIELD(Balance);
 
Can be used to add MagicNumber or Comment column on the Report generated by MT4 backtest?