Strategy Tester Optimization Results Editor v0.14
Info
The Strategy Tester Optimization Results Editor v0.14 is a Expert Advisor for MetaTrader 4 that this is an example demonstrating how optimization results can be edited in a text editor and subsequently utilized by an expert advisor. The signals identified by the MT4 Strategy Tester, with a profit factor exceeding 2, are used in this demonstration.
Usage
This tool is typically used for automated trading on major forex pairs and gold.
Platform
This Expert Advisor works exclusively on MetaTrader 4 (both build 600+ and newer versions).
Setup
Place the downloaded file in MQL4/Experts folder via File ? Open Data Folder in MetaTrader 4.
How to Install and Use Strategy Tester Optimization Results Editor v0.14
1. Installation: Open the "File" menu, select "Open Data Folder," navigate to MQL/Experts, paste your file, and restart the terminal.
2. Activation: Drag the EA from the Navigator onto a chart, ensure "Allow live trading" is checked in the Common tab, and verify the AutoTrading button is green.
3. Optimization: Right-click your chart, choose "Expert List," click "Properties" to adjust inputs, and save your preferred setup as a set file for future use.
4. Maintenance: Regularly check the "Experts" tab in the terminal window to monitor trade logs and potential execution errors.
Frequently Asked Questions
Q: Why is my EA not opening trades? A: Check the "AutoTrading" button, ensure "Allow live trading" is enabled, and verify your broker allows automated trading on your account type.
Q: Can I run multiple EAs on one chart? A: No, each chart can only host one active EA; however, you can open multiple charts for different currency pairs to run several EAs.
Q: What does the "smiley face" icon mean? A: A smiley face in the top-right corner of the chart indicates the EA is successfully running; a frowny face means it is disabled.
What this tool does
This is an example demonstrating how optimization results can be edited in a text editor and subsequently utilized by an Expert Advisor.
Typical Use Case
This Expert Advisor excels in automated trading and technical analysis on MetaTrader 4.
Compatible Platform & Setup
This Expert Advisor works on MetaTrader 4. Place the file in the MQL4/Experts folder and restart the terminal.
Description & Settings
Related: equity tester - another powerful expert for MetaTrader 4 traders.
This is an example demonstrating how optimization results can be edited in a text editor and subsequently utilized by an Expert Advisor.Also recommended: tc trade channel: a channel-based trading strategy - similar expert with strong performance on MetaTrader 4.
The signals identified by the MT4 Strategy Tester, with a profit factor exceeding 2, are used in this demonstration.Many of these signals occurred only once throughout the entire historical data. Therefore, a confirmation from multiple diverse signal types is necessary.
The "minsignsum" setting specifies the required number of confirmations and must be set to a minimum of 4.
This tool is shared to illustrate a method by which even novice coders can develop advanced trading systems.
It is not recommended for live trading.
Backtest results were obtained using ForexTester data with default settings from 2001.01.01 to 2011.06.30. The test period begins from the 100th H4 bar.
You may also like: strategy tester expert advisor - excellent alternative for expert users on MetaTrader 4.
Source Code
extern bool usemm = 1;
extern double risk = 0.02;
extern double lot = 0.2;
extern double maxlot = 10;
extern int lotdigit = 1;
extern int minsignsum = 5; //should never be less than 4!!
extern bool printsums = 0;
extern bool timeclose = 1;
extern int barsnumber = 1;
extern int takeprofit = 300; //on 4 digits
.......
⚠ Limitations & Risk Warning
- This tool is provided for educational and testing purposes only.
- Past performance does not guarantee future results.
- Trading involves substantial risk of loss. Use on a demo account first.
- Results may vary depending on market conditions, broker, and settings.
- We recommend thorough backtesting and forward testing before using with real funds.