Short Trend Reversal

This EA is a part of my other EA Nash Equilibrium. If you activate this EA on a chart created from Nash Equilibrium, orders can be managed by Nash Equilibrium EA with Manage mode (External or Main&External). EAs are compatible.

With this EA you can build a good profitable system. The EA was created to test signals for the Nash Equilibrium EA, but when I saw the backtest results, I thought I would add a few lines and put it on the market. It works on any classic currency pair /you just need to find the right settings/. It works on many other instruments, but you need to choose the right TakeProfit, StopLoss, min_dist, pending_dist. If you want to test other instruments, it is best to do large tests from methodology 2 with your own TP.

For EUR,USD,GBP,CHF,CAD,JPY,AUD,NZD between them crosses, pips calculated as for a 4-digit broker (inside multiplied by 10). The rest of the instruments as your broker has.
EA has the following Built-in settings: SAFE, MODERATE, AGGRESIVE, start by checking what it looks like with your broker /it was backtested with Vantage broker on STP account/.
I recommend turning EA on several charts of one currency, for example several crosses EUR or USD or ... or mixed, and several TFs, this way you will obtain indirect hedging.

Important: This EA should have StopLoss set to 0 while running. StopLoss is only used to create a statistical file in the tester folder during historical testing. There you will see useful information about the amounts of losing and profitable trades. Pips in this EA are calculated as for 4-digit-broker /FOR CURRENCIES ONLY/. The rest of the instruments as your broker has.

Rules and my backtest methodology:

  1. Disable the genetic algorithm if you want to use my statistics file
  2. Open prices only testing model. There is no need to test every tick because EA takes a position only on new candles
  3. set mine TP first: M15: TP=15, M30: TP=20, H1: TP=30, H4: TP=40 /change if you want, but try mine/
  4. EA not using StopLoss. Used only in method 1 for check signals quality

_________________________________________________________________________________________________________

method 1 /detailed/

