four screens
Info
The four screens is a Expert Advisor for MetaTrader 4 that trades one currency pair, for example eur/usd, on 4 charts (timeframes m5, m15, m30, h1). the heiken ashi is attached to every chart.
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 four screens
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
trades one currency pair, for example eur/usd, on 4 charts (timeframes m5, m15, m30, h1).
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: 3 screens expert advisor - another powerful expert for MetaTrader 4 traders.
trades one currency pair, for example eur/usd, on 4 charts (timeframes m5, m15, m30, h1). the heiken ashi is attached to every chart. the data is measured on the formed bar for m5, and on the current one for other timeframes.
Also recommended: Automated Screenshot and Email Notification After Trade Opening - similar expert with strong performance on MetaTrader 4.
the ea operation principle:sell order:
when all four charts have red candles, it places a sell order (with fixed take profit and stop loss, for example 20 points each). if take profit is triggered and the candles remain red, then a new sell order is placed immediately, but if a candle is white on any of the charts, then wait for the market entry. enter the market once all four charts have red candles.
buy order:
the principle is the same: when all four charts have white candles, it places a buy order (with fixed take profit and stop loss, 20 points each). if take profit is triggered and the candles remain white, then a new buy order is placed immediately, but if a candle is red on any of the charts, then wait for the market entry. enter the market once all four charts have white candles.
if stop loss was triggered, regardless of the trading direction — buy or sell, then the next order by the indicator signal on four charts is doubled (for example, if lot was 0.01, then the next one will be multiplied by 2 etc. until a take profit is triggered, in case a take profit is triggered the lot is returned to its initial value, i.e. 0.01).
trading occurs when all the charts have the same colored candles (red or white).
expert advisor input parameters:
lot
order points (stop loss and take profit)
standard trailing is added in v2.
if the order is closed in profit, and there is a signal, a new order is only opened during the opening of a new bar.
You may also like: EA for Order Screenshots - excellent alternative for expert users on MetaTrader 4.
Source Code
#property copyright "robotfx"
#property link "https://robotfx.org"
#property strict
#property version "1.00"
extern int sl=20;
extern int tp=20;
extern int trailing=10;
extern bool nowbarafterprofit=true;
extern double lot=0.1;
extern int slippage=3;
.......
⚠ 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.