fibo retracement trader
Info
The fibo retracement trader is a Expert Advisor for MetaTrader 5 that this simple expert advisor was created to illustrate the capabilities of trading the fibonacci levels. the ea uses the standard zigzag indicator (from the standard metatrader delivery) as the basis for placing the grid.
Usage
This tool is typically used for automated trading on major forex pairs and gold.
Platform
This Expert Advisor works exclusively on MetaTrader 5 (both build 600+ and newer versions).
Setup
Place the downloaded file in MQL5/Experts folder via File ? Open Data Folder in MetaTrader 5.
How to Install and Use fibo retracement trader
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 simple expert advisor was created to illustrate the capabilities of trading the fibonacci levels.
Typical Use Case
This Expert Advisor excels in automated trading and technical analysis on MetaTrader 5.
Compatible Platform & Setup
This Expert Advisor works on MetaTrader 5. Place the file in the MQL5/Experts folder and restart the terminal.
Description & Settings
Related: exp fibo candles - another powerful expert for MetaTrader 5 traders.
this simple expert advisor was created to illustrate the capabilities of trading the fibonacci levels. the ea uses the standard zigzag indicator (from the standard metatrader delivery) as the basis for placing the grid.
Also recommended: zz fibo trader - similar expert with strong performance on MetaTrader 5.
the ea determines the trend direction based on the two latest highs and two lows (presence of a higher high and a higher low — uptrend; accordingly, a lower high and a lower low — downtrend; highs and lows changed in different directions —no trend). the fibonacci grid is based only on the trend.once the grid is plotted, the ea waits for a retracement to a certain level and trades the breakout of this levels in the opposite direction.
the ea uses the following parameters:
zigzag depth — parameter of the zigzag indicator;
zigzag deviation — parameter of the zigzag indicator;
zigzag backstep — parameter of the zigzag indicator;
trade volume — working lot;
stop-loss level (points) — stop loss level in points;
take profit at fibo extension — take profit levels as a fibonacci extension (for example, value 0.38 means an expansion of 138%);
next bar close distance from level (points) — the distance from the level along the trend, at which the ea will open a trade;
next to previous high(low) distance — minimum distance between the subsequent highs and subsequent lows, in which the ea searches for a trend;
pause from close to trade (bars) — the number of bars that must be elapsed after closure of the previous trade for the ea to open a new trade;
fibo levels colors — color of the fibonacci grid levels;
for its trading, the ea uses fibonacci levels plotted using the trend based on the standard zigzag indicator.
You may also like: fibo i sa r - excellent alternative for expert users on MetaTrader 5.
Source Code
#property copyright "robotfx"
#property link "https://robotfx.org"
#property version "1.00"
#define expert_magic 123456 // magicnumber
input int extdepth = 12; //zigzag depth
input int extdeviation = 5; //zigzag deviation
input int extbackstep = 3; //zigzag backstep
input int tradevalue = 1; //trade volume
input int stoplosslevel = 15; //stop-loss level (points)
input double takeprofitat = 0.2; //take profit at fibo extension
.......
⚠ 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.