step one:

  • EA default values: and disable the final_optimisation parameter (enabled, averages trades, and we don't want that now), Built-in settings set to 'user'
  • BarsRange1: range 5-50 with step 5 (pattern higher lower trades)
  • BarsRange2: range 3-13 with step 2 (pattern higher lower trades)
  • TakeProfit as above (unless you prefer otherwise, I recommend mine to start with)
  • StopLoss you accept (100,150,200 it depends on the symbol and is only used to count bad signals)

Run optimisation with BarsRange1 and BarsRange2 selected. The results that the tester shows or does not show are not important. Important information is saved in the MT4/tester/files/ShortTrendReversal/*.txt file. The file is only created when StopLoss is greater than 0. Now open the created file. I recommend notepad++ for this because it reloads the file if it changes. Analyze the results.

Important: Once you have changed the optimisation parameters, you should clear the tester's cache, as the results will not appear in the html file. (when the tester finds results in the cache, it skips the calculations)

step two:

  • narrow the ranges of BarsRange1 and 2
  • min_dist:       range 20-90 with step 10 /minimum distance from the previous order, 0 completely disables the limit/
  • pending_dist: range 20-90 with step 10 /pending order distance, 0 disables pending orders/
  • StopLoss set to 0
  • enable final_optimisation

Run optimisation. Now choose what suits you. Additionally, once you have your optimisation results, you can set StopLoss as above call up the individual results. At this point /with StopLoss/ the result itself won't matter, but you can see and compare the new statistics in the file (MT4/tester/files/ShortTrendReversal/*.txt). Statistics will be different than before and will certainly be very helpful in making decisions. You can save selected results to a file with external parameters (MQL4/files/ShortTrendReversal/ReadFromFile.txt). Details can be found in the file.

My rules when backtesting Built-in settings: SAFE,MODERATE,AGGRESIVE

SAFE: BarsRange2 range 7-11
MODERATE: BarsRange2 range 5,7,9
AGGRESIVE: BarsRange2 range 3,5,7

_________________________________________________________________________________________________________

method 2 /fast and simple/ source code and optimisation sets: StrategyTester in pips

Everything as above in one go.

  • from EA default settings: change Built-in settings to 'user'
  • BarsRange1:   range 5-50 with step 5 /pattern higher lower trades/
  • BarsRange2:   range 3-13 with step 2 /pattern higher lower trades/
  • min_dist:       range 20-90 with step 10 /minimum distance from the previous order, 0 completely disables the limit/
  • pending_dist: range 20-90 with step 10 /pending order distance, 0 disables pending orders/
  • TakeProfit set my TP first: M15: TP=15, M30: TP=20, H1: TP=30, H4: TP=40
  • StopLoss set to 0
  • enable final_optimisation
  • enable StrategyTester in pips
  • set filter rules

Run optimisation. When finished, open the HTML file from the tester directory, sort, select the good results, deselect the automatically selected ones if you want, and save to a CSV file in the 'csv_done' directory. Now deselect the previous optimisation parameters, enable 'test selected results' and select ONLY the 'stage1 results array' optimisation, e.g. in the range 1-200. Empty ones will be skipped. Now choose what suits you. If you test a single parameter setting, it will be displayed in the tester logs.

Important: Once you have changed the optimisation parameters, you should clear the tester's cache, as the results will not appear in the html file. (when the tester finds results in the cache, it skips the calculations)
Below is a .bat script for quick cleaning cache and delete last created file inside tester folders.

rem @echo off
set mt4_path="set mt4_path=%~dp0"
del %mt4_path%\..\..\caches\*.* /P
del %mt4_path%\..\..\history\*.* /P
for /F %%a in ('dir /B /O:-D /A:-D /T:C %mt4_path%\*.html') do del /P "%mt4_path%\%%a"&goto deldone
:deldone
for /F %%a in ('dir /B /O:-D /A:-D /T:C %mt4_path%\csv_done\*.html') do del /P "%mt4_path%\csv_done\%%a"&goto deldone
:deldone
pause

_________________________________________________________________________________________________________

          Advanced backtesting:
StrategyTester in pips (optimisation only), generates an HTML file in the tester directory. source code: StrategyTester in pips
MathAbs(AccLoss) < x * InitBalance show if (optimisation only)
MathAbs(maxDD) < x * TotalProfit show if (optimisation only)
MathAbs(maxDD) < x * Profit before maxDD show if (optimisation only)
test selected results only test settings saved in the .csv file (creates new HTML file in tester directory)
stage1 results array in optimising, iterations of settings from a .csv file

Due to the fact that importing external DLL libraries is prohibited, I moved the window resize to the indicator. Source code below.

https://www.mql5.com/en/code/48973

推荐产品
Ilanis
Mikhail Sergeev
4.74 (27)
Ilanis is and Expert Advisor for stock trading, it can be used for trading on Forex and other markets, including commodities, metals and index markets. To determine the market entry, the EA uses the modern and ultra-light adaptive indicator FourAverage. Principle of position maintaining is similar to that of the popular Forex robot Ilan, using averaging. But unlike Ilan, Ilanis uses an accurate entry into the market. The robot pays a lot of attention to position control, if the price goes in the
Jet Punch
Didit Haryadi Saputra
Jet Punch is another best expert advisor for MT4,  can help you make money while you sleep by automatically entering and exiting trades. It trades by opening trades every day and closing them at the right time to ensure you always earn a profit. The software is very simple and can be used by both beginner and experienced traders.  Jet Punch was tested and has successfully passed the stress test with slippage and commission approximate to the real market condition. Recommendations: Currency pair:
Magic Grid
Aliaksandr Charkes
4.54 (28)
Magic Grid is an indicator-free advisor that uses a grid strategy. The strategy is based on automatic reopening of grid pending orders, after closing their market positions (by Take-Profit, Stop-Loss or manually). Pending orders are placed with a specified step from the initial prices, which can be entered manually or generated automatically ( one time at the beginning of the trade ). The robot can trade on any time frame, on any currency pair, on several currency pairs, and on any number of di
FREE
TrendLines And Volumes
Alexander Nikolaev
This Expert Advisor trades based on trend lines, as well as on the basis of volume analysis. Volumes are calculated using minute bars, in order to determine if they were ascending or descending. The trend lines are drawn based on High and Lows in the trade history. There are also additional indicators. Buy or sell signals depend on all those factors. This allows the EA to enter the market with more accuracy and to perform more deals. Input parameters Lots - lot size (if 0, a lot is calculated b
实盘信号: https://www.mql5.com/zh/signals/2341050 实盘信号: https://www.mql5.com/zh/signals/2346893 Smart Trend and Range EA 是一款基于市场结构分析的自动交易程序,设计用于在不同市场状态下执行交易操作。 EA 根据当前价格行为与市场结构特征,在趋势条件和区间条件下采用不同的交易逻辑。 程序不使用马丁、网格、补仓或加仓机制,每笔交易均为独立订单,并在下单时设置止损与止盈参数。 交易逻辑说明 当市场结构符合趋势条件时,EA 按趋势方向执行交易; 当价格行为进入区间状态时,EA 根据区间波动条件执行交易。 交易逻辑基于价格数据分析,不依赖外部信号或人工干预。 风险与订单管理 每笔交易为单独订单; 下单时设置止损与止盈; 支持固定手数或按资金比例计算交易手数。 回测环境说明 该程序在 MetaTrader 策略测试器中, 使用 XAUUSD(黄金)15 分钟周期, 基于历史 Tick 数据进行回测测试。 推荐测试设置 模型:Every tick 周期:M15 交易品种:XAUUSD 初
Grid and MACD
Volodymyr Hrybachov
This is a grid Expert Advisor. It has several trading strategies based on the MACD indicator. The virtual trailing stop, stop loss, take profit levels can be set pips, in the deposit currency or as a percentage of the balance. Depending on the settings, different orders may be opened for diversifying risks. Their closure can be either an oppositely directed or unidirectional basket of orders. The orders grid is adaptive, only market orders are used in it. If the price moves the distance of Order
BuckWise
Joel Protusada
BuckWise   is a fully automated scalping Expert Advisor that can be run successfully using EURUSD currency pair at H1 timeframe. Very Important This Expert Advisor can not run with any EAs in the same account. As part of the money management plan, it calculates and monitors the Margin Level % and assumes that all open trades are created by it. If you want an Expert Advisor that trades in a daily basis, this EA is not for you because using this requires a patience to wait for a few days or weeks
Project Infinity
Sergey Yarmish
The Infinity Expert Advisor is a scalper. When the resistance and support levels are broken, trades are opened in the direction of the price movement. Open positions are managed by several algorithms based on the current market situation (fixed stop loss and take profit, trailing stop, holding positions in case of trend indication, etc.). Requirements for the broker The EA is sensitive to spread, slippages and execution quality. It is strongly recommended not to use the EA for currencies with s
EA Seven MT4
Ruslan Pishun
The initial price is 75 USD, the future price is 150 USD The EA uses a reverse strategy. To detect trading signals, the following indicators are used:   Moving Average, Relative Vigor Index, Average True Range, Alligator and other custom indicators . Each pair has a stop loss, take profit, breakeven and trailing stop. The EA trades on many major currency pairs and timeframes. The EA uses timeframes: MetaTrader 4 MetaTrader 5     M1,   M5,   M15, M30, H1  M1,   M2,   M3,   M4,  M5, M10, M12 ,
MMM Zig Zag Strategy: The Expert Advisors uses its built-in Zig Zag indicator to determine the prices trends and calculates the signal to decide to open buy or sell positions. It sends an order, closes or moves the Trailing Stop loss position as the indicator works. You can define the time period of each day of the week the EA should not trade (the bad time to trade). Usually the period of day when the impact news are published. General Inputs: Closes orders with any profit of value (currency):
| Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT4 version, click  here  for  Blue CARA MT5  (settings and logics are same in both versions)     Real monitoring signal  -->  Cara Gold Intro Blue CARA EA   ('CARA') - short for  C omprehensive  A lgorithmic R esponsive A dvisor is a next-gen  multi-currency    multi-timeframe  EA base on the widely known (and perhapse most popular) Inn
PipFinite EA Breakout EDGE
Karlo Wilson Vendiola
5 (5)
The Official Automated Version of the Reliable Indicator PipFinite Breakout EDGE EA Breakout EDGE takes the signal of PipFinite Breakout EDGE indicator and manages the trade for you. Because of numerous financial instruments to consider, many traders want the signals to be fully automated. The EA will make sure all your trades are executed from entry to exit. Saving you time and effort while maximizing your profits. The Edge of Automation Effortless price action trading is now possible acros
Gold Coin M5
Andrey Kozak
2.5 (8)
金币M5是一款自动交易机器人,旨在使用M5周期交易黄金市场(XAUUSD)。 该机器人专为想要在短期时间间隔(倒卖)自动交易的交易者而设计。 特点: 剥头皮策略:机器人使用基于短期价格变动即时进场和离场的剥头皮策略。 针对 M5 上的 XAUUSD 进行了优化:XAUUSD 剥头皮交易专门针对在 M5 时间范围内交易 XAUUSD 货币对进行了调整,使其能够最大限度地提高黄金市场的机会。 最低余额:建议使用机器人进行交易的最低余额为 1000 美元。 这种水平的平衡提供了足够的余量来管理风险,并使机器人能够在短期内有效运行。 易于使用:XAUUSD Scalper 易于在交易账户上安装和配置,适合广大交易者(包括初学者和经验丰富的专业人士)使用。 交易建议: 在 XAUUSD 上交易 M5 时间表 最低初始余额 1000 美元起 在 XAUUSD 报价中,点后有 2 位数字。 ECN 账户类型。 您可以在PC和VPS上进行交易 该机器人在 FXopen 经纪商账户上进行了测试。 机器人设置: Search_trend_bar - 在此参数中,我们指示我们确定价格变动趋势的柱数。
Vizzion
Joel Protusada
Vizzion is a fully automated scalping Expert Advisor that can be run successfully using GBPJPY currency pair at H1 timeframe. Very Important This Expert Advisor can not run with any EAs in the same account. As part of the money management plan, it calculates and monitors the Margin Level % and assumes that all open trades are created by it. If you want an Expert Advisor that trades in a daily basis, this EA is not for you because using this requires a patience to wait for a few days or weeks on
Trend Momentum
Gonzalo Melendi Mancebo
Trend Momentum use indicators as EMAs, MACD and an algorithm to detect trends. After first conditions as been reached, it computes crossing angles of the EMAs to set the trigger. Money management is aloud to set percentage lots or fixed lot. After TP1 is reached, SL is moved to Entry point in order to reduce risk. Parameters for Buy Trades and Sell Trades are separated for optimization process. Default parameters EURUSD - 1H.
JBSar EA Robot
Jordanilo Sarili
PROMO: SPEND MORE TIME WITH YOUR FAMILY. ENJOY LIFE… DO NOTHING. We would like to share our coding skills to fellow traders and most especially to people from all walks of life to have the opportunity to trade or invest using auto-trading way to provide other source of income while letting the robot and your money works for you.  The trade strategy is based on Averaging and uses a little bit combination of martingale and grid strategy. Methodology   – Trading entails technical analysis with ma
Macd Pro I
Steve Zoeger
MACD Pro I EA https://youtu.be/2wCzTFIGNp4 =============== This Robot is fully automated and has been created for everyone. The Robot works also on cent accounts. The Ea is based on the MACD Indicator and 3 more and has been kept simple. ========================================= Maybe better to go for small profit, set it on higher time frames then you can use it for more pairs at the same time. =========================================== => works on all Time Frames but i would recommend the
Impuls Pro MT4
Sergey Batudayev
5 (2)
EA 的策略基于波段交易,在 iPump 指标计算的急剧脉冲之后入场。 如前所述,EA 能够在自动支持下进行手动交易。 - 对于下降趋势 ↓ 我们在价格修正上涨后进入交易,资产进入超买区域,我们沿着趋势卖出。 - 对于上升趋势 ↑,我们在价格回调后进入交易,资产跌入超卖区域,我们顺势买入。 交易所选资产时,顾问会考虑趋势并仅根据当前趋势开仓,无利可图的交易可以通过止损和平均来关闭,第二种选择当然更有利可图但风险也更大 好处 内置电平指示器,用于分析不同 TF 的电平 能够在图表上手动选择平均水平 开多个金字塔订单,利润倍增的能力(订单数量可自行控制) 根据 iPump 指标的反向信号,设置 TP 的更多标准 使用“手”模式手动打开交易的能力 所有趋势策略都基于简单且非常正确的逻辑,即: 在当前趋势中开启交易 价格调整后开仓 考虑交易水平 在这个顾问中观察到所有三个假设。 确定 2 个时间范围的趋势,在价格超买/超卖的最有利时刻进入交易,图表上可以看到修正水平 SL 和 TP。 解释策略  - 对于下降趋势 ↓ 我们在修正价格上涨后进入交易,资产跌入超买区域,我们沿着趋势卖出。 - 对
How the EA works (simple explanation) Trades on   M5   timeframe Uses   H1 timeframe   to analyze global market context Analyzes   2 or 3 timeframes simultaneously On each timeframe: Checks price position relative to one or two Moving Averages Evaluates MA angle and distance between price and MA Entry logic is based on   trend + volatility conditions , not on random signals The full algorithm is illustrated in the screenshots. Recommended usage Symbol:   EURUSD Timeframe:   M5 Trading
Gold Crasher
Hong Ling Mu
<Logic> EA will entry when the price breaks average candle stick price. EA will make Grid order with Hedge logic. When grid order is placed , EA check the trend and if trend is BUY, then place buy order. If trend is sell, then place sell order. This is to reduce a big draw down. <Input parameter> Slippage(pips) Max position Baselot size take profit stoploss Risk (MM) Grid order settings. Moving average period and Time frame N of bars for average line calculation <BEST PAIR and Time frame> XAUU
Diamond Black
Fanur Galamov
5 (2)
Diamond Black  is a professional expert advisor for automatic market trading. The EA implements my long-term observations of the market behavior in the evening. A thorough analysis of the behavior of the low-volatility market allowed me to implement a stable reliable system for profitable and long-term trading. EA algorithm uses the advantages of pending limit orders and strict control of trading risk. Expert advisor uses automatic lot calculation, and also allows you to use a fixed trading lo
新增了更改手数大小的功能,并使EA达到最低价格。如果您购买,将获得支持和未来的更新。请支持其发展。 该EA即装即用。 AussiePrecision   是一款适用于 MetaTrader 5 的时间敏感型智能交易系统(EA),专为 AUD/USD 货币对设计。 它可在预设的、可控的时间点执行交易,非常适合希望根据时间自动精确入场的交易者使用。 所有基于时间的操作均与用户指定的 UTC 时区偏差同步,以实现稳定而精准的调度。 该EA无需持续监控,完全自动运行。 如有任何设置问题或需要定制功能,欢迎随时与我联系。 由于这是一个免费的EA,如果您下载了它,请加我为好友,这样我可以提供必要的支持与帮助。 For any setup questions or customization requests, feel free to contact me directly. As this is a free EA, if you download it, please send me a friend request. This way I can offer support and moni
Boster
Langtha Prosanta Daudung
The  Boster  is a fully automated EA design for trading EURUSD pair. It is design to trade along the trend and also trade during reversal. It uses adaptive grid strategy. In adaptive grid strategy the distance between the trade is not fixed, the entry of next trade is base on most favourable market condition to close the trade in profit. So the risk associated with normal  grid/Martingale  strategy is considerably reduced by adopting adaptive grid distance strategy.  Back tested for 10 years (20
Financial Radar GFX
Yasir Mohammed Sachit Sachit
Gold Trend Rider – Automated Expert Advisor for XAUUSD Trading Disclaimer : Trading Gold (XAUUSD) involves significant risk. Past performance does not guarantee future results. Test on a demo account and apply proper risk management before live trading. Overview Gold Trend Rider is a fully automated Expert Advisor specifically designed for Gold trading. It leverages the Parabolic SAR indicator to detect trend direction and open trades accordingly. Its trailing stop mechanism manages positions d
TC Poseidon EA
Pablo Leonardo Spata
This is a trading robot to work on USDCHF - Timeframe H1 . It exploits a statistical advantage produced in the Swiss franc. All trades with SL and TP. Backtest now!   Special OFFER for this week Discount price - $ 49. Next price $ 149. BUY NOW!!!   Would you like to see how 100 dollars turn into more than 3 million dollars? Do you already have a robust strategy that works on USDCHF ? TC Poseidon EA is the god of the seas, water, storms, hurricanes, earthquakes, and horses. Use its power to
BBMA Grid Combination
Kahfi Pangariduwan
5 (1)
BBMAGC   BBMAGC  is an automatic trading system with a work strategy obtained from famous BBMA indicator combine with advance grid system . This EA use dangerous trading systems like martingale and grid so please understand the risk before using this EA Time Frame: H1 Symbol: best result on EUR/USD, GBPUSD, GBPCAD VPS recommended 4/5 digit broker Min Deposit 1000$ Low spread always better Since you using Grid system, always trade using money that you are willing to lose. When you use an expert a
Expert Smart Trend MT4
Ruslan Pishun
2.5 (2)
The trading system operates on seven pairs and one timeframe. The Expert Advisor uses trading systems for trend-based entries with the help of the Envelopes and CCI indicators. Each indicator uses up to five periods for calculating the trends. The EA uses economic news to calculate the prolonged price movements. The EA has the built-in smart adaptive profit taking filter. The robot has been optimized for each currency and timeframe simultaneously. Real monitoring:  https://www.mql5.com/en/signal
GridMasterFx
Sergey Kruglov
GridMasterFx is an innovative tool for automated forex trading, which is based on a combination of a grid strategy and a unique trend calculation algorithm using the Moving Average indicator. This strategy allows the Expert Advisor to open and close positions on time, use the analysis of the current trend and instantly respond to market changes. GridMasterFx Expert Advisor is an excellent choice for successful automation of your forex trading process. It easily adapts to various market conditi
Survive
Fabrizio Pierantoni
Survive expert advisor. Trading algorithm developed based on the combination of MACD and RSI indicators. Only one buy/sell order is executed. No martingales or other recovery techniques. In case of loss the system automatically closes the order if no stop loss is set based on the parameters entered. The system is suitable for all currencies. basic settings for usd/jpy currencies H1 Timeframe. //------------------------declaration of variables------------------------ ------ MagicNumber ; // M
Forest
Vadim Podoprigora
Forest is a Trend Expert Advisor based on the analysis of a unique mathematical model of trend lines, which allows you to determine the trend movement. The Expert Advisor is most suitable for the currency pair "USDCHF" on period "H1". The EA can work on any type of accounts, and with any brokers. The EA uses mathematical analysis to open trades and applies loss control to open trades. At its core, the EA does not use any risky systems with the increase in the volume or increase in the number of
该产品的买家也购买
Scalping Robot Pro MT4
MQL TOOLS SL
5 (4)
Scalping Robot Pro is a  professional trading system  designed specifically for fast and precise scalping on XAUUSD using the M1 timeframe. The system is built to capture short term market movements with accurate execution and controlled risk management. It focuses on real time price behavior, momentum shifts, short term volatility, and selective grid based trade management techniques to identify high probability  trading opportunities  in the gold market. Scalping Robot Pro is optimized for tra
The Gold Reaper MT4
Profalgo Limited
4.62 (34)
道具準備就緒! ( 下載SETFILE ) 推出促銷活動: 目前價格只剩幾本! 最終價格:990$ 免費取得 1 個 EA(適用於 2 個交易帳號)-> 購買後聯絡我 Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal LATEST MANUAL 歡迎來到黃金收割者! 該 EA 以非常成功的 Goldtrade Pro 為基礎,設計為同時在多個時間框架上運行,並且可以選擇將交易頻率從非常保守到極端波動設定。 EA 使用多種確認演算法來找到最佳入場價格,並在內部運行多種策略來分散交易風險。 所有交易都有停損和止盈,但也使用追蹤停損和追蹤停盈來最小化風險並最大化每筆交易的潛力。 該系統建立在非常流行且經過驗證的策略之上:交易突破重要的支撐位和阻力位。   黃金非常適合這種策略,因為它是一種波動性很大的貨幣對。 系統根據您的帳戶規模和最大允許提款設定自動調整交易頻率和手數! 回測顯示出非常穩定的成長曲線,回撤非常可控且恢復很快。  該 EA 已針對黃金的最長可用期限進行了壓
Aurum AI mt4
Leonid Arkhipov
4.94 (32)
更新 — 2025年12月 Aurum 交易系统于 2024 年 11 月底正式发布。 在这一整年里,它在真实市场环境中稳定运行,没有新闻过滤器,没有额外的防护限制,也没有复杂的交易约束 —— 依然保持了稳定与可靠的表现。 Live Signal (launch April 14, 2026) 这一年的真实交易充分证明了该交易系统本身的可靠性。 正是在真实数据与实际经验的基础上,我们于 2025 年 12 月发布了本次重大更新: 全面升级高级交易面板,并适配所有屏幕分辨率 新增扩展交易保护系统 新增基于 Forex Factory 的强力新闻过滤系统 新增两个额外过滤器,用于更精准的信号判断 全面优化执行速度与系统稳定性 新增安全的 Recovery 回本功能 图表主题升级为高级风格 关于 Aurum Aurum — 黄金交易高级 EA(XAU/USD) Aurum 是一款专为黄金市场打造的专业级交易 EA,核心目标是稳定性与安全性。系统基于趋势分析,并采用严格的风险控制机制。 本系统不使用任何危险交易方式 —— 不加仓、不网格、不马丁、不激进加仓。 每一笔交易都严格设置止损
BB Return mt4
Leonid Arkhipov
5 (18)
BB Return — 一款用于黄金交易(XAUUSD)的智能交易系统(EA)。该交易思路最初来自我的 手动交易 经验。策略核心是价格回归 Bollinger Bands(布林通道) 区间,但并非机械式或每次触及即入场。针对黄金市场的特性,系统加入了额外过滤条件,用于剔除无效和低质量的市场环境,仅在回归逻辑真正成立时才开仓。   交易原则 — 系统不使用网格、马丁或加仓平均成本等风险策略。EA 可使用 固定手数 或 AutoRisk 自动风险 模式运行。BB Return 对点差、滑点及不同经纪商的报价方式不敏感,可在任何经纪商及多种账户类型下运行,包括 Standard、ECN、Pro、Raw、Razor 。系统不受交易时段限制,可 24 小时运行 。   $ 359   不是最终价格。 当前价格仅剩 5–7 个名额。 之后将上涨。 该EA限量提供,以保证策略的稳定性。 设置与交易频率 — 启动系统无需复杂设置,策略设计即基于 默认参数 运行,通常只需调整手数或 AutoRisk 模式。系统平均每年约执行 80–100 笔交易 。对于不使用网格、加仓或激进方法的系统来说,这是一个
Quantum King MT4
Bogdan Ion Puscasu
5 (5)
量子之王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 时间框架上开发的全自动交易系统。 它将网格策略的结构与马丁格尔策略的自适应恢复逻辑相结合,形成了一个能够智能管理所有市场阶段交易的系统。 专为易用性和一致性而设计   量子王
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 有一點經驗,您可以輕鬆地將
Vortex Gold MT4
Stanislav Tomilov
4.93 (42)
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 >>
Goldbot One MT4
Profalgo Limited
5 (5)
推出促銷活動: 目前價格只剩幾本! 最終價格:990$ 新:購買 Goldbot One 並免費選擇 1 個 EA! (適用於2個交易帳戶) 加入公共團體: 點擊此處   終極組合優惠   ->   點擊此處 LIVE SIGNAL 隆重介紹   Goldbot One ,這是一款專為黃金市場設計的高度複雜的交易機器人。 Goldbot One 專注於突破交易,利用支撐位和阻力位來識別主要交易機會。 該專家顧問專為在波動的貴金屬市場中尋求效率、可靠性和策略優勢的交易者而設計。   值得注意的事實:     EA 在樣本外資料中的表現與用於最佳化的樣本內資料完美一致。   樣本內時期為2016年至2023年。 用於確認策略的樣本外資料為 2004-2016 年和 2024 年。       2024年,業績躋身近20年來最好之列!   現在,這是未來表現的一個非常好的指標。   主要特點: 多策略方法: 獲勝策略的 8 種變體: Goldbot One 運行八種不同的突破策略變體,每種變體都針對不同的市場條件進行了最佳化。這種多元化確保了風險的良好分散並創造了更平穩的成長預期  
XG Gold Robot MT4
MQL TOOLS SL
4.29 (42)
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 版本 ->   这里
Trust EA MT4
Konstantin Kulikov
5 (1)
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. The final price is 997$ * 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
One Gold MT4
Stanislav Tomilov
4.65 (17)
介绍 One Gold EA,这是 Meta Trader 平台上一种先进的黄金交易机器人,旨在帮助交易者进行高级市场分析。我们的专有技术利用神经网络和数据驱动算法来分析历史和实时黄金市场数据,提供有助于决策的见解。与传统的手动策略不同,One Gold EA 以最少的干预运行,简化了交易流程并旨在降低相关风险。虽然使用先进的神经插件可以增强机器人的分析能力,但需要注意的是,与任何交易工具一样,One Gold EA 并不保证盈利。然而,它被设计为具有通过提供更明智和数据支持的见解来提高交易绩效的潜力。One Gold EA 持续监控黄金市场,以检测人类交易者可能难以发现的模式和趋势。该系统能够适应各种市场条件,提供更一致的交易方法,尤其是在黄金交易等高度波动的环境中。无论您是经验丰富的交易员还是市场新手,One Gold EA 都旨在通过提供全面的市场分析和减少手动工作量来支持您的决策过程。虽然 One Gold EA 旨在简化交易体验,但将机器人与深思熟虑的交易计划和适当的风险管理策略结合使用至关重要。我们相信我们的技术有潜力为交易员提供支持,但鼓励负责任地使用和持续监控结果以获得
ORIX mt4
Leonid Arkhipov
4.75 (4)
ORIX System —— 一款专为 GBPUSD 货币对在 M5 时间周期上开发的交易机器人。该EA基于价格行为与市场结构分析,不使用任何标准技术指标。系统不使用马丁格尔、交易网格、逆势加仓、对冲、无止损交易,也不进行高频或混乱交易。 Live signals 主要要求与建议 交易品种:GBPUSD 时间周期:M5 最低入金:从 100 USD / EUR(最小交易手数 0.01) 经纪商:任何提供高质量报价的正规 ECN 经纪商 账户类型:ECN / RAW / Razor(支持 Netting 与 Hedging 模式) VPS:建议使用 VPS 以保证 EA 稳定、连续运行 推荐风险:每笔交易 1%–5%(风险基于单笔交易的止损计算) 参数设置:默认设置 交易逻辑与风险管理 策略类型:价格行为与市场结构分析,识别关键反转区域 不使用标准技术指标 每笔交易均带有强制止损 支持固定手数交易 支持 Auto Risk 自动风险模式 风险基于单笔交易的止损进行计算 推荐风险:每笔交易 1–5% GMT 参数 默认情况下,EA 使用最常见的服务器时间偏移:冬令时 GMT +2,
Gold Safe MT4 EA
Anton Zverev
3.67 (3)
实时信号:   https://www.mql5.com/en/users/varkotechnologies/seller MT5 版本:   https://www.mql5.com/en/market/product/164203 大体时间:       M1 货币对:       XAUUSD Gold Safe EA Manual: https://www.mql5.com/ru/blogs/post/770312 Varko Technologies 不是一家企业,而是一种自由的理念。 我感兴趣的是长期合作和建立声誉。 我的目标是不断改进和优化产品,以适应不断变化的市场环境。 黄金安全EA       - 该算法同时使用多种策略,其主要理念是强调控制亏损交易和风险。 交易的收尾和控制采用了多级措施。 如何安装专家版? 您需要将文件从EA传输到XAUUSD M1货币对图表。无需SET文件,只需设置时间偏移值即可。 我建议使用时间交易,例如通过 IC Markets 或 RoboForex 等经纪商。 如果您在设置时间方面需要帮助,请务必给我发私信。 请先在经纪商的策略
Double Blow Scalp
Kirill Borovskii
Double Blow Scalping EA: An Innovative Advisor for MT4, Inspired by Quantum Technologies - Limited Edition!!! Description: Double Blow Scalping EA is a revolutionary trading algorithm for MetaTrader 4 that combines advanced principles of quantum computing and scalping strategy. His work is based on a unique imitation of qubits, the key elements of quantum computers that allow processing multiple market scenarios simultaneously. This gives the Expert Advisor unprecedented analysis speed and acc
首发价格:$250 —— 当前价格档仅剩 8 份。 每售出 10 份,价格上涨 $50。最终价格:$1999。 Aurum Imperator   专为重视精准而非市场噪音的交易者打造。 它并不追逐所有品种和所有市场阶段,而是专注于一个明确目标: 通过为 MetaTrader 5 打造的 均值回归模型 交易   AUDCAD 。 该系统结合了 RSI 确认、价格与均线距离分析、ATR 逻辑、日/周级别市场环境判断以及结构化周期管理 , 以识别价格过度偏离的状态,并以纪律化的方式进行执行。 你可以将 EA 挂载在任何图表周期上。 所有交易决策都会在内部按 M15 周期处理,因此执行模型始终保持固定且一致。 不同于常规的优化理念 大多数交易机器人都会被优化成在历史回测中呈现尽可能漂亮的盈利曲线。 而 Aurum Imperator 的开发目标并不相同。 我们构建并使用了 自有优化框架 ,优先考虑   稳健性、一致性和长期可持续性 ,而不仅仅是历史利润最大化。 这意味着系统参数并不是单纯因为在过去数据上收益最高而被选中, 而是在更完整的质量评估框架下进行筛选,以偏向更干净、更稳定的长期表
XIRO Robot MT4
MQL TOOLS SL
5 (6)
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
GOLD Scalper PRO
Lachezar Krastev
4.48 (25)
ULTIMATE SALE! Get GOLD Scalper PRO with a huge –60% discount ! Special Ultimate Sale Price: $177 (Regular Price: $447 — You Save $270! Don't Miss!) Live Results:   https://www.mql5.com/en/signals/2353871 GOLD Scalper PRO is a fully automated trading system which takes much of the work out of trading, leaving you free to do other things! You should not be fooled by the low price – GOLD Scalper Pro is a very effective and profitable trading strategy, professionally developed especially for tra
Pingo AI
Anastasiya Morozova
Pingo Pingo是一款全自动交易机器人,旨在为外汇市场提供稳定、安全的交易环境。 该投资顾问的设计重点在于严格的风险控制,并且不采用马丁格尔策略、网格策略或平均策略等危险策略。 MT5 Version:  https://www.mql5.com/ru/market/product/155602 工作原理 Pingo 利用智能波动率过滤器分析价格模式和短期市场动态。 该机器人能够识别冲动区和修正区,从而以较高的成功概率和最小的风险进入市场。 交易决策严格按照算法做出,不受情绪或交易员干预。 安全性和可靠性 不使用 鞅 、 平均 或 危险位置管理方法 通过动态批次或固定数量进行风险管理 兼容任何经纪商和账户类型 主要特点 无需 马丁格尔策略 、 平均策略 、 锁定策略 或 网格 策略即可生效 使用精确的价格和波动性分析算法 针对高执行速度和最小回撤进行了优化 设置简单——“设置好就不用管了” 适合长期自动化交易 推荐工具和设置 时间周期:M15 账户类型:ECN 或原始价差账户 最低存款额:100 美元起 建议点差:最高 20 个点 推荐货币对: EURUSD GBPUS
Multi Sniper mq
DMITRII GRIDASOV
5 (3)
MULTI SNIPER EA 是一款精准的自动交易系统,在 MT4 平台上的准确率高达 90% 左右。 这款盈利丰厚的剥头皮 EA 无疑是目前市场上最稳定的系统之一。   No grid! No martingale! 它是独家产品,仅在本 MQL5 网站提供。 下载用于测试和交易的EA设置文件:   GBPAUD Set_file   GBPCAD Set_file - 实现了复利方法和剥头皮交易技术。 - 系统会根据市场波动自动设置动态止损。 - EA 默认具有自动(手数计算)风险管理功能,并提供固定手数选项。 - 可调整交易入场敏感度参数。 - 周末无交易缺口。 - 精确的操作时间过滤器,精度可达 1 分钟。 - 内置点差显示。 - 机器人具有盈亏平衡功能。 - 账户杠杆:1:30 至 1:2000 范围内任意选择。 - 最推荐的货币对是 GBPCAD 和 GBPAUD - 相应的 Set_files 可在“评论”部分找到。 - 不存在任何危险的马丁格尔/网格策略。每笔订单都有自己的止损位,以保护账户安全。 - 运行时间:EA 会根据设置中的时间过滤器,从美国交易时段结束
Golden Mirage mt4
Michela Russo
5 (9)
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 King AI MT4
Rodrigo Arana Garcia
5 (1)
仅剩 1/5 份以该价格出售 ---> 后续价格250$ // MT5版本 Gold King AI 采用 TensorTrade 开发,这是一个专为构建、训练、评估和部署基于强化学习的 robust 交易算法而设计的开源 Python 框架。 该算法在纽约交易时段运行。经过数小时的市场分析以识别潜在机会后,它会设置待执行订单,当价格触及这些水平时自动执行。这将迅速触发跟踪止盈以锁定收益。它还拥有名为“智能恢复”的第二策略,该策略在亏损交易后激活。该策略通过执行稍大订单来弥补部分损失。 请注意,神经网络将每4-5个月使用最新历史数据进行训练,以保持AI的更新。 该机器人不使用诸如马丁格尔或对冲等高风险管理方法。所有交易均由跟踪止盈和止损订单保护。 功能:   符号 XAUUSD(黄金) 时间框架 M30 最低资本 150$ 经纪商 任何,首选IC Markets 账户类型 任何,首选Raw/ECN 杠杆 1:500杠杆或更高(若杠杆低于此值请联系我) VPS 任意(若需VPS请联系我) 重要信息: 回测:回测应使用GMT+2/美国夏令时+3时区进行。建议使
Pro Multi Sniper mp
DMITRII GRIDASOV
PRO MULTI SNIPER EA   是一款高质量的自动交易系统,在 MT4 平台上的准确率高达 90% 左右。 这款盈利丰厚的剥头皮 EA 确实是目前市场上最稳定的系统之一。 M15 timeframe!   No Grid! No Martingale! 它是仅在本 MQL5 网站提供的原创产品。 下载用于测试和交易的EA设置文件: GBPCAD Set_file GBPAUD Set_file EA 的独特功能: - 使用机器学习方法. - 实现复利方法和剥头皮技术。 - 系统根据市场波动自动设置动态止损。 - EA 默认具有自动(手数计算)风险管理功能,并提供固定手数选项。 - 可调整交易入场敏感度参数。 - 周五至周一不保留未结订单,避免出现缺口。 - 精确的运行时间过滤器,精度为 1 分钟。 - 机器人具有盈亏平衡功能。 - 账户杠杆:1:30 至 1:2000 范围内任意选择。 - 最推荐的货币对是 GBPCAD 和 GBPAUD。 - 不存在任何危险的马丁格尔/网格策略。每笔订单都有自己的止损位,以保护账户安全。 - 运行时间:EA 会根据设置中的时间过滤
Overview:  The Gold Space is a fully automated, professional-grade Expert Advisor specifically engineered for the XAUUSD (Gold) market. Designed natively for MetaTrader 4, this EA capitalizes on high-probability volatility expansions using a precise, dynamically calculated breakout algorithm. It eliminates emotional trading by strictly adhering to institutional-level risk management and systematic execution. Core Strategy:   The system's engine operates on a robust   Breakout stratergy . It cont
Trend Catcher Exp
Ramil Minniakhmetov
5 (1)
Trend Catcher EA 使用作者自主研发的自适应趋势分析指标来分析市场价格走势。它通过过滤掉短期噪音,专注于潜在的动能强度、波动性扩张和价格结构行为,从而识别真实的市场方向。该 EA 结合了移动平均线、RSI 和波动率过滤器等特殊定制指标的平滑和趋势过滤功能,可以根据预设的交易条件自动执行交易。 该系统会等待趋势确认,而不是对每一次价格波动都做出反应,然后在进入动态均衡区域之前寻找可控的回调机会,并顺势而为。这是一款马丁格尔/网格交易 EA。 货币对和时间框架: 该 EA 在 15 分钟或更高时间框架(例如 H1)下运行良好,适用于 xauusd 或主要货币对,例如 eurusd、gbpusd、usdcad、audusd、audcad、nzdcad、nzdusd 等,以获得更高的准确性。 设置: 开启新系列 – 真/假 – 允许开启新系列 买入交易 – 真/假 – 允许买入 卖出交易 – 真/假 – 允许卖出 管理手动订单 – 真/假 – 如果交易者手动输入新订单,EA 将自动执行 使用对冲 – 真/假 – 允许对冲 订单备注 – EA 趋势 AI 最
Golden Scalper PRO
Felipe Jose Costa Pereira
3.73 (11)
Golden Scalper PRO:让我们的技术为您服务! 说明书与参数文件:购买后请联系我获取完整的说明书和设置文件。 价格:价格会随着许可证的销售数量增加而上涨。 剩余名额:3 黄金交易是金融市场上波动性最大、风险最高的品种之一,它需要极高的精准度、深入的分析能力以及强大的风险管理能力。 Golden Scalper PRO 正是为此而生,结合了先进的技术与高效的交易策略,旨在帮助交易者在黄金市场中获得最大收益。无论是新手还是专业交易员,它都能为您提供强大的支持,让您在这个充满挑战的市场中安全高效地交易。 Golden Scalper 拥有智能自适应系统、多周期分析、自动调整仓位以及严密的风险控制功能,能够在瞬息万变的市场中迅速做出反应,同时保障您的资金安全。 交易品种 XAUUSD(黄金) 交易周期 M5 最低资金 500 美元 支持平台 任何经纪商 账户类型 任何,建议低点差账户 杠杆 1:500 及以上 VPS服务器 建议使用,但非必须 交易品种 SPX500(纳斯达克100) 交易周期 M5 最低资金 1000 美元 支持平台 任何经纪商 账户类型 任何,建议低点
Forex Dominance MT4
Ebrahim Mohamed Ahmed Maiyas
5 (2)
An advanced Expert Advisor powered by artificial intelligence and machine learning, specifically designed for analyzing Forex Market. It adapts to price movements and market fluctuations to detect potential trading opportunities. Discounted price   . The price will increase by $50 with every 5 purchases. No Risky Strategies   –   Does not use martingale or grid methods Artificial Intelligence Integration: At the heart of this EA les a sophisticated AI engine capable of recognizing complex patte
EA Budak Ubat
Syarief Azman Bin Rosli
4 (3)
免费试用 EA Budak Ubat 频道 限时特价! 每购买10次后价格将增加10美元! 工作原理 当 EA 激活时,它会根据执行模式参数分析图表。 如果图表上没有现有仓位,EA 将根据参数输入交易。如果趋势是看涨的,它将进入买入交易,如果是看跌的,它将进入卖出交易。如果止损变量大于0,则还会设置距离已打开交易价格一定距离的止损订单。0表示没有止损。 如果图表上存在现有仓位,且最后一个仓位处于亏损状态,EA 将检查当前市场价格与订单之间的距离是否至少为用户设置的最小距离,然后将根据蜡烛图输入交易,仓位大小将使用马丁格尔方法计算,并且将设置离已打开交易价格一定距离的止损订单,如果止损变量大于0。 如果未启用套期保值,EA 一次只会进入一个方向的交易。如果第一个仓位是买入交易,则所有后续的马丁格尔仓位也必须是买入交易。如果第一个仓位是卖出交易,则所有后续的马丁格尔仓位也必须是卖出交易。如果启用套期保值,EA 将进入双向交易。 EA 将修改相同方向的所有仓位的获利点为单一的保本点,再加上用户设置的获利水平。 EA 参数 执行模式: 在每个新 K 线上:当 EA 激活时,它会在每个新的
FlipDamonHFT
Allistair Kabelo Mandow
1 (4)
FlipDamonHFT is a fully automated Expert Advisor for MetaTrader 4, developed for trading XAUUSD (Gold) on the M15 timeframe. It uses a high-frequency approach combined with advanced risk controls to identify and capture short-term opportunities in the gold market. The EA is designed for traders who understand the high-risk nature of HFT strategies. It focuses on precision execution, dynamic position sizing, and multi-layer protection to manage trades during volatile gold movements. Key Features
Boring Pips MT4
Thi Thu Ha Hoang
4.54 (13)
你是否曾 经想过为什么大多数专家顾问在实盘交易中并不有效,尽管它们在回测中表现完美? 最有可能的答案是过拟合。许多专家顾问被创建为对现有的历史数据进行“学习”和完美适应,但由于构建模型的泛化能力不足,它们无法预测未来。 一些开 发者可能根本不知道过拟合的存在,或者他们知道但没有办法防止它。其他人则将其作为美化回测结果的工具,他们添加了数十个输入参数,而不考虑统计学意义,使交易策略过度依赖历史数据,并试图说服他人他们的专家顾问未来能够实现类似的表现。 如果你 对这个迷人的主题感兴趣,并想更深入地了解过拟合,请参考我的这些文章: Avoiding Over-fitting in Trading Strategy (Part 1): Identifying the Signs and Causes Avoiding Over-fitting in Trading Strategy (Part 2): A Guide to Building Optimization Processes 有几种方法可以避免在 仅仅依赖读取过去数据的专家顾问上亏钱。而最简单的方法是,在没有至少 5 个月或 30
作者的更多信息
Nash Equilibrium
Tomasz Adrian Bialous
I am pleased to present to you a powerful EA, and everything about this EA is HUGE: profit, drawdown, number of orders, deposit. EA trade all 28 symbols x 5 timeframes (M15,M30,H1,H4,D1), individual timeframes and currencies (not symbols) can be disabled. Simple calculation: 28*5 = 140 signals to trade, and * 2 directions(buy/sell) = 280. If you are interested, read on. 1. How it was created: EA was created when, after writing EA for manual basket trading, I was looking for an idea to automate i
筛选:
无评论
回复评论