Join our fan page
OptimReport v2.15 - library for MetaTrader 5
- Views:
- 5117
- Rating:
- Published:
- 2010.12.27 13:33
- Updated:
- 2016.11.22 07:32
- Need a robot or indicator based on this code? Order it on Freelance Go to Freelance
If you want to optimize your Expert Advisor using your own characteristics, you can use "Custom max" mode via OnTester() function.
This code simplifies to create your own formulae.
To define the custom optimization parameter, sometimes it's necceary to calculate many trade characteristics.
This code provides you the following characteristics:
- Profit factor;
- Profit in deposit currency;
- Profit in points;
- Total Profit;
- Total Loss;
- Loss deals;
- Profitable deals;
- Profit per deal (in percents);
- Profit per day (in percents);
- Maximal drawdown;
- Balance channel width (in points);
- Difference between the maximal and minimal slope of the balance line;
- Average drawdown (averaged sum of drawdown for all deals);
- Recovery factor;
- Average points per deal.
Compared with previous version, I added the option to save optimization results (and all characteristics) to the HTML file.
Manual:
Copy the "OptimReport.mqh" file to the MQL5\Include\ folder
Add the following line to the code of your Expert Advisor:
#include <OptimReport.mqh>
Add this line to OnInit() function:OtimReport(1);
Add this line to OnTick() function:
OtimReport(2);
Add this line to the code when open position:
OtimReport(3);
Add these 4 lines to OnTester() function:
OtimReport(4); Input_Param="input"; // Input parameters here. See example below... if(Crt_HTML) Sort_HTML_Ar(); return(Vigoda);
Here is an example of Input_Param:
Input_Param="TP_B="+DoubleToString(TP_B,0) +" SL_B="+DoubleToString(SL_B,0) +" GT_B="+DoubleToString(GT_B,0) +" TS_B="+DoubleToString(TS_B,0);
Recommendations:
The Lot_Risk variable is the percent of margin used in trading (for increasing volume).
Note that HTML file with optimization results is saved separately for each agent: С:\Program Files (x86)\MetaTrader 5\Tester\Agent-127.0.0.1-3000\MQL5\Files\
If you have found errors or need some other characteristics, please inform me.
It will be great if you provide your own optimization characteristics.
PS: I prefer to use the formula № 5
Translated from Russian by MetaQuotes Ltd.
Original code: https://www.mql5.com/ru/code/241
The iUSDx indicator uses the "MCM Control Panel" for multicurrency mode. It calculates the USD index.
FAT PANELThe Panel Designed for "Best Graphic Panel in MQL5" Contest. This graphic panel allows to automate manual trading. It has many functions, including the visual construction of trading strategies.
The Expert Advisor is profitable only if the "Open prices" only or "1 minute OHLC" modes used in Strategy Tester.
ZigzagColor_ChannelThe ZigzagColor_Channel plots a channel by connecting the ZigZag peaks and ZigZag bottoms.