MQL Trendline EA

3

Summary

This EA will trade semi-automatically based on trend lines or horizontal lines that are manually plotted on the chart by the user. It can handle any number of lines per chart and each line can have its own adjustable settings. This EA manages every line separately based on specific user 'keywords' set for each line. Since each line has it's own independent settings, this is why there are very few shared inputs in this EA. Doing it this way allows for a single EA to manage many lines and combinations of settings at the same time. This makes the EA more user-friendly.


Inputs

  • See_Example_Lines - If true, the EA will draw 2 example lines on the chart to help you understand how to set the keywords for lines. You can drag the lines to where you want to see them trade, change their keywords, or even delete them and draw your own lines. They are merely example lines. Example lines will automatically be set in backtesting mode too, even if this input is false.
  • The EA has all standard inputs that should be self-explanatory, such as Magic Number, max. slippage, and so on. Main EA settings are controlled with 'keywords' and not standard EA inputs.


Keywords

As mentioned above in the summary, each line can have it's own adjustable settings. These are controlled by set 'keywords' that the EA looks for. These keywords are entered into the 'name' field for each line. You can find and edit the name field for a trend line or horizontal line by highlighting the line by double clicking on it, then right clicking on the line, and then selecting either 'Horizontal Line properties' or 'Trendline properties'. You should remove the default name assigned by MetaTrader and replace it with your keywords and any values. Some keywords are mandatory and some are optional. It depends on the situation. Below is a list of the available keywords.

  • TL

    Format: TL=1, TL=2, TL=3, etc...

    Necessity: Mandatory

    Description: This keyword is what is used to assign a unique trend line number to each trend line. The EA will use this number to categorize and manage the lines separately. For example, if you have 10 lines on the chart and each have their own settings, then the EA will not get confused since each will have its own TL identifier. This TL is also used for the order comments. So, this will help in your own analysis as well.

  • Trade

    Format: Trade (by itself)

    Necessity: Mandatory (if trading)

    Description: This is the keyword to use if you want the EA to trade the trend line.

  • Alert

    Format: Alert (by itself)

    Necessity: Mandatory (if alerting)

    Description: This is the keyword to use if you want the EA to alert for the trend line. There are 4 types of alerts possible which are in the EA's inputs.

  • Timer

    Format: Timer=08:00-15:45 (hours:minutes-hours:minutes)

    Necessity: Optional

    Description: This represents the allowable time period that new trades can be opened and for alerts to occur. Existing trades will not be closed out if the current time goes outside the timer limits. They would still close out normally. Only new trades will not be made outside the allowed times. And new alerts will not occur outside the allowed times. This input must be in a valid format in order to be used properly. Do not add any strange characters or spaces to the input string. For example, 08.00, 0800, and 08 00 are not the same as 08:00. The timer is based on the broker's operating time as seen in the MetaTrader platform. The timer is not based on GMT time or your PC's time. Both hours and minutes can be used in the timer.

  • Lots

    Format: Lots=0.10

    Necessity: Mandatory (if trading)

    Description: This is the keyword to use to set lot size of the trade. It is not used if trading is disabled.

  • SL

    Format: SL=10

    Necessity: Optional

    Description: This is the keyword to use to set the stop loss of the trade. This input is based in Points and not Pips. This input is only used if the line will be traded. If trading and this keyword is not used, SL will simply be 0.

  • TP

    Format: TP=20

    Necessity: Optional

    Description: This is the keyword to use to set the take profit of the trade. This input is based in Points and not Pips. This input is only used if the line will be traded. If trading and this keyword is not used, TP will simply be 0.


Keyword Examples

  • Example 1

    Let's say price is below a trend line and you expect price to go up, bounce off, and reverse down. You want to set a TP of 200 Points and a SL of 400 Points.

    You could use this keyword string: "TL=1,Trade,Sell,Lots=0.25,TP=200,SL=400"

  • Example 2

    Let's say you see a market range and expect there to be a breakout once one of the horizontal lines is reached. You do not want a TP or SL.

    You could use these two keyword strings: "TL=1,Trade,Buy,Lots=1.50" & "TL=2,Trade,Sell,Lots=1.50"

  • Example 3

    Let's say price is currently below a certain important level and you simply want to receive an alert once a certain price is reached, so you can place a buy order manually.

    You could use this keyword string: "TL=1,Alert,Buy"

  • Example 4

    Let's say you want to trade a certain line but only after price has breached the line by 100 Points.

    You could draw a parallel line above/below the important line you want to trade by 100 Points and use this as the actual trading line. Then you could use this parallel line and set this string: "TL=1,Trade,Buy,Lots=0.01"


Notes

  • The keywords are NOT case sensitive. So, the keywords 'Trade', trade, and TRADE are recognized as the same.
  • All alerts are standard MetaTrader alerts. Some of them will require you to input your details in the MetaTrader terminal in order for them to work.
  • Screenshots are optional and meant to help with your records and analysis since they are taken before the lines are deleted. Screenshots are taken only when trading is done, but not when alerting only. They are saved in your platform's 'Files' folder. The file names are named by the order's ticket number.
  • Keep in mind that once a trade or alert occurs, the EA will delete the line since it did its job already.
  • This EA can be tested in the back tester in visual mode the same way as in live trading. In this case, the EA will draw 2 example lines. Just move them to where you want or delete them and just draw your lines on the chart as you normally would.
  • The lines can be adjusted or moved on the chart even during EA operation. The EA reacts in real-time. You do NOT need to remove, pause, or reset the EA in order to adjust or move the lines.
  • Keywords must be separated by a comma (",") but the order of keywords does not matter.
  • The EA will check for available margin before placing a trade. If there is not enough available margin, the EA will skip the trade and the line will remain on the chart. It's possible there will be enough margin later and the EA can make the trade.
  • The EA checks for lot size rules such as min/max lots and lot step. The EA will round up/down if needed instead of skipping the trade.
  • IMPORTANT: Check out our site using the link in my profile to find other FREE indicators and EAs!


评分 3
ThinkMMQL
74
ThinkMMQL 2025.03.06 11:32 
 

This is a Masterpiece of coding.

