55 ma

55 ma
Download ALL MT5 experts (1593)
YouTube Video Thumbnail



Similar MetaTrader Tools

55 ma

Info

The 55 ma is a Expert Advisor for MetaTrader 5 that idea by:the ima (moving average, ma) indicator in this expert advisor allows changing the timeframe (ma: timeframe), horizontal shift (ma: horizontal shift), averaging method (ma: smoothing type) and applied price (ma: type of price) - i. e.

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 55 ma

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

idea by:the ima (moving average, ma) indicator in this expert advisor allows changing the timeframe (ma: timeframe), horizontal shift (ma: horizontal shift), averaging method (ma: smoothing type) and applied price (ma: type of price) - i.

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: Trade Adjustment Panel for MT5 - another powerful expert for MetaTrader 5 traders.


idea by
:
the ima (moving average, ma) indicator in this expert advisor allows changing the timeframe (

Also recommended: Quantora Trade Manager MT5: Advanced Position Management - similar expert with strong performance on MetaTrader 5.

ma: timeframe
), horizontal shift (
ma: horizontal shift
), averaging method (
ma: smoothing type
) and applied price (
ma: type of price
) - i.e. all parameters except the averaging period. the averaging period is provided in the code and is equal to 55 (this number is used in the ea name).
how it works
the ea only operates during a new bar formation. as soon as the current time (only hours, without minutes and seconds) enters the interval from
start hour
to
end hour
, the expert advisor requests data from the indicator. it does not just request data from bar #0 and #1, but it requests data from
bar number #a
and
bar number #b
.
then the values ​​on these two bars are compared: if the difference between them is greater than or equal to
difference between bars #a and #b
- a position open signal will be generated. the
reverse signals
function is disabled by default (set to
false
), and the following rules apply to a signal:

a buy signal: ma(
bar number #a
) > ma(
bar number #b
) +
difference between bars #a and #b
;

a sell signal: ma(
bar number #a
) < ma(
bar number #b
) -
difference between bars #a and #b
.

if you enable closing of opposite positions (set
close opposite positions
to
true
), sell positions will be closed at the final buy signal and vice versa.
volume calculation
position volume can be fixed - in this case it is specified by the
lots
or calculated based on the risk parameter (
lots
must be equal to zero in this case).
how to optimize
you should optimize the ea individually for each symbol and timeframe. since the ea only performs operations at the new bar formation time, the genetic optimization can be performed in the "1 minute ohlc" tick generation mode.
the figure shows approximate parameter limits for timeframes from m15 to h1:

You may also like: Quantora Break Even Manager MT5 - Automated Stop Loss Protection - excellent alternative for expert users on MetaTrader 5.

Source Code

/

.......

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.