ichimoku edge mt4 ea

ichimoku edge mt4 ea
Download ALL MT4 experts (885)
YouTube Video Thumbnail



Similar MetaTrader Tools

ichimoku edge mt4 ea

Info

The ichimoku edge mt4 ea is a Expert Advisor for MetaTrader 4 that ichimoku edge is based on the standard ichimoku kinko hyo indicator with default settings. it generates buy and sell signals from the cross of the chikou spanwith the price, confirmed by the position of price and chikou span relative to the kumo (cloud).

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 ichimoku edge mt4 ea

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

ichimoku edge is based on the standard ichimoku kinko hyo indicator with default settings.

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: sma multi hedge ea - another powerful expert for MetaTrader 4 traders.


ichimoku edge is based on the standard ichimoku kinko hyo indicator with default settings. it generates buy and sell signals from the cross of the

Also recommended: over hedge expert advisor for metatrader - similar expert with strong performance on MetaTrader 4.

chikou span
with the
price
, confirmed by the position of price and chikou span relative to the
kumo (cloud)
.
backtest results
strategy logic

a
buy
signal occurs when the chikou span crosses the price from below, confirmed when both current price and chikou are above the kumo.

a
sell
signal occurs when the chikou span crosses the price from above, confirmed when both current price and chikou are below the kumo.

all open trades close automatically when an opposite (reverse) signal appears.

no fixed stop loss or take profit are used; exits rely entirely on signal reversals.

money management
two position-sizing modes are supported:

fixed lot size
— trades use a predefined volume.

atr-based sizing
— dynamically adjusts lot size based on risk % or money value using the average true range indicator.

key input parameters
ichimoku settings:

tenkan = 9

kijun = 26

senkou = 52

money management:

lots – fixed position size.

mm – enable atr-based risk management.

atr_period, atr_multiplier – atr settings.

risk / moneyrisk – percentage or fixed money risk.

usemoneyinsteadofpercentage – switch between % or currency-based risk.

useequityinsteadofbalance – risk from equity instead of balance.

lotdigits – precision for broker lot size.

miscellaneous:

ordercomment – order label.

slippage – max slippage allowed.

magic – unique ea identifier.

notes
this ea works best on higher timeframes and trending markets. for best results, test various ichimoku and atr settings before live use.

You may also like: Hedge Expert Advisor - excellent alternative for expert users on MetaTrader 4.

Source Code

яю//+------------------------------------------------------------------+
#property copyright "RobotFX"
#property link "https://robotfx.org"
#property version   "1.01"
#property strict
input int Tenkan = 9; // Tenkan line period. The fast "moving average".
input int Kijun = 26; // Kijun line period. The slow "moving average".
input int Senkou = 52; // Senkou period. Used for Kumo (Cloud) spans.
input double Lots = 0.1; 		// Basic lot size
input bool MM  = false;  	// If true - ATR-based position sizing

.......

Leave your opinion, ask a question, share some knowledge

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.
© ROBOTFX Free educational tools by RobotFX. Use entirely at your own risk; we are not liable for any financial losses incurred.