Trading robot · MT5

MA Cross Risk EA

by alexistdev

This MetaTrader 5 expert advisor executes a trend-following strategy based on moving average crossovers.

GitHub stars2
Forks0
Last update2 days ago20 Sep 2026
LicenceNone stated

Overview

MA Cross Risk EA monitors fast and slow exponential moving averages on closed bars to trigger buy or sell orders, with an optional RSI filter to confirm momentum. The robot includes automated risk management features such as dynamic lot sizing based on account equity, fixed stop loss and take profit levels, and a daily loss limit. It also features a spread filter, slippage protection, and an optional trailing stop mechanism.

Details

Author

alexistdev on GitHub

Type

Trading robot

Platform

MetaTrader 5 (MQL5)

Strategy

Indicator crossover, Trend following

Markets

Gold, Forex

Timeframes

M15-H1

Risk profile

No grid, martingale or hedging logic was found in its code or README. That says nothing about how it performs: backtest it first.

Input parameters

Read from MACrossRiskEA.mq5. Defaults are the author's; change them in the EA's Inputs tab.

NameTypeDefaultDescription
InpTimeframeENUM_TIMEFRAMESPERIOD_CURRENTTimeframe analisa
InpFastPeriodint20Periode MA cepat
InpSlowPeriodint50Periode MA lambat
InpMaMethodENUM_MA_METHODMODE_EMAMetode MA
InpMaPriceENUM_APPLIED_PRICEPRICE_CLOSEHarga yang dipakai MA
InpUseRsiFilterbooltruePakai filter RSI?
InpRsiPeriodint14Periode RSI
InpRsiBuyLeveldouble50.0Buy hanya jika RSI di atas ini
InpRsiSellLeveldouble50.0Sell hanya jika RSI di bawah ini
InpRiskPercentdouble1.0Risiko per posisi (% saldo)
InpStopLossPipsdouble1400.0Jarak Stop Loss (pips). XAUUSD: 1400 pips = $14,00 (1 pip = 0,01)
InpRewardRatiodouble2.0TP = SL x rasio ini
Show all 29 inputs
NameTypeDefaultDescription
InpMaxLotdouble0.0Batas lot manual (0 = pakai batas broker)
InpAllowMinLotboolfalseJika lot hasil hitung < lot minimum broker: true=pakai lot minimum (risiko jadi > target), false=skip entry
InpBaseCapitaldouble0.0Modal acuan hitung lot. 0 = pakai saldo akun sebenarnya.
InpMaxTotalLossMoneydouble0.0Stop TOTAL bila rugi kumulatif capai nilai ini ($). 0 = off.
InpMaxPositionsint1Maksimum posisi bersamaan (EA ini)
InpCloseOnReversebooltrueTutup posisi saat sinyal berbalik
InpMagiclong20260920Magic number (penanda milik EA ini)
InpSlippagePointsint20Toleransi slippage (points)
InpUseTrailingboolfalseAktifkan trailing stop? (default OFF: pengujian 2024-2025
InpTrailStartPipsdouble1400.0Mulai trailing setelah profit sekian pips (= 1R)
InpTrailDistancePipsdouble900.0Jarak SL di belakang harga saat trailing ($9,00)
InpTrailStepPipsdouble200.0Perbaikan minimum sebelum SL digeser ($2,00)
InpMaxSpreadPipsdouble30.0Spread maksimum saat entry (pips). XAUUSD: 30 pips = $0,30
InpUseTimeFilterboolfalseBatasi jam trading?
InpStartHourint7Jam mulai (waktu server)
InpEndHourint21Jam berhenti (waktu server)
InpMaxDailyLossPercentdouble5.0Stop entry baru jika loss harian capai % ini (0 = off)

How to install it

  1. 1Download the sourceUse "Download source (.zip)" above, or clone alexistdev/auto-trader-bot from GitHub, and unzip it.
  2. 2Open the data folderIn MetaTrader choose File, then Open Data Folder, and go to MQL5/Experts.
  3. 3Copy the filesCopy the .mq5 file into Experts.
  4. 4Compile in MetaEditorOpen the file in MetaEditor and press Compile. Fix any missing includes the compiler reports.
  5. 5Test before you tradeRun it in the Strategy Tester, then attach it to a demo chart and allow algorithmic trading.
Third-party code. ForexR did not write, test or endorse this EA, and the summary above was generated automatically from its README and code. ForexR lists only repositories with readable source code and never hosts files. Read the code, backtest it and use a demo account first; automated trading can lose money quickly.

Similar expert advisors

EA31337

by EA31337
1.3k stars

EA31337 is a comprehensive multi-strategy trading robot and framework for MetaTrader platforms. It features dozens of pre-built strategies utilizing technical indicators like ATR, Moving Averages, and SuperTrend. The system manages entries and exits through a unique filtering system that monitors account metrics, volat

MT5 Trading robot Multi-strategyNewsTrend following
Updated 5 months ago GPL-3.0 GitHub repository of EA31337

EA31337 Libre

by EA31337
252 stars

EA31337 Libre is an open-source, multi-strategy trading robot for MetaTrader 4 and MetaTrader 5. It functions as a simplified implementation of the EA31337 framework, providing a collection of over 35 built-in strategies based on technical indicators. The expert advisor performs independent market analysis across vario

MT5 Trading robot Multi-strategyTrend followingMean reversion
Updated 1 year ago GPL-3.0 GitHub repository of EA31337 Libre

EA Scalper XAUUSD

by francomascareloai
236 stars

EA Scalper XAUUSD is an automated trading research project for MetaTrader 5 focused on gold. It employs a multifaceted entry strategy using Smart Money Concepts like order blocks and liquidity sweeps, alongside moving average crossovers and Fibonacci zones. The EA includes a self-learning module designed to adapt to di

MT5 Trading robot SMC / ICT / price actionIndicator crossoverScalping High risk
Updated 3 months ago Custom licence GitHub repository of EA Scalper XAUUSD

Ladino Bot

by landim32
203 stars

Ladino Bot is an open-source expert advisor for MetaTrader 5 that uses HiLo Activator indicators and moving average crossovers to identify trade entries. It features a triple-timeframe architecture, allowing users to align entries with higher-period trends. Risk controls include daily gain and loss caps, brokerage fee

MT5 Trading robot Indicator crossoverTrend following Archived
Updated 1 year ago GPL-3.0 GitHub repository of Ladino Bot

Gold Trader EA

by mehdi-jahani
141 stars

Gold Trader EA is a multi-strategy expert advisor designed for trading XAUUSD on the MetaTrader 5 platform. It employs a fusion engine that combines up to 14 different technical analysis methods, including candlestick patterns, chart patterns, price action, and institutional levels. The system requires a user-defined n

MT5 Trading robot Multi-strategyTrend followingIndicator crossover
Updated 1 year ago None stated GitHub repository of Gold Trader EA
60 stars

This MetaTrader 5 expert advisor automates the 9.1 trading setup popularized by Larry Williams, utilizing an exponential moving average to detect trend shifts. It enters trades based on price action relative to the moving average slope. The system includes built-in trade management features like partial profit taking,

MT5 Trading robot Trend followingIndicator crossover
Updated 6 years ago None stated GitHub repository of Larry Williams 9.1 Strategy

More trading robots

Need a broker for MT5?

Compare regulated brokers that support MetaTrader, with spreads, minimum deposits and leverage side by side.

Compare brokers