推荐产品
The advantages of EA TWO CANDLE SMART are: It is equipped with various filters, including: maxspread, maxlot, takeprofit (4 step), stop loss (3 step), profit target per day, and many more. Open order BUY = If iClose[2] > iOpen[2] && iClose[1] > iOpen[1]. Open order SELL = If iClose[2] < iOpen[2] && iClose[1] < iOpen[1]. Target_profit_perday=50; ==> can work on forward test. lockprofit=2;//Minimal Profit in money Step_LockProfit_in_Money=25; Stoploss_in_Money=1000; Stoploss_in %=50;==> Stoploss
Heikin-Ashi-Sniper is a perfect addition to your portfolio. It is meant to be traded on EURUSD on H1 Timeframe. It uses Heikin-Ashi High and Low/High of Monthly timeframe to determine optimal entry signals while having a reasonably low drawdown More EA´s will be published shortly to complete the Portfolio. The EA Trades not very frequently it waits for the right chance and places the order. The rest of the time, your capital is free to be traded on other strategies Please see backtest results i
FREE
Inside Candle EA
Hong Ling Mu
1 (1)
Based on my original trading strategy, it appears that this EA is programmed to use technical analysis to identify an inside candle pattern in the current candle and wait for a breakout in either direction. If the price breaks out higher, the EA will place a buy order, and if it breaks out lower, the EA will place a sell order. The take profit and stop loss levels are set at 50 pips each. Additionally, using a martingale strategy, which involves increasing the lot size after a losing trade, ca
FREE
FCK Hedging AI
Patel Hitendrakumar Mahendrabhai
No Grid, No Martingale, No Scalping, No News Headaches. Recommendations for Gold (XAUUSD), BTC, US30, GBPUSD, EURUSD and other volatility pairs. Message me for set file and demo file ,  FCK Hedging AI is the advanced Hedging system.   It was designed to exploit existing market inefficiencies. FCK Hedging AI  is an expert adviser that you can use to design and implement automated hedging strategies. The primary objective of a forex hedging strategy is to reduce or eliminate the impact of adverse
/ ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** / Big Sales for Easter! Price is reduced > 50 % already! Grasp the chance and Enjoy it!  /   ********** **********   ********** **********   ********** **********   ********** **********   ********** **********   / This is a powerful EA that support single order strategy, martingale strategy, multiple timeframes strategy, etc with lots of useful indicators and self defined methods. I
YumokinBitcoinBreakOut
Ryutaro Yumoto
1.5 (2)
Features This EA is good at v olatility  market. This EA specializes in   BTC USD, so please apply this EA to that chart. Please apply this EA to the 15 minute chart. This EA uses volatility technical. This EA is easy to manage because it has a maximum of 1 position. The maximum profit is set at 0 pips(Unlimited). The maximum loss cut is set at 10000pips(100 Doller per 1lot、10Doller per 0.1lot). Performance depends on the spread, so please use it with a vendor with a narrow spread. Parameters
FREE
Hello all The expert works by hanging pending deals moving with the price when activating a transaction It closes on the stop loss or on a profit from the pursuit of profit Work on low spread currency pairs Like dollar yen currency The work is done with the same settings as the expert, or it can be modified as the user likes Work on a timing of 15M or more as the user likes parameters: Transaction_Movement : Movement =true  . no Movement=false . Lot1: Manual Lot Size Auto_Lot: Set true to auto
Cherokee
Andrey Kolmogorov
5 (1)
Cherokee  - is a professional adviser based on a trend tracking system with an adaptive algorithm. New sets are in the "Comments" section comments #2-3. Signal: 6 currency pairs Main Advantages 6 currency pairs; The EA does not use Martingale; The minimum starting deposit is $300; No need to close the robot during news releases; It works with 4 and 5-digit quotes; A multi-level model of a quantum set. Working parameters Currency pairs : EUR/USD, GBP/USD, EUR/CHF, USD/CHF, USD/CAD, USD/JPY ,  
Golden Scalper PRO
Felipe Jose Costa Pereira
3.83 (12)
Golden Scalper PRO:让我们的技术为您服务! 说明书与参数文件:购买后请联系我获取完整的说明书和设置文件。 价格:价格会随着许可证的销售数量增加而上涨。 剩余名额:3 黄金交易是金融市场上波动性最大、风险最高的品种之一,它需要极高的精准度、深入的分析能力以及强大的风险管理能力。 Golden Scalper PRO 正是为此而生,结合了先进的技术与高效的交易策略,旨在帮助交易者在黄金市场中获得最大收益。无论是新手还是专业交易员,它都能为您提供强大的支持,让您在这个充满挑战的市场中安全高效地交易。 Golden Scalper 拥有智能自适应系统、多周期分析、自动调整仓位以及严密的风险控制功能,能够在瞬息万变的市场中迅速做出反应,同时保障您的资金安全。 交易品种 XAUUSD(黄金) 交易周期 M5 最低资金 500 美元 支持平台 任何经纪商 账户类型 任何,建议低点差账户 杠杆 1:500 及以上 VPS服务器 建议使用,但非必须 交易品种 SPX500(纳斯达克100) 交易周期 M5 最低资金 1000 美元 支持平台 任何经纪商 账户类型 任何,建议低点
Classic RSI 01 Threshold Entry Market Order MT4 Simple strategy. Serious results. Built for traders who want a professional-grade EA using one of the most time-tested indicators: RSI . This Expert Advisor automatically places market orders when price shows potential exhaustion based on RSI levels — with dynamic SL/TP using ATR, plus optional break-even and trailing stop logic. Strategy Overview This EA enters trades based on RSI threshold signals : Buy Entry : RSI crosses below the define
Mr Beast Trend Reverse
Luis Mariano Vazquez Marcos
MR BEAST TREND REVERSE RECOMENDED H1 EUR USD La estrategia "Trend Reverse" en el mercado de divisas (Forex) es un enfoque utilizado para identificar puntos de reversión de tendencias y capturar cambios de dirección en los precios de los pares de divisas. Esta estrategia se basa en la premisa de que las tendencias del mercado no duran para siempre y que se producirán puntos de inflexión. Este robot de trading de Forex ha sido desarrollado por MRBEAST como una herramienta para facilitar el trading
QuantumGuard Pro - 智能量子风控交易系统 核心功能 五组独立资金管理,智能分散风险 三重风控保护:盈利目标+回撤保护+全局风控 专业交易面板,一站式交易执行 24小时实时风险监控和保护 自动显示每组均价线,可视化监控 单独一键平仓单组订单,精准控制 订单组高亮显示,状态一目了然 智能部分平仓+自动平保,无风险追逐利润 主要特色 智能风控系统: 5个交易组独立设置风控参数 动态点峰值追踪,自动平保设置 日亏损限额、周亏损限额、全局回撤保护 每组自动显示均价水平线,实时监控持仓成本 支持单独平仓任意组别订单,灵活管理仓位 订单组高亮显示,活跃组别清晰可见 盈利目标触发部分平仓,剩余仓位自动设置平保 专业交易面板: 买入卖出和4种挂单类型 批量平仓功能(按比例、方向、盈亏平仓) 实时数据监控和图表显示 每组独立平仓按钮,快速执行单组平仓 视觉化组别状态显示,操作更直观 可设置部分平仓比例,灵活锁定利润 盈利优化策略 达到盈利目标自动执行部分平仓 自定义平仓比例(25%/50%/75%等) 剩余仓位自动设置平保止损,零风险持仓 锁定部分利润的同时保留盈利潜力 智能追踪新高,最
Double Fractal Entry Bot trades automatically using fractal breakouts or rebounds. It detects precise entry points, places SL and TP based on market structure, and includes logic to manage risk and avoid false signals. Simple, smart, and powerful. This product is also available for MetaTrader 5 =>  https://www.mql5.com/en/market/product/143608 Double Fractal Entry Bot is an intelligent trading robot based on the proven logic of the Double Fractal Entry indicator. It analyzes price using upper a
This program works only on forex currencies, at New York Stock Exchange opening time (16:30) but opening time CAN BE SET as you want and automatically manage for each opening Trailing Stop Loss and BreakEven (if set). It is based on NY opening physiological movements of currencies quotes by putting pendants orders at defined (Gap) distance. It has an automatic recovery system in case the first trade gone in loss. It is possible to decide which multiply factor to use for the recover, thus it is a
Echo one tradeConfirm
Phongkrit Phattanawijak
4 (1)
Echo One: The provided robot is a result of several Test of trading many many strategies,various indicators of forecasting, To make the best decision for making profits in markets. By combining several strategies and algorithms in this robot, at changing each tick price, with the utmost precision and speed  Real account has been opened where it will be possible to analyze the entire history, as well as constantly, in real time, monitor all current results: https://www.mql5.com/en/signals/71523
FREE
Real monitoring:   XAUUSD H1 Set 2 For more information, please contact us via private message or in   the mql5 group. THERE ARE ONLY 7 OUT OF 10 COPIES LEFT AT A PRICE OF 280 USD! AFTER THAT, THE PRICE WILL BE INCREASED TO 390 USD. AI  Impulse  Scalper   Trade : This   is   an   automated   advisor   implementing   a   scalping   strategy   based   on   price   impulses,   using   an   artificial   neural   network   to   filter   signals   and   manage   risks. Core   idea:   to   capture  
This is a fully automatic Expert Advisor. It can trade any market, any timeframe and any currency pair. The EA uses simple indicators like SMA, RSI and CCI, and a smart martingale system, that does not open systematical new positions, but waits for a new signal for each new order, wich is limiting drawdown compared to other martingale systems. It uses a combination of seven strategies you can select in the parameters to fit your needs. The strategy tester in MetaTrader 4 can give you the setup y
Intelligence
Mikhail Rasporskiy
the expert Advisor is an artificial intelligence that uses built-in algorithms to calculate currency support levels and place orders. defined by five main levels support.in in cases of a breakdown of the strongest support, the adviser closes orders and opens an order in the direction of the trend, thereby saving the Deposit from being completely drained. new levels are defined, and the EA starts working. does not use martingale. it works on any timeframe, but preferably 30 minutes. the tes
Cuervo Candles Scalping II
Cristobal Hidalgo Soriano
Características principales: Estrategia de scalping : El Crow Candles Scalping EA se enfoca en aprovechar movimientos rápidos en el mercado . La estrategia se basa en la identificación de patrones de velas y análisis técnico para tomar decisiones de entrada y salida. 2.Gestión de riesgos avanzada: El EA incorpora una gestión de riesgos sólida para proteger tu cuenta de operaciones. Puedes ajustar los parámetros de stop-loss y take-profit para adaptar el nivel de riesgo a tus preferencias. 3.Con
Jobot Basic Martingale
Jakkarin Chinsuwan
This EA can run on every currencies pairs recommend EURUSD, USDJPY, EURJPY, GBPUSD Timeframe 30 Minute (M30) The important advantage of this EA is that you can start to trade with $1000 min imum initial Deposit. And the robot can support your manual transactions on EURUSD. ACCOUNT LEVERAGE: 1:100 ACCOUNT (Stop Out): 50% or less ACCOUNT TYPE: Real account ACCOUNT MODE: Hedging account Take Profit: Automatically Stop Loss: Automatically LOT size: Manual first order
FrankoScalp
Konstantin Kulikov
3.79 (116)
恭喜您访问外汇市场上最长寿智能交易系统页面! 5年多来,该系统声名远播,稳居各类榜单头部梯队。 任何外汇论坛上都能觅得FrankoScalp智能交易系统讨论主题。然而,只有通过mql5方可购买最新正版软件,与开发者取得联系并加入友好的FrankoScalp用户社区。 >>> Chat <<< 购买详情 购买智能交易系统,即可永久使用(全部更新免费)。不过,您有10次激活机会。这意味着,您能够在10台计算机(或虚拟专用服务器)上使用系统。 交易账户和终端数量不限。 历史简介 2012年,我投身外汇世界,2015年,我开始专注于自动交易系统,2016年,我的首个智能交易系统——FrankoScalp成功发布。 数年后,与MT4版本完全相同的 MT5版本 问世。 FrankoScalp智能交易系统的长寿秘诀 首先,让我们正视现实,您无法花费100或10 000美元购买一台印钞机。这一情况让人难以接受,但却必不可少。此举将助您告别失望,并在外汇或类似领域舒适徜徉。任何交易系统都既有盈利期,亦不乏亏损期。亏损期间,大多数开发者会停止提供支持。原因在于,从商业角度来看,发布全新智能交易系统
One Good Trade is a simple and effective Forex trading bot that implements the "time determines price" strategy. Its main feature is just one trade per day, executed at the optimal time and in the direction of the current trend. This straightforward approach allows you to take full advantage of favorable market conditions while minimizing risks. Additionally, the bot adjusts to market volatility, ensuring that stop-loss and take-profit levels are set appropriately for current market conditions.
I will support only my client. สำหรับลูกค้า Parameters General Trade Settings Money Management  Lot : Fixed (can change) Strategies  - H4 Strategies you can using both it is fixed with MA, Bollinger band, Candlestick Levels Close Functions  - H1, H4 and D1 Strategies you can using both MagicNumber  - individual magic number. The EA will only manage position of the chart symbol with this magic number. NextOpenTradeAfterMinutes  - 8 minutes is default, can change it MaxSpread  - upto currency pa
As Capital PRO
Andres Sigala
To maximize profit this EA can open 3 trades per signal using different strategies on each. Trade 1 is from signal to next signal. Also use Trailing stop based on Fibonacci. Trade 2 Set take profit at Fibonacci level. Trade 3 Set take profit at Fibonacci level. Also use Trailing stop based on Fibonacci. Settings Activate Buy 1    //--------To enable long trades for operation 1 Activate Sell 1    //--------To enable short trades for operation 1 Activate Buy 2    //--------To enable long trades
Fibonacci Trend Marker
Grigoriy Malychenko
斐波那契趋势标记 ( Fibonacci Trend Marker ) 是一种趋势指标,通过使用斐波那契回撤水平分析当前K线相对于前几根K线的最高-最低 (HL) 范围的行为。它通过K线颜色的变化,直观地跟踪趋势强度,提示可能的趋势减弱或反转。 特点: 专为趋势交易者设计,帮助基于斐波那契水平快速识别趋势变化。 在市场波动性充足且有3-5根K线形成明显趋势时,适用于任何时间框架。 K线大小自动适应图表比例,确保缩放时显示正确。 对趋势变化的高度敏感性源于对当前K线的实时分析,使其非常适合在M1和M5时间框架上进行剥头皮交易。 如何交易? 入场: 在前一根已关闭的K线颜色变化后开仓。例如,如果一根K线在红色后关闭为蓝色,表明上升趋势—开启买入 (Buy) 交易。 离场: 当前一根K线的颜色反转时平仓,或在达到目标时平仓,例如趋势方向上的1-2根K线,具体取决于市场波动性。 当前(未关闭)K线的颜色会随报价变化而改变,这对剥头皮交易者尤其有用,可在K线完成前提前平仓。 设置: 周期 (Period) — 设置用于计算的前几根K线的数量(例如3、5、10)。 斐波水平 (Fibo
Axel Bot MT4
Salman Metioui
Axel Bot is a sophisticated trading algorithm designed to empower traders with advanced hedging strategies. By seamlessly integrating with major financial markets, Axel Bot allows users to execute trades algorithmically, minimizing risk and maximizing potential returns. The bot leverages real-time market data, advanced analytics, and predictive modeling to identify opportunities for hedging, enabling traders to protect their portfolios against unfavorable market movements. With its intuitive int
EURJPY Ichimoku–TEMA Breakout (H1) is a fully automated MetaTrader 5 strategy designed to capture **confirmed trend breakouts** on EURJPY using an Ichimoku cloud direction filter with rule-based **pending STOP execution** around a TEMA reference level adjusted by volatility. The EA was backtested on **EURJPY on the H1 timeframe** from **January 2, 2015 to August 22, 2025** using a **MetaTrader 5 (hedged)** backtest engine. No parameter setup is required — the system is delivered with optimized
FREE
Dear traders and investors, Introducing   Vikopo Fractal MT4 , Developed by a team of experienced traders with trading experience of over 15 years. MT5 Version : https://www.mql5.com/en/market/product/114986 products List : https://www.mql5.com/en/users/vikopoadvise/seller Strategy Introduction : When utilizing this robot, we have harnessed the power of cutting-edge neural plugins to enhance its capabilities. By integrating these neural plugins, our trading robot is equipped with a formid
The EJ_15_201514104_S_SM_CF_SQ4 is an algorithmic trading strategy for MetaTrader, tested on EURJPY using the M15 timeframe from April 1, 2004, to April 24, 2024. There is no need to set up parameters, all settings are already optimized and fine-tuned. Recommended broker  RoboForex  because of EET timezone. You can find the strategy source code for StrategyQuant at the link:   https://quantmonitor.net/eurjpy-awesome-oscillator-master/ Key details are: MagicNumber: 201514104 Main Chart: Curre
FREE
Hello all The expert works on the moving average indicator Calculating the number of points from the current price and the index Entering into a profit deal 5 pips If the trend reverses with a new signal, it enters a trade with the trend with opening consolidation deals with the same size of the original lot With the closure of all together on a profit of  5 points Cooling deals with the same size of the basic lot 15 pips opens a new trade Work on the M15. Parameters: Lot1: Manual Lot Size Aut
该产品的买家也购买
Vortex Gold MT4
Stanislav Tomilov
5 (38)
Vortex - 您对未来的投资 Vortex Gold EA 专家顾问专门用于在 Metatrader 平台上交易黄金(XAU/USD)。该 EA 使用专有指标和作者的秘密算法构建,采用全面的交易策略,旨在捕捉黄金市场中的盈利走势。其策略的关键组成部分包括 CCI 和抛物线指标等经典指标,这些指标共同作用,准确地发出理想的进入和退出点信号。Vortex Gold EA 的核心是先进的神经网络和机器学习技术。这些算法持续分析历史和实时数据,使 EA 能够更准确地适应和应对不断变化的市场趋势。通过利用深度学习,Vortex Gold EA 可以识别模式,自动调整指标参数,并随着时间的推移不断提高性能。Vortex Gold EA 是专有指标、机器学习和适应性交易算法的强大组合。使用 Vortex Gold EA 为您的未来投资。 售价 675 美元(还剩 2/10),下一个价格 795 美元 Live Monitoring  https://www.mql5.com/en/signals/2366351 Check out the live results in Profile >>
The Gold Reaper MT4
Profalgo Limited
4.59 (32)
道具準備就緒! ( 下載SETFILE ) 推出促銷活動: 目前價格只剩幾本! 最終價格:990$ 免費取得 1 個 EA(適用於 2 個交易帳號)-> 購買後聯絡我 Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal 歡迎來到黃金收割者! 該 EA 以非常成功的 Goldtrade Pro 為基礎,設計為同時在多個時間框架上運行,並且可以選擇將交易頻率從非常保守到極端波動設定。 EA 使用多種確認演算法來找到最佳入場價格,並在內部運行多種策略來分散交易風險。 所有交易都有停損和止盈,但也使用追蹤停損和追蹤停盈來最小化風險並最大化每筆交易的潛力。 該系統建立在非常流行且經過驗證的策略之上:交易突破重要的支撐位和阻力位。   黃金非常適合這種策略,因為它是一種波動性很大的貨幣對。 系統根據您的帳戶規模和最大允許提款設定自動調整交易頻率和手數! 回測顯示出非常穩定的成長曲線,回撤非常可控且恢復很快。  該 EA 已針對黃金的最長可用期限進行了壓力測試,為不同經紀商使用了多
BB Return mt4
Leonid Arkhipov
5 (7)
BB Return — 一款用于黄金交易(XAUUSD)的智能交易系统(EA)。该交易思路最初来自我的 手动交易 经验。策略核心是价格回归 Bollinger Bands(布林通道) 区间,但并非机械式或每次触及即入场。针对黄金市场的特性,系统加入了额外过滤条件,用于剔除无效和低质量的市场环境,仅在回归逻辑真正成立时才开仓。   交易原则 — 系统不使用网格、马丁或加仓平均成本等风险策略。EA 可使用 固定手数 或 AutoRisk 自动风险 模式运行。BB Return 对点差、滑点及不同经纪商的报价方式不敏感,可在任何经纪商及多种账户类型下运行,包括 Standard、ECN、Pro、Raw、Razor 。系统不受交易时段限制,可 24 小时运行 。   $350 不是最终价格。 当前价格仅剩 5–7 个名额。 之后将上涨。 该EA限量提供,以保证策略的稳定性。 设置与交易频率 — 启动系统无需复杂设置,策略设计即基于 默认参数 运行,通常只需调整手数或 AutoRisk 模式。系统平均每年约执行 80–100 笔交易 。对于不使用网格、加仓或激进方法的系统来说,这是一个相对活
Quantum King MT4
Bogdan Ion Puscasu
5 (3)
量子之王EA——智能力量,专为每位交易者打造 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. 特价上市 实时信号:       点击这里 MT5版本:   点击此处 量子之王频道:       点击这里 ***购买 Quantum King MT4,即可免费获得 Quantum StarMan!*** 详情请私信咨询! 规则   你的交易精准而自律。 量子之王 EA     将结构化网格的优势和自适应马丁格尔策略的智能性融合到一个无缝系统中——专为 M5 上的 AUDCAD 而设计,适合希望实现稳定、可控增长的初学者和专业人士。 量子之王 EA     是一个为澳元/加元货币对在 M5 时间框架上开发的全自动交易系统。 它将网格策略的结构与马丁格尔策略的自适应恢复逻辑相结合,形成了一个能够智能管理所有市场阶段交易的系统。 专为易用性和一致性而设计   量子王
XG Gold Robot MT4
MQL TOOLS SL
4.32 (38)
The XG Gold Robot MT4 is specially designed for Gold. We decided to include this EA in our offering after   extensive testing . XG Gold Robot and works perfectly with the   XAUUSD, GOLD, XAUEUR   pairs. XG Gold Robot has been created for all traders who like to   Trade in Gold   and includes additional a function that displays   weekly Gold levels   with the minimum and maximum displayed in the panel as well as on the chart, which will help you in manual trading. It’s a strategy based on  Price
AW Recovery EA
AW Trading Software Limited
4.35 (84)
智能交易系统是一个旨在恢复无利可图头寸的系统。 作者的算法锁定了一个亏损仓位,将其拆分为多个独立的部分,并分别平仓。简单的设置、在回撤的情况下延迟启动、锁定、禁用其他 EA 交易、使用趋势过滤进行平均以及部分关闭亏损头寸都内置在一个工具中。 与仅在整个组中关闭订单的网格策略相比,使用部分关闭损失可以让您以较低的存款负载减少损失,从而确保更安全地处理损失。 如何恢复订单: 1 EA 关闭所选工具的其他窗口以关闭无利可图的 EA(可选)。 2 EA 重置所有已处理订单的止盈和止损水平,并删除具有相应标识符的挂单。 3 EA 关闭所有已处理的盈利订单,以便使用其利润来弥补部分非盈利订单并减少总头寸量(可选)。 4 EA 通过打开锁定订单来锁定亏损头寸。 5 然后,通过打开恢复订单,它开始通过部分关闭不盈利的订单来减少损失。 6 当部分关闭时,算法首先恢复定位最不成功的订单,或者最接近盈利的无利润订单。每个无利可图的订单都分为许多部分,顾问分别关闭每个部分。恢复订单以小量开仓,以免大幅增加入金负担 包含注释、设置和测试说明的完整输入设置列表  ->   这里  MT5 版本 ->   这里
Pattie Breakout ORB EA
Patrick Jeannot
4.5 (2)
Pattie Opening Range Breakout (ORB) is a range of price variation, which for each session, it generates a combination of support and resistance levels, positioning itself in favor of breaking out of the bands, when it is exceeded on the upside is a signal to buy or enter long and when it is exceeded on the downside it is a signal to sell or enter short. Pattie Break Out  EA  is a specialized trading tool designed to automate  time session-based breakouts . The EA operates by drawing a price rang
FlipDamonHFT
Allistair Kabelo Mandow
1 (3)
Ask in private for more details after purchase Discounted   price .  The price will increase by $500 with every 10 purchases. ***Buy FLIPDEMON HFT MT4 and you could get TINGA TINGA or  FLIPDEMON HFT MT5 for free !*** Ask in private for more details! IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. FlipDamonHFT – High-Frequency Trading Robot for XAUUSD (GOLD) FlipDamonHFT is a fully automated Expert Advisor for MetaT
EA Game Changer
Vasiliy Strukov
4.56 (9)
Game Change EA 是一款基于 Game Changer 指标的趋势跟踪交易系统。当出现红点时,它会自动卖出,并持续卖出直至出现黄色 X,这预示着趋势可能结束。买入交易的逻辑相同。当出现蓝点时,EA 开始买入,并在检测到黄色 X 后立即平仓。 这款 EA 适用于任何货币对和任何时间框架,但在 M15 时间框架下,例如 XAUUSD 等强趋势货币对上的表现尤为出色。 即時結果可在此處查看。 購買後立即聯絡我,即可獲得個人獎勵!您可以免費獲得我們的強力支撐和趨勢掃描器指標, 請私訊我 ! 設定和手冊在此處 請注意,我不在 Telegram 上出售我的 EA 或特殊套件,它們僅適用於 MQL5,我的套件檔案僅在我的部落格上提供。請小心詐騙者,不要從其他人那裡購買任何套件! 設定 Open new series – true/false - 真/假 - 新一系列订单的开始 Trade Buy - 允许EA购买。 Trade Sell - 允许EA出售。 Support manual orders – true/false –  允许EA控制手动订单 Use hedge - 允许EA
Gold Trade Pro
Profalgo Limited
4.61 (23)
推出促銷活動! 僅剩幾本,449 美元! 下一個價格: 599$ 最終售價:999$ 免費取得 1 個 EA(適用於 2 個交易帳號)-> 購買後聯絡我 Ultimate Combo Deal   ->   click here New live signal:   https://www.mql5.com/en/signals/2084890 Live Signal high risk :  https://www.mql5.com/en/signals/2242498 Live Signal Set Prop Firm Set JOIN PUBLIC GROUP:   Click here Parameter overview Gold Trade Pro 加入了黃金交易 EA 俱樂部,但有一個很大的區別:這是一種真正的交易策略。 “真實交易策略”是什麼意思? 您可能已經註意到,市場上幾乎所有黃金 EA 都是簡單的網格/鞅系統,當市場與初始倉位相反時,該系統會添加交易。  它們通常偽裝成“神經網絡/人工智能/機器學習”,但如果您對外彙和 EA 有一點經驗,您可以輕鬆地將
XIRO Robot MT4
MQL TOOLS SL
5 (4)
XIRO Robot is a   professional trading system   created to operate on two of the most popular and liquid instruments on the market:  GBPUSD,  XAUUSD and BTCUSD . We combined two proven and well tested systems, enhanced them with multiple new improvements, optimizations and additional protective mechanisms, and integrated everything into one advanced and unified solution. As a result of this development process, XIRO Robot was created. Robot was designed for traders who are looking for a reliable
Aura Black Edition
Stanislav Tomilov
4.62 (21)
Aura Black Edition 是一款完全自动化的 EA,仅用于交易黄金。专家在 2011-2020 年期间在 XAUUSD 上表现出稳定的结果。没有使用危险的资金管理方法,没有马丁格尔,没有网格或剥头皮。适用于任何经纪商条件。使用多层感知器神经网络 (MLP) 训练的 EA 是一类前馈人工神经网络 (ANN)。术语 MLP 的使用含糊不清,有时松散地指任何前馈 ANN,有时严格指由多层感知器组成的网络(具有阈值激活)。多层感知器有时被通俗地称为“原始”神经网络,尤其是当它们只有一个隐藏层时。MLP 由至少三层节点组成:输入层、隐藏层和输出层。除了输入节点之外,每个节点都是使用非线性激活函数的神经元。MLP 利用一种称为反向传播的监督学习技术进行训练。多层结构和非线性激活使 MLP 与线性感知器区别开来。它可以区分非线性可分的数据。 此价格还剩 2 份,之后价格将上涨至 3000 美元 如何设定及参数说明 (阅读这里) Live results: https://www.mql5.com/en/signals/2313678 More Signals:   Check my pr
Golden Mirage mt4
Michela Russo
5 (7)
Limited stock at the current price! Final price: $1999 --> PROMO: From $299 --> The price will go up every 5 purchases, next price : $399 Golden Mirage is a robust gold trading robot designed for traders who value reliability, simplicity, and professional-grade performance. Powered by a proven combination of RSI, Moving Average,  ADX, and High/Low Level  indicators, Golden Mirage delivers high-quality signals and fully automated trading on the M5 timeframe for XAUUSD (GOLD) . It features a robu
Gold Pulse EA mt4
Vasiliy Strukov
Gold Pulse EA 是一款多策略智能交易系统,它将三种交易系统整合到一个结构化且纪律严明的框架中。该系统专为黄金 (XAUUSD) 设计,能够适应不同的市场状况,并结合日内波段交易、基于时段的执行以及日内区间震荡策略。这打造了一种更加平衡且稳定的自动化交易方法,而无需依赖单一的交易设置。 Gold Pulse EA 的设计理念是简洁易用,无需任何预设文件,即可轻松部署在支持的经纪商平台上。它最适合自营交易公司使用,并采用简洁的执行模型,不使用任何网格交易、马丁格尔交易或超短线交易策略。 该 EA 还内置风险管理功能,提供自动和手动风险设置,让您可以根据账户规模和偏好控制风险敞口。这确保了交易方法的结构化,同时保持执行的一致性和纪律性。 如何设置EA 打开黄金(XAUUSD)图表 将EA附加到图表 根据您的偏好设置风险 在MT5中启用自动交易 重要提示 请勿将EA附加到多个图表。一个实例即可管理所有三个系统。 即時結果可在此處查看。 購買後立即聯絡我,即可獲得個人獎勵!您可以免費獲得我們的強力支撐和趨勢掃描器指標, 請私訊我 ! 設定和手冊在此處 請注意,我不在 Telegr
Yarukami Mnukakashi EA
Aleksandr Kazmirchuk
5 (4)
Yarukami Mnukakashi is an automated trading advisor designed for traders in the Forex market. The version for MT5 is located at the link. Key Features: Strategy type: 24-hour trading, but I recommend avoiding the American session and setting a daily take of $30-40 per 0.01 lot. Can work in one direction or both at once independently of each other. Trading instruments: GOLD Timeframes: M1 Algorithm: Uses technical analysis with moving average indicators, Bollinger and Momentum. Risk management: t
Quantum Emperor MT4
Bogdan Ion Puscasu
4.85 (172)
介绍     QuantumEmperor EA 是一款突破性的 MQL5 专家顾问,它正在改变您交易著名的 GBPUSD 货币对的方式!由拥有超过13年交易经验的经验丰富的交易者团队开发。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***购买 Quantum Emperor EA,即可免费获得  Quantum StarMan   !*** 私信询问更多详情 已验证信号:   点击此处 MT5版本:  点击这里 量子 EA 通道:       点击这里 每购买 10 件,价格将增加 50 美元。最终价格为 1999 美元 量子皇帝EA     采用独特的策略,将单笔交易连续拆分成五笔较小的交易。这意味着每次 EA 执行一笔交易时,它都会自动将其拆分成五个较小的仓位。 量子皇帝EA     量子帝王EA凭借其卓越的亏损交易处理方法,在众多专家顾问中脱颖而出。与
EA Gold Stuff
Vasiliy Strukov
4.7 (1088)
EA Gold Stuff是专为黄金交易设计的专家顾问。 该工作基于使用Gold Stuff指标打开订单,因此顾问根据"趋势跟随"策略工作,这意味着跟随趋势。 重要! 购买后立即与我联系,以获得说明和奖金! 您可以免费收到我们的强力支持和趋势扫描指标的副本,请私信。大部头书! 实时结果可以在这里查看 参数 打开新系列-打开/关闭新系列订单的开始。 起始地段-起始地段。 交易买入-允许Ea交易买入。 交易卖出-允许智能交易系统卖出。 使用对冲-当功能启用时,顾问将交易买入和卖出方向,当功能禁用时,顾问将只交易一个方向。 使用货币Manadgement-开/关使用自动手数计算。 自动旋转 每0.01手的可用保证金-每0.01手单位开仓的可用保证金金额。 Lot miltiplier-以下订单的手数乘法系数。 TP-止盈,以点为单位。 SL-止损,以点为单位从第一个订单。 跟踪开始-跟踪止损的激活。 Trail Step-追踪止损激活时与价格的距离。 DD减少算法是一种减少回撤的算法,其中具有利润的最后一个订单被关闭,系列的第一个订单处于亏损状态。 DD缩减算法的编号顺序-
Yen Striker mt4
Vasiliy Strukov
5 (1)
Yen Striker Yen striker EA 是一款专为美元/日元 (USDJPY) 和黄金打造的全自动双系统交易引擎。它结合了两种独立运行的策略,每种策略都拥有各自独立的风险设置和交易管理逻辑。 系统 1——突破动量 该系统识别关键市场高点和低点,在主要突破区域设置挂单止损,并使用智能追踪止损逻辑管理持仓。 系统 2——每日区间扩张 EA 每天在前一日高点和低点的上方和下方设置挂单。这使得系统能够捕捉价格突破高点/低点后的区间扩张。当价格突破该区间时,系统会自动执行交易。持仓采用追踪止损和追踪止盈进行管理。 支持的交易品种:美元/日元 (USDJPY) 和黄金 时间周期:5分钟 (M5) 推荐经纪商:GMT+2/+3 时区 账户类型:首选对冲账户 点差类型:推荐低点差的标准账户 最低入金:可接受任何金额,但建议最低入金 200 美元 即時結果可在此處查看。 購買後立即聯絡我,即可獲得個人獎勵!您可以免費獲得我們的強力支撐和趨勢掃描器指標, 請私訊我 ! 設定和手冊在此處 請注意,我不在 Telegram 上出售我的 EA 或特殊套件,它們僅適用於 MQL5,我的套件檔案僅在
Recovery Manager Pro MT4
Ianina Nadirova
5 (1)
Recovery Manager Pro 是一个用于从其他顾问或手动开立订单中恢复回撤的系统。 RM Pro具有自动动态调整的能力。交易者需要选择风险级别,顾问将以全自动模式工作。 可以在回撤恢复模式和待机模式下工作!如果另一位顾问产生回撤,RM Pro 将禁用它,锁定头寸并开始使用部分平仓恢复存款的过程。在交易中,顾问使用智能平均、锁定和部分平仓。该顾问致力于定制趋势指标,该顾问的所有买家都将收到该指标作为礼物。 Advisor 的主要特点是能够在待机模式下工作。一旦另一位顾问产生回撤,RM Pro 将接管订单管理并打开平均订单,然后部分关闭。 设置说明:           关联 MT5版本:           关联 顾问特点: 恢复无利可图头寸的回撤 当达到指定的回撤时可以操作 使用部分闭包 开立平均订单以恢复无利可图的头寸 处理其他顾问或手动下订单的损失 根据趋势进行工作。定制移动平均线指标作为送给每位买家的礼物! 既可以处理一个订单,也可以处理一系列无利可图的订单! 适用于当前符号 根据给定的风险程度自动调整 重要的! 在启动顾问之前,我们建议在策略测试器或模拟账户中
实时信号:   https://www.mql5.com/en/users/varkotechnologies/seller MT5 版本:   https://www.mql5.com/en/market/product/164203 大体时间:       M1 货币对:       XAUUSD Varko Technologies 不是一家企业,而是一种自由的理念。 我感兴趣的是长期合作和建立声誉。 我的目标是不断改进和优化产品,以适应不断变化的市场环境。 黄金安全EA       - 该算法同时使用多种策略,其主要理念是强调控制亏损交易和风险。 交易的收尾和控制采用了多级措施。 如何安装专家版? 您需要将文件从EA传输到XAUUSD M1货币对图表。无需SET文件,只需设置时间偏移值即可。 我建议使用时间交易,例如通过 IC Markets 或 RoboForex 等经纪商。 GMT 时区偏移 =   IC Markets 时间 - 您的经纪商时间。
HFT Prop Firm EA
Dilwyn Tng
4.96 (632)
HFT Prop Firm EA 也被称为 Green Man,因为其独特的标志,是专为克服允许高频交易 (HFT) 策略的专有交易公司 (prop firms) 的挑战或评估而设计的专家顾问 (EA)。 限时优惠:购买 HFT Prop Firm EA 免费赠送价值 $198 的工具 MT5 版本: https://www.mql5.com/en/market/product/117386 通过 HFT 挑战表现监控(起价 $200): 1) 经纪商:IC Markets 账号 66603384 服务器:ICmarketsSC-Demo06 密码:Greenman 2) 经纪商:IC Markets 账号 21718043 服务器:ICmarketsSC-Demo02 密码:Greenman 结果 1: https://c.mql5.com/31/1055/hft-prop-firm-ea-screen-4333.gif 结果 2: https://c.mql5.com/31/1055/hft-prop-firm-ea-screen-4648.gif 超过 600 条五星好
GOLD Scalper PRO
Lachezar Krastev
4.6 (25)
WINTER SALE — FINAL DAYS! Get GOLD Scalper PRO with a huge –60% discount AND receive News Scope EA PRO as a FREE BONUS ! Special Winter Sale Price: $177 (Regular Price: $447 — You Save $270!) FREE BONUS: News Scope EA PRO A powerful multi-symbol strategy packed with advanced features, supporting 5 trading pairs — real value: $397! After completing your purchase, simply contact me and I will send you your BONUS EA immediately. Don’t miss this once-a-year opportunity! Live Results:   https://w
RiskShield Dragon   — Automated Multi-Currency Advisor Combining intelligent algorithms, robust protection mechanisms, and flexible configuration, **RiskShield Dragon** delivers consistent profits with minimal risk. --- ## Key Advantages * **Multi-Currency & Multi-Threaded**: Supports over 20 currency pairs (EURUSD, GBPUSD, USDJPY, AUDUSD, NZDJPY, and more) simultaneously on any timeframe. * **Minimum Deposit from 10,000**: Optimized for trading with a starting balance of 10,000 account uni
Agera MT4
Anton Kondratev
AGERA MT4 是一款全自动、多方面的开放式 EA,用于识别黄金市场中的漏洞! Not        Grid       , Not        Martingale    ,    Not      "   AI"         , Not      "   Neural Network" ,    Not      "   Machine Learning"    ,     Not     "ChatGPT"   ,     Not       Unrealistically Perfect Backtests  AGERA    Community :       www.mql5.com/en/messages/01e0964ee3a9dc01 Vantage Real :    https://www.mql5.com/en/signals/2363787 Tickmill Real :     https://www.mql5.com/en/signals/2361808 Default       Settings for One Сhart     XAUU
AI Forex Robot MT4
MQL TOOLS SL
4.29 (17)
AI   Forex Robot - The Future of Automated Trading. AI Forex Robot is powered by a next-generation   Artificial Intelligence   system based on a hybrid LSTM Transformer neural network, specifically designed for analyzing XAUUSD, EURUSD   and BTCUSD price movements on the Forex market. The system analyzes complex market structures, adapts its strategy in   real time   and makes data-driven decisions with a high level of precision. AI Forex Robot is a modern, fully automated system powered by   ar
Vortex Turbo EA MT4
Stanislav Tomilov
5 (9)
Vortex Turbo——“驾驭风暴——掌控漩涡” Vortex Turbo代表了智能交易的下一个进化阶段——它融合了尖端人工智能架构、自适应市场逻辑和精准的风险控制,是一项独特的创新。Vortex Turbo基于成熟的算法原理,将多种策略整合到一个统一的高速生态系统中,并以全新的预测智能为驱动。Vortex Turbo专为黄金XAUUSD(GOLD)的超短线交易而设计,采用受控马丁格尔和均价网格,同时每个   仓位都受到内置止损的全面保护   ——确保了力量、精准度和安全性之间的完美平衡。 非常重要!购买专家服务后请给我发私信。我会把所有必要的建议和操作指南发给你。 399 美元的价格有效期至 2 月 15 日,之后价格将上涨至 499 美元。(最终价格为 999 美元) 购买   Vortex Turbo   智能交易系统后,您将有机会获得   我的其他任何一款智能交易系统的免费授权   ,该系统可关联到您选择的   三个交易账户    (赠送的智能交易系统将以 .ex 格式的文件直接发送)。  请私信询问具体条件   https://www.mql5.com/en/users
Trust EA MT4
Konstantin Kulikov
Trust EA   is a real trader's tool, working on a clear principle, with its advantages and disadvantages, so it will not suit everyone, but for some users it can become the best trading robot. * Limited special offer - 50% off the full price of the product. Only 5 copies at this price. * Discuss the complexities of Forex trading here:  chat "Age of Expert Advisors" . Logic I have been working with algorithmic trading systems since 2015, and in my experience, systems with a small StopLoss size ar
Apache MHL Moving Average
Paulo Roberto Da Costa
Sinal (GOLD/XAUSD) - mais de 14 meses ativo e mais de 6 mil negociações em conta Standard (alavancagem de 1:400):   https://www.mql5.com/pt/signals/2278431 Produto para MetaTrader4:  https://www.mql5.com/pt/market/product/159627 Produto para MetaTrader5:  https://www.mql5.com/pt/market/product/160313 O Apache MHL Moving Average Expert Advisor ou simplesmente "Apache MHL" é um robô que opera no ativo GOLD/XAUUSD utilizando estratégias baseadas em médias móveis e gestão de risco com Martingale.
XGen Scalper MT4
Burak Baltaci
3 (2)
XGen Scalper MT4 - 专业自动交易系统 XGen Scalper 是一款尖端专家顾问,通过将先进算法结构与成熟技术分析相结合,在所有市场中提供稳定可靠的交易结果。该强大交易系统可无缝运行于外汇货币对、黄金白银等贵金属、加密货币及大宗商品指数等多种市场。 先进算法技术 其专利波浪扫描算法通过实时处理市场数据,识别手动交易者可能忽略的高概率交易机会。该系统能持续适应变化的市场环境,在趋势、区间及波动市场中均能高效运作。 全局兼容性 不同于针对特定货币对设计的传统EA,XGen在所有交易品种中均表现卓越。 专业控制面板 通过精美的界面实时监控账户指标、详细交易统计数据及系统状态。集成波浪可视化功能清晰展示系统对市场状况的解读。 企业级风险管理 基于账户余额和风险承受能力的自适应仓位规模 根据市场波动动态调整的跟踪止损 点差过滤机制避免不利交易条件 多时间周期确认实现更高精度交易 精准交易 闪电般快速的订单处理,以最小滑点实现最优价格。兼容所有MT5经纪商和交易类型。智能订单管理自动处理从入场到离场的全流程。 完全可定制 根据您的策略调整头寸规
Aura Neuron MT4
Stanislav Tomilov
4.44 (16)
Aura Neuron 是一款独特的 EA 交易系统,延续了 Aura 系列交易系统。通过利用先进的神经网络和尖端的经典交易策略,Aura Neuron 提供了一种具有出色潜在性能的创新方法。这款 EA 交易系统完全自动化,旨在交易 XAUUSD (GOLD) 等货币对。从 1999 年到 2023 年,它在这些货币对中表现出了一致的稳定性。该系统避免了危险的资金管理技术,例如马丁格尔、网格或剥头皮,使其适用于任何经纪商条件。Aura Neuron 由多层感知器 (MLP) 神经网络驱动,利用它来预测市场趋势和走势。MLP 是一种前馈人工神经网络 (ANN),通常被称为“原始”神经网络,尤其是当它们由单个隐藏层组成时。MLP 包括三个基本层:输入层、隐藏层和输出层。除输入节点外,每个神经元都使用非线性激活函数。该网络使用称为反向传播的监督学习技术进行训练。 MLP 的多层结构和非线性激活使其有别于线性感知器,使其能够识别数据中非线性可分的模式。通过其复杂的 NN 智能,Aura Neuron 能够识别模式并适应不断变化的市场条件,例如汇率或交易者行为的变化。其处理复杂数据的能力使其能够
作者的更多信息
MQL Universal EA
Martin Eshleman
4.33 (12)
Summary of the Expert Advisor This EA will trade using standard MT4 indicators such as Moving Averages, MACD, RSI, Bollinger Bands, and so on. The EA was made so that these indicators can be mixed or matched so a number of possibilities can be traded with. Each indicator can be enabled or disabled and many settings are adjustable for each indicator. There are also other features included like multiple time frame capability and money management. As a result, many different trading strategies can
FREE
Fibonacci SR Indicator
Martin Eshleman
5 (1)
菲波纳奇支撑阻力指标 本指标创建支撑和阻力线。此指标基于菲波纳奇回撤和扩展级别。它会考虑菲波纳奇级别的多种组合,并在这些基础上绘制支撑/阻力线。此指标使用的顶部和底部由之字折线指标计算而来。如有必要,之字折线也可以在图表上绘制。 本指标考虑许多过去的反转点和菲波纳奇比率级别的组合,而当它看到多条线在相同的价格汇合,那么这将成为指标绘制的支撑/阻力线。未来的市场反转往往会正好出现在这些线附近。这是一个自动指标。所以,旧线将被删除,新线将随着市场的进步而绘制。 设置 Bars_Back - 向后一定数量的柱线用于所有计算。数量较少则较少反转点将被使用,因此,绘制的支撑和阻力线较少。向后更多柱线则有更多反转点将被使用,因此,绘制的支撑和阻力线较多。  Buffer_Space - 这表示每个已计算的菲波纳奇级别所需的汇合之间的最大点数。该数值越高,则确切的汇合必须越少。数字越低,则精确汇合必须更多,因此有较高的可靠性。例如, 让我们设为 10 点, 且指标运行在非分形的 4-位报价经纪商 (同样是 10 点)。此指标看到 3 个 菲波纳奇 回撤级别,分别在 1.4995, 1.5000,
FREE
Auto ZZ SR Indicator This indicator automatically draws trend lines using ZigZag top and bottom points. The more ZigZag tops/bottoms that are used, the greater the number of possible combinations. Therefore, the more possible trend lines can be drawn. And vice versa too. The fewer ZigZag tops/bottoms that are used, the lower the number of possible combinations. And therefore, the fewer the possible trend lines can be drawn. The indicator constantly updates the trend lines on the chart as the mar
FREE
Summary This indicator is based on RSI and Momentum indicators. It also considers moving averages of these two indicators. The three indicators have adjustable settings. The arrows do not repaint since the indicator only uses confirmed values and waits for the candle to close before painting an arrow. The indicator is also able to alert when arrows appear. There are 3 types of alerts - Popup, Email and Mobile Push Notifications. The arrows can be used in the EA and the inputs can also be optimiz
FREE
MA RSI Arrows
Martin Eshleman
4 (3)
Summary This indicator is based on the MA applied to the RSI indicator. It draws arrows at the confirmed crosses of the MA over the RSI line. When the MA crosses upwards, then a buy arrow is displayed and vice versa. The arrows do not repaint since the indicator only uses confirmed values and waits for the candle to close before painting an arrow. The indicator is also able to alert when arrows appear. There are 3 types of alerts - Popup, Email and Mobile Push Notifications. Inputs All inputs a
FREE
MQL Random EA
Martin Eshleman
3.33 (3)
Summary: This EA places a single trade at a time in a RANDOM direction (buy or sell) and uses a simple TP & SL. A lot multiplier is also optional. Once a trade hits TP/SL, it will place another trade in a random direction. And so on. Since it only ever has 1 trade open at a time, it can be used on any broker. Which means it can be used on US brokers with the FIFO rule. Inputs are few and everything is based in Points too. So it can be used on any chart reliably and easily. You will be amazed how
FREE
Custom Pattern Detector Indicator This indicator lets you define your own custom pattern instead of the typical candlestick patterns. Everybody already knows about common candlestick patterns like the Doji pattern. This indicator is different though. The pattern you will define is a custom pattern based on CANDLE FORMATIONS . Once the indicator knows the pattern you want it to look for, then it will go through history on the chart and find matching patterns, make them visible to you, and calcula
FREE
MA Momentum Arrows
Martin Eshleman
4.67 (3)
Summary This indicator is based on the MA applied to the Momentum indicator. It draws arrows at the confirmed crosses of the MA over the Momentum line. When the MA crosses upwards, then a buy arrow is displayed and vice versa. The arrows do not repaint since the indicator only uses confirmed values and waits for the candle to close before painting an arrow. The indicator is also able to alert when arrows appear. There are 3 types of alerts - Popup, Email and Mobile Push Notifications. Inputs Al
FREE
Cycles Predictor
Martin Eshleman
Cycles Predictor Indicator This indicator uses past market cycles to predict future price movements. The indicator scans through past data and considers  combinations  of cycles. When cycles  coincide  at the same future date/time then it is considered a valid future prediction. The predictions are drawn as vertical lines on the right side of the chart in the future. A prediction will often result in type of candle (ex. bull or bear) and/or a reversal point (ex. bottom or top) forming at this ex
Gann Time Clusters
Martin Eshleman
2.5 (2)
Gann Time Clusters Indicator This indicator is based on W. D. Gann's Square of 9 method for the time axis. It uses past market reversal points and applies the mathematical formula for Gann's Square of 9 and then makes projections into the future. A date/time where future projections line up is called a 'time cluster'. These time clusters are drawn as vertical lines on the right side of the chart where the market has not advanced to yet. A time cluster will result in a market reversal point (ex.
筛选:
Hector Manuel
446
Hector Manuel 2025.10.22 14:02 
 

用户没有留下任何评级信息

Martin Eshleman
11586
来自开发人员的回复 Martin Eshleman 2025.11.03 21:01
Thank you!
ThinkMMQL
74
ThinkMMQL 2025.03.06 11:32 
 

This is a Masterpiece of coding.

Martin Eshleman
11586
来自开发人员的回复 Martin Eshleman 2025.11.03 21:01
Thank you so much for the great feedback!
jaffd123
143
jaffd123 2017.03.10 20:38 
 

I purchased this product and downloaded to my laptop. I need this on my desktop. I reached to the developer who is not willing to support this simple process unlike other developers. MQL5 does support multiple activation but the developer is not willing to spend the time. I will change my review only when I recieve the level of support required for my request. Below are MQL5 Product Rules that developers need to obide by:

Rules of Using the Market Service

The number of free Product Activations available to the Buyer on another PC after purchasing the Product is defined by the Seller. The minimum number of such Activations is 4.

The Buyer purchases the right to activate a Product as many times as specified by the Seller at the moment of purchasing or renting this Product. For example, if a Product allows 20 activations at the moment of its purchase, the Buyers can install it on 20 different hardware + OS configurations even if the Seller will decrease this number afterwards.

https://www.mql5.com/en/market/rules

Martin Eshleman
11586
来自开发人员的回复 Martin Eshleman 2024.05.28 16:36
MQL5 handles licensing and distribution. I cannot help you since there is no possibility for this on my side!
回复评论