Watch how to download trading robots for free
Find us on Twitter!
Join our fan page
Interesting script?
So post a link to it -
let others appraise it
You liked the script? Try it in the MetaTrader 5 terminal
Libraries

Expert History Export - library for MetaTrader 5

Views:
2098
Rating:
(31)
Published:
2022.04.09 17:23
Updated:
2022.06.29 11:52
\MQL5\Include\
ExpertHistory.mqh (38.82 KB) view
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance

Adds the ability to automatically export the history of deals after running an Expert Advisor in the Strategy Tester.

The file is saved in the shared terminal folder   Common/Files or in the terminal folder   MQL5/Files.

The file name is generated automatically or set manually when calling the method   Export()

The history file can be used to simulate the same sequence of trades on another trading server using an EA Simple History Receiver .


Basic usage

1. Instantiate the object in the global scope:

CExpertHistory expertHistory();

2. Add to the function call   OnTester() method call   Export()   :

double OnTester(void) {

    ...

    expertHistory.Export();

    ...

}


Extended use

1. Instantiate the object in the global scope:

string expertName = "SomeExpert";

string expertVersion = "1.00";     // Not required


CExpertHistory expertHistory(expertName, expertVersion);


2. Add to function   OnInit()   any pairs of parameter names and values:

input double SL = 500;

input double TP = 1000;


int OnInit() {

    ...

    expertHistory.AddParam("Symbol", Symbol());

    expertHistory.AddParam("TP", TP);

    expertHistory.AddParam("SL", SL);

    ...

}


3. Add to the function call   OnTester() method call   Export() :

 double OnTester(void) {

     ...

     if(!MQLInfoInteger(MQL_OPTIMIZATION)) { // If you want save history only in single tester run

         expertHistory.Export();

     }

     ...

}


At the method   Export()   there are options:

void Export(
   string export FileName = "", // The name of the file to export. If empty, it will be generated according to the exportFileNameFormat parameter

   ENUM_HISTORY_EXPORT_FORMAT exportFormat = HEF_INI_FULL, // Export format. By default, in the file in addition to the transactions
                                                           // account parameters are recorded, testing period, max. drawdown and so on.

   ENUM_HISTORY_FILENAME_FORMAT exportFileNameFormat = HFF_FULL, // File name format. By default, the file name includes the server name, the testing period, max. drawdown and so on.

   int commonFlag=FILE_COMMON // Save a file to a shared terminal folder. If it is equal to 0, then save to a non-shared folder.
);



Account History Export Account History Export

Export the history of transactions on the trading account.

MA plus MA plus

Standard MA + Hull MA + DEMA + TEMA

Extending the Rectangle Extending the Rectangle

An indicator to monitor the appearance (or change) of a rectangle whose name starts with ...

CHO Smoothed Arrow CHO Smoothed Arrow

Signals (Arrow objects) of iCHO indicator (Chaikin Oscillator, CHO) and smoothed iCHO intersections