• 概述
  • 评论
  • 评论
  • 新特性

Short Trend Reversal

With this EA you can build a good profitable system. The EA was created to test signals for the main EA that I am creating, but when I saw the backtest results, I thought I would add a few lines and put it on the market. After adding over 1000 lines of code, here it is. It works on any classic currency pair /you just need to find the right settings/. It probably 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. Sample settings for GOLD, SILVER, OIL, SP500, DAX40 can be found in the params.txt file.

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 settings coded Built-in settings: SAFE, MODERATE, AGGRESIVE, start by checking what it looks like with your broker /it was backtested with Vantage on an STP account in 2023/.

I recommend turning 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.

During the sale of promotional copies, will expand EA to multitimeframe and upgrade to version 2.0

Important: This EA should have StopLoss set to 0 while running. StopLoss is used to create a statistics file in the tester folder during backtests. 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/
                                                                                                                                                                                     

method 1 /detailed/

step one:

  • EA default values: and disable the final_optimization 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-15 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 optimization 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.

step two:

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

Run optimization. Now choose what suits you. Additionally, once you have your optimization 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/params.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/

Everything as above in one go.

  • EA default values
  • BarsRange1:   range 5-50 with step 5 /pattern higher lower trades/
  • BarsRange2:   range 3-15 with step 2 /pattern higher lower trades/
  • min_dist:       range 10-70 with step 10 /minimum distance from the previous order, 0 completely disables the limit/
  • pending_dist: range 10-70 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_optimization

Run optimization. Now choose what suits you. Additionally, once you have your optimization results, you can set StopLoss as above and run individual results. Statistics in the file as above.

                                                                                                                                                                                     

While writing this description, I extended the pending_dist functionality and did not backtested it. When you set a negative value, the EA will set a buy stop order a few pips above the local high and sell stop a few pips below.

here is the formula:
BUY STOP at the highest high of the last 10 bars + ((-1)*pending_dist + spread)

SELL STOP at the lowest low of the last 10bars - ((-1)*pending_dist)

=======================================================================================================

Settings:

BarsRange1:
main signal 1 /pattern higher lower trades/
BarsRange2:
main signal 2 /pattern higher lower trades/
min_dist:
minimum distance from the previous order, 0 completely disables the limit
pending_dist:
distance of pending order, 0 disables pending orders, negative value: distance from local maximums and minimums for pending orders
TakeProfit:
M15 TP=15, M30: TP =20, H1: TP=30, H4: TP=40
StopLoss:
100,150,200 /depends on the symbol/
final_optimization:
enable/disable averaging
Built-in settings: user,SAFE,MODERATE,AGGRESIVE,ReadFromFile
TP,SL in %:
calculation in % for other instruments than currencies
StartTrading:
the beginning of trading, set Start and Stop to 0:00, trading is active all the time, set Start and Stop to 9:9, trading is inactive all the time
StopTrading:
end of trade, Start and Stop disabled for backtests
MagicNumber:
EA recognizes orders by number and _Period
Lots:
trade volume
dynamic_lots:
 each subsequent order will be increased modes: none,simple,fibo_sequence,martingale up to 10 trades. on chart you'll see (N),(S),(F),(M)
UseRiskManager:
you know, risk manager
EntryRisk:
% of capital per trade for accounts with leverage>=100. the position size is always calculated as for an account with leverage = 100 (for secure)
GUI_enable:
two graphical interface modes, simple GUI, also works in visual mode
UseSounds:
on/off sounds
LogLvL:
silent/MT4logs/alerts
ShowInitConfig:
shows a window with parameters at startup
Built-in settings:                           user: all settings can be changed by the user for use or backtesting
SAFE,MODERATE,AGGRESIVE:         all parameters from the first section are permanently set:
  •     BarsRange1, BarsRange2, min_dist, pending_dist are saved in arrays
  •     TakeProfit: M15 TP=15, M30: TP =20, H1: TP=30, H4: TP=40
  •     StopLoss set to 0
  •     final_optimization enabled
ReadFromFile:    During the first launch, EA will create a params.txt file in the folder MQL4/files/ShortTrendReversal/ with a saved SAFE table as an example of use. After backtesting, you can save the parameters there and you don't have to do anything else. EA will reload the file on the new D1 candle. You  can also restart MataTrader.


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

script that opens a set of charts:

#property copyright     "https://www.mql5.com/en/market/product/Short Trend Reversal"
#property link          "https://www.mql5.com/en/market/product/114909"
#property description   "script that opens a set of charts"
#property version       "1.00"
#property strict
#property show_inputs

#import "stdlib.ex4"
   string ErrorDescription(int error_code);
#import
#import "user32.dll"
   int  GetParent(int hWnd);
   void MoveWindow(int hWnd,int X,int Y,int nWidth,int nHeight,int bRepaint);
#import
#define INITIAL_PAIRS "EURUSD,GBPUSD,USDCHF,USDCAD,USDJPY,AUDUSD,NZDUSD,EURGBP,EURCHF,EURCAD,EURJPY,EURAUD,EURNZD,GBPCHF,GBPCAD,GBPJPY,GBPAUD,GBPNZD,CADCHF,CHFJPY,AUDCHF,NZDCHF,CADJPY,AUDCAD,NZDCAD,AUDJPY,NZDJPY,AUDNZD" 
string all_pairs[];

input string                  basket         = "EUR";
input ENUM_TIMEFRAMES         period         = PERIOD_H1;
input string                  inp_template   = "default.tpl";
input int                     Monitor        = 0;
extern int                    _X             = -5;
input int                     _Y             = -15;
input int                     Width          = 332;
input int                     Height         = 363;
input string                  prefix         = "";
input string                  suffix         = "";
//+------------------------------------------------------------------+
//| script program start function                                    |
//+------------------------------------------------------------------+
void OnStart() {
   StringSplit(INITIAL_PAIRS,',',all_pairs);
   if(Monitor > 0) _X += 1920;
   for(char i=0; i<ArraySize(all_pairs); i++) {
      if(StringFind(all_pairs[i],basket) != -1) {
         long chart = ChartOpen(prefix+all_pairs[i]+suffix,period);
         ChartApplyTemplate(chart,"\\Files\\ShortTrendReversal\\"+inp_template);
         int parent = GetParent((int)ChartGetInteger(chart,CHART_WINDOW_HANDLE));
         MoveWindow(parent,_X,_Y,Width,Height,true);
         ObjectCreate(chart,"ShortTrendReversal",OBJ_LABEL,0,0,0);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_CORNER,CORNER_RIGHT_LOWER);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_XDISTANCE,30);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_YDISTANCE,15);
         ObjectSetString(chart,"ShortTrendReversal",OBJPROP_TEXT,basket);
         ObjectSetString(chart,"ShortTrendReversal",OBJPROP_FONT,"Arial Black");
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_FONTSIZE,7);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_ALIGN,ALIGN_CENTER);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_COLOR,clrGainsboro);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_BGCOLOR,clrNONE);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_BORDER_COLOR,clrNONE);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_SELECTABLE,false);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_HIDDEN,true);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_READONLY,true);
         ChartRedraw(chart);
         _X+=274;Sleep(100);
      }
   }
}


推荐产品
| 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
PairsTrading
Evgenii Kuznetsov
3.67 (9)
The EA identifies divergences in two correlated currency pairs and trades in the direction where they converge back. Working timeframe: M30 Input parameters MagicNumber - identification number for the EA. OrdersComment - comment to order, automatic if an empty value is set. Lots - lot size. DepoPer001Lot - automatic lot calculation (specify the balance per 0.01 lot) (if 0, the value from 'Lots' parameter is used). TimeFrame - working timeframe. Symbol #2 - correlated currency. Symbol #2 revers
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
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
Grid and MA
Volodymyr Hrybachov
5 (3)
This is a grid Expert Advisor. It features several trading strategies based on Moving Average. It works on minute bar Open prices. Virtual trailing stop, stop loss and take profit can be set in 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 order grid is adaptive and is made of market orders. If the price ha
Bear vs Bull EA MT4
NGUYEN NGHIEM DUY
Bear vs Bull EA Is a automated adviser for daily operation of the FOREX currency market in a volatile and calm market. Suitable for both experienced traders and beginners. It works with any brokers, including American brokers, requiring FIFO to close primarily previously opened transactions. *In order to enable the panel, it is necessary to set the parameter DRAW_INFORMATION = true in the settings;  Recommendations Before using on real money, test the adviser with minimal risk on a cent tr
Universal MT4 MACD
Volodymyr Hrybachov
MACD指標上的交易機器人 這是交易機器人的簡化版,它只使用一種進場策略(高級版有超過 10 種策略) 專家福利: 剝頭皮交易、馬丁格爾交易、網格交易。 您可以僅使用一個訂單或一組訂單設置交易。具有動態、固定或乘數步長和交易手數的高度可定制的訂單網格將允許您使 EA 交易適應幾乎任何交易工具。 回撤系統,重疊虧損訂單和余額保護 網格交易易受非反彈價格變動的影響已不是什麼秘密,但由於訂單恢復系統,顧問將能夠擺脫大多數回撤。回撤的退出是通過將最遠的無利可圖的訂單與最接近市場的獲利訂單重疊來執行的。交易機器人可用於恢復賬戶中的虧損頭寸、手動交易或其他專家開立的交易。它可以通過幻數接收和處理所有訂單。 交易開放過濾器。 任何交易策略都應該有一個信號過濾器和交易開倉。在這個機器人中有幾個:MA 的趨勢方向過濾器、波動率過濾器、價差擴大過濾器、一周中的某一天和工作時間、用於多交易的直接和反向相關過濾器。具有手動確認信號的功能。 開倉和平倉訂單的虛擬級別。 所有交易開倉水平、止損、止盈、追踪止損設置都是虛擬的。多虧了這一點,您可以從
Alize EA
Viktor Barilko
Alize EA   is an advanced trading advisor specifically designed for Forex market trading. It uses complex mathematical algorithms to analyze the market and make trading decisions based on modified standard indicators and price action analysis. This robot is easy to use and fully automated: simply install it on the AUDCAD chart and set the desired risk level. One of the key features of Alize EA is its advanced averaging system, which adapts to current market conditions. The robot uses virtua
The basis of the strategy is the identification of quick corrective movements between the crosses of a working currency pair or metal. At the moment of differences in prices of trading instruments, the adviser analyzes the possible direction of price movement on a working instrument and starts work. Each position has a stop loss and take profit. A unique position tracking algorithm allows you to control the superiority of profit over loss. The adviser does not use dangerous trading method
Grandmaster
Agus Santoso
MT4版本: https://www.mql5.com/en/market/product/79803 MT5版本: https://www.mql5.com/en/market/product/107840 “Grandmaster”EA 交易系统是专为指数交易而设计的先进自动交易系统。 该 EA 采用基于先进信号分析和强大风险管理技术相结合的战略方法来开立和管理交易头寸。 以下是详细说明: 指数交易“大师”专家顾问 基于信号的建仓 “Grandmaster”EA 旨在高精度地检测和解释市场信号。 它综合利用技术指标、模式识别算法和市场情绪分析来确定最佳入场点。 这些信号源自: 技术指标:利用移动平均线、RSI、MACD、布林带等技术工具来分析市场趋势和动量。 模式识别:检测图表模式,例如头肩形、双顶/双底和旗形,以预测潜在的价格走势。 情绪分析:结合市场情绪数据,衡量市场整体情绪,提高入场信号的准确性。 一旦识别出信号汇合,EA 就会在市场中建仓,确保其符合整体交易策略和当前市场状况。 风险管理和平均 风险管理是“Grandmaster”EA 的基石,确保可持续且
Surf EA
Rustem Gabetdinov
5 (1)
Surf EA is a fully automatic grid based Expert Advisor that looks for reversal areas on the chart MT5 version:   https://www.mql5.com/ru/market/product/99693 Nature of work: The EA uses several patterns, indicators and other important conditions to search for signals Buy and sell positions are independent of each other Only one order can be opened on one bar of the current period The indicators used in the EA are included in the standard set of the terminal Recommendations: Trading pair: AUDCAD
Index Trader Suite
Ivan Pochta
5 (1)
>>> Index Trader Suite Live  Results  here >> >>> Index Trader Suite v.1.0 Presets: Download >> >>>    Index Trader Suite MT5 version available   here >> Index Trader Suite is a fully automated trading advisor based on a proprietary trading strategy for the world's most popular and liquid Stock Indices. The system is based on the principles of Price Action and does not use technical indicators to determine the optimal points for opening trades. The strategy is based on 2 key principles of
Success Forex
Mr Teerawoot Aonlamool
Way  to success  EA EA used to trade gold, try to get up to 10000 points of chart drag Trade according to trends, use up to 5 indicators to set values. It is a Martingale system. Fixed when the first lot lost by multiplying not over There is a trailing system. Stop comes when there is a profit. Max drawdown only 24.18% Testing Through the Crisis of War Within 6 months the profit reaches 128.74%
Bergland Gold MT4
Matthias Bessler
This fully automated trading system is part of the Bergland signal. It features a highly efficient trading logic, and a money management system. Reasonable calculated stop loss and take profit levels. It is easy to install and do not require a special setfile. XAUUSD, M15 Live Signal: Bergland Gold You can rent the Bergland signal here. If you like my product, please write a review.
H4 GBPUSD Trend Scalper is a trend signal scalper The EA trades according to the trend strategy using original built-in indicator for opening and closing orders. The external inputs for limiting trading on Fridays and Mondays are available. The purpose of the strategy is to use the current trend with the most benefit. According to the results of testing and working on demo and real accounts, the best results achieved by using the Н4 timeframe on the GBP/USD pair Works on MetaTrader 4 Build 971+
Fxdolarix
Andrey Kozak
Fxdolarix 是 GBPUSD M5 的自动机器人黄牛。 在真实账户上进行了 3 个月的测试。 该机器人采用专注于短期盘中价格走势的倒卖策略。 主要重点是识别短期波动的时刻并执行快速交易。 机器人使用以下指标:iMACD、iMA、iStochastic。 使用这些指标,机器人可以识别趋势的方向,并在跳动价格变动活动的帮助下,识别波动性的剧烈冲动以进行交易。 机器人使用风险管理策略来保护资本。 头寸规模根据当前市场波动情况计算,止损和止盈根据策略参数设置。 该机器人专注于 5 分钟图表 (M5) 上的交易,这使其能够对快速的价格变化做出反应。 该机器人已经使用各种参数进行了广泛的回溯测试,以确保在各种市场条件下的性能。 定期进行参数优化以保持高性能。 此外,该机器人还在 FXopen 经纪商的真实账户上进行了 3 个月的测试。 交易建议: 货币对 英镑兑美元 M5 时间表 最低初始余额 600 美元起 英镑兑美元最大点差可达 10 点 ECN账户类型 推荐用于交易 FXopen 的经纪商(或具有类似交易条件的经纪商) 将设置保留为默认值。 重要的! 如果您实时启动机器人并
Trendless Scalper
Jaspreet Singh Saini
As the name says, Trendless Scalper doesn't care for what trend is going on in the currency pair. It opens one trade as selected by user and then keep on adding trades according to direction itself. It don't have very complicated parameters. Simply apply on any chart and it works. It is recommended that the spread of the account should be low, but it dont have any restriction for accounts with high Spread too. It can trade any chart and any timeframe. This EA works for those accounts which can h
DJ30 Picsou
Julien Jean Bernard Lajardie
DJ30 Auto-Adaptative MA EA - Expert Advisor for DJ30 Trading The DJ30 Auto-Adaptative MA EA is a robust trading tool specifically designed for the DJ30 index on the 30-minute timeframe. This Expert Advisor combines a proven moving average strategy with an innovative auto-adaptive Stop Loss system, providing a balance between risk management and trade optimization. Key Features: Auto-Adaptative Stop Loss : The EA automatically adjusts Stop Loss levels in real-time based on the Average True Range
Nano Gold
Nguyen Hang Hai Ha
Expert Nano Gold is a fully automated trading robot programmed with the most advanced and advanced algorithms. This is an EA dedicated to the Gold market. It uses the Stop Order entry method suitable for the fast and strong fluctuations of the Gold market. Signals are selected with Tick patterns, price movements and correlations of popular indicators. Along with Scalper and Trailing strategies to quickly close positions with low risk and optimize performance. Trading orders always have Stop Los
Общие сведения Для начала торговли достаточно небольшого депозита. Подходит для мульти-валютной торговли. Не зависим от качества соединения и торговых условий.  Принцип работы Эксперт открывает ордера по встроенному индикатору. Если прибыль ордера плюсовая. Данный ордер закрывается и открывается новый в противоположном направлении объёмом  Lot . Если прибыль ордера минусовая. Данный ордер закрывается и открывается новый в этом же направлении и объёмом в  Martingale  раз больше преведущего.
GOLD Scalper PRO
Lachezar Krastev
4.38 (16)
PROMOTION: BUY 1 GET 1 FREE! --> Buy GOLD Scalper PRO with -50% OFF + 1 FREE EA! NOTE: Promo price: $197 ( Regular Price: $397) - The offer ends soon!  For more info about the promotion and possible free EAs, contact me! 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 es
CryptoHFT AI
Aldo Marco Ronchese
Trade all crypto pairs including BTCUSD BITCOIN BTCEUR LTC ETH etc (any pair with a spread over 100 including US100 ) CryptoHFT   isn't just another Expert Advisor.   It's your gateway to a new era of intelligent,   adaptive trading in the volatile world of cryptocurrencies.   Powered by a cutting-edge 5-neuron AI engine,   CryptoHFT learns from your chosen timeframe - days,   weeks,   months,   or even years - to discover the optimal settings for   any crypto pair  with spreads ranging from 100
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
Stpaos
Vladislav Filippov
STPAOS is an automated trading advisor. The advisor programmatic functionality has been customized for a safe trading strategy with the trend, the essence of which is to close the transaction while achieving a positive profitability ratio of several points, which gives the buyer the opportunity to minimize the loss of funds from the opening of losing trades. Advisor is equipped with special software installations and utilities that help to achieve a positive indicator of trade profitability. The
Max ScalperSpeed
Paranchai Tensit
Max ScalperSpeed   is a fully automated expert advisor. This system has been developed to improve the efficiency of generating more returns. Rely on scalping trading strategies and recovery strategies with appropriate trading frequencies, and also able to work well in all market conditions, whether trend or sideways, able to trade full time in all conditions. Enable or disable news filtering according to user needs. Added a proportional lot size adjustment function, where users can choose to ad
Brexit Breakout (GBPUSD H1) This EA has been developed for GBPUSD H1.  Everything is tested for H1 timeframe . Strategy is based on breakout of the This Bar Open indicator after some time of consolidation. It will very well works on these times, when the pound is moving. It uses Stop pending orders with  FIXED Stop Loss and Take Profit . It also uses PROFIT TRAILING to catch from the moves as much as possible. At 9:00 pm we are closing trading every Friday to prevent from weekly gaps. !!!Adjust
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
Gold Matrix pro Welcome to the Gold Matrix Ea pro. The Robot is based on one standard Indicator. No other Indicator required =============================================================================================== This Robot is fully automated and has been created for everyone. The Robot works also on cent accounts. =============================================================================================== =>   works on all Time Frames from 1Minute to 1Day => On the lower Frames
Night Zen
Anton Iudakov
A multi-currency scalping robot at night. In the second version, only EURCHF is traded. Signal version 1.0 (Multiplier = 1) Night Zen - the night scalper uses low-volatility areas on the chart to search for a potential price reversal. The Expert Advisor enters the market with only one transaction if all conditions are met. To protect trades, the EA sets a fixed Stop Loss. The adviser can close a deal both on Take Profit and on the strategy embedded in it. The Expert Advisor trades on the m15 tim
Fundamental Robot MT4
Kyra Nickaline Watson-gordon
Fundamental Robot is an Expert Advisor based on Fundamental Signals Indicator. The Fundamental Signals Indicator has a powerful calculation engine that can predict market movement over 30000 points. The indicator is named fundamental because it can predict trends with large movements, no complicated inputs and low risk.  The EA works with low margin levels and thus has low risk. Using EA : The EA is very simple and without complicated input parameters. These are main parameters must b
该产品的买家也购买
AI Gen XII MT4
Denis Kurnev
5 (11)
AI Gen XII EA This is an Expert Advisor with the latest use of Artificial Intelligence and Neural Networks. The EA runs on the top-of-the-line GPT-4o platform and also uses Advanced Discrete Fourier Imaging in ATFNet aligns the frequency spectrum of the input series, allowing for a more complete analysis of time series data. The EA also boasts trading on different strategies simultaneously and matching backtest trades and real trading, which is very important in its time.  Details about Advisor
The Gold Reaper MT4
Profalgo Limited
4.69 (29)
道具準備就緒! ( 下載SETFILE ) 推出促銷活動: 目前價格只剩幾本! 最終價格:990$ 免費取得 1 個 EA(適用於 2 個交易帳號)-> 購買後聯絡我 Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal 歡迎來到黃金收割者! 該 EA 以非常成功的 Goldtrade Pro 為基礎,設計為同時在多個時間框架上運行,並且可以選擇將交易頻率從非常保守到極端波動設定。 EA 使用多種確認演算法來找到最佳入場價格,並在內部運行多種策略來分散交易風險。 所有交易都有停損和止盈,但也使用追蹤停損和追蹤停盈來最小化風險並最大化每筆交易的潛力。 該系統建立在非常流行且經過驗證的策略之上:交易突破重要的支撐位和阻力位。   黃金非常適合這種策略,因為它是一種波動性很大的貨幣對。 系統根據您的帳戶規模和最大允許提款設定自動調整交易頻率和手數! 回測顯示出非常穩定的成長曲線,回撤非常可控且恢復很快。  該 EA 已針對黃金的最長可用期限進行了壓力測試,為不同經紀商使用了
Gold Scalper Trading
Ho Tuan Thang
4.67 (6)
ONLY 3 COPIES OUT OF 10 LEFT AT $399! After that, the price will be raised to $499. - REAL SIGNAL: Default Setting:  https://www.mql5.com/en/signals/2251841 Gold Scalper Trading is an EA that uses a complex trading methodology that includes cross-market analysis to find scalpable entry points with XAUUSD, one of the market's wildest running pairs. EA uses stop loss for all orders, only 1 order and does not use any dangerous trading methods: No grid, no martingale,... Gold Scalper Trading is o
The Law of Jungle
Inrexea Limited
Please do not   pm   me if you are asking for:  Discount ( Price will go back to original price 3800 in the future ) Backtesting result ( We don't trust mislead informations ) (LOJ IS NOT A HFT Strategy, Will not be violated by Prop firm rules) We don't rely on backtest results. The backtesting environment can't access our database to retrieve historical data. We aim to provide clarity to EA traders and not mislead them. The best approach is to monitor our signals. If you're wondering how to ve
Diamond Titan FX MT4
Lo Thi Mai Loan
5 (6)
推广活动 目前只剩下3次销售以当前价格购买。 下一个价格: $1233 免费获取US30 Scalper EA和Quantum Algo EA -> 购买后请联系我 Live signal:    https://www.mql5.com/en/signals/2220190?source=Site+Profile+Seller Prop Signal:  https://www.mql5.com/en/signals/2223219?source=Site+Signals+Profile+From+Author MT5:  https://www.mql5.com/en/market/product/116010?source=Site+Market+Product+Page 通过 Prop Challenge 的交易历史: https://www.mql5.com/en/blogs/post/757093 常见问题解答: https://www.mql5.com/en/blogs/post/757094 更多 Diamond Titan FX 分析: https://www.mq
HFT Prop Firm EA
Dilwyn Tng
4.98 (560)
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
Quantum Emperor MT4
Bogdan Ion Puscasu
4.86 (128)
介绍     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 或 Quantum Queen 或 Quantum Gold Emperor !*** 私信询问更多详情 新版直播信号 V5:   点击此处 旧版直播信号 V4:   点击此处 MT5版本:  点击这里 量子 EA 通道:       点击这里 夏季促销 :999 美元。每购买 10 次,价格就会上涨 100 美元。最终售价 1999 美元 量子皇帝EA     采用独特的策略,将单个交易连续拆分为六个较小的交易。
Way To Stars是一款夜间头皮EA,专门设计在市场波动性较低的时间段进行交易来利用低波动性,以此降低风险。这款夜间头皮EA专注于利用小的价格变动进行频繁交易,通过积少成多的方式积累利润。本EA采用严格的止损措施来限制每笔交易的潜在亏损,确保了风险管理的有效性。Way To Stars 是一个真实且诚实的交易系统,它不依赖于号称的神经网络、人工智能、ChatGPT或完美的直线回测结果。 MT5版本     用户手册     signal:  https://www.mql5.com/en/signals/2220466 下一个价格: $ 799 setfile of signal 本EA的特点: 适合货币对:GBPUSD 加载时间框架:任意 无网格,无马丁,一次交易 将订单分散为多笔订单,降低风险,提高成功率 通过最大持仓时间和最大浮亏比例来管理风险 自动调整交易时间,考虑时区和夏令时变化 小资金账户适用 适用于低点差高流动性平台,如IC Markets 关于MT4版本的特别说明: 由于MT4本身的原因, 回测 无法模拟夜间真实的浮动的点差,回测结果会与很实际效果差异很大,
AI TradingVision GPX MT4
Yu Mei Cheng
4.58 (12)
注意事项 EA 最多包含 6 个入场点,每次交易的手数为下单手数乘以 6,因此请注意不要使用过大的手数。 默认的手数计算方式不是资金百分比。我们的默认计算方式不受杠杆影响,能更精确地控制风险。 建议使用 1000 美元以上的资金以提高风险抗性。 同时使用多个货币对会有风险叠加的可能,请注意。 此为MT5版本。MT5版本能更好的模拟市场环境。建议使用。如需MT4版本,我们会在稍后一段时间发布。 请注意,交易涉及风险,理解并有效管理这些风险非常重要。 真实资金信号: 点击查看 实时信号: 点击查看 MT5版本: 转到MT5 618大促,限时优惠300$ 目前我们有一项黄金EA赠送活动,购买后请联系我们获取。该活动为限时活动。 运行推荐 推荐货币对:   GBPUSD,   USDCAD , AUDUSD 时间周期:M15 运行资金:建议 1000 美元以上 账户类型:无特殊要求,低点差效果更好 杠杆:无特殊要求 参数功能说明: 使用手册。 购买后建议阅读常见问题解答(FAQ):" 点击这里查看 "
Daytrade Pro Algo
Profalgo Limited
5 (5)
推出促銷: 以當前價格提供的副本數量有限 最終價格:990$ 新:免費獲得 1 個 EA! (2 個交易賬戶) Ultimate Combo Deal   ->   click here LIVE RESULTS:   https://www.mql5.com/en/signals/1949810 JOIN PUBLIC GROUP:   Click here Set Files 歡迎來到 DayTrade Pro Algo! 經過多年的市場研究和不同策略的編程,我發現了一個具有良好交易系統所需的一切的算法: 它是獨立於經紀人的 它是獨立傳播的 它使用真實可變點差測試在 MT4、MT5、TDS2 和多個經紀商上輕鬆顯示非常穩定的回測 數百種不同的設置都在測試中給出了有利可圖的結果(當然我選擇了最好的!) 非常強大的系統 -> 設置可以互換,因此使用 USDJPY 的設置運行 EURUSD 仍然是有利可圖的。   已經在 13 個貨幣對上運行:EURUSD;GBPUSD;USDJPY;AUDUSD;XAUUSD;GBPJPY;USDCAD;EURJPY;EURNZD;EURAU
Z4scalp
Cence Jk Oizeijoozzisa
5 (2)
-------------------------------------------介紹:Z4SCALP---- -------------------------------------------------- -- Z4SCALP 是先進的交易機器人,每筆交易都有一個 SL,非常小的 SL,設計時沒有鞅。 獨家優惠:購買一件產品,即可免費獲得另一 件 ! -------------------------------------------------- -------------------------------------------------- ---------------- 用於演示的帳戶詳細資訊: 若要查看正在執行中的交易機器人,請登入以下模擬帳戶。該帳戶僅反映真實帳戶,沒有任何活躍的機器人。 帳號:21756797 密碼:A12345678 伺服器:ICMarketsSC-Demo02 螢幕截圖部分提供了真實帳戶的視頻,其操作方式與此演示相同。 模擬帳戶和真實帳戶沒有區別。 ---------------------------------
Quantum Algo Trading MT4
Lo Thi Mai Loan
5 (6)
这个价格只剩下2个复印机,下一价格是$2333。 查看实时结果: $50K 个人信号: [点击这里] Prop公司实时信号: [点击这里] MT5版本在这里: [点击这里] 欢迎来到 Quantum Algo Trading MT4 EA 。 此EA不仅仅是一个机械系统,它将成为您整个交易旅程中的伙伴。 此EA利用突破系统,并由拥有超过13年交易和编程经验的人优化算法。 与市场上其他仅依赖过去回测结果的EA不同,许多EA故意操纵结果以适应过去,Quantum Algo Trading进行了完全自然的回测,没有强迫结果匹配过去。它还进行了前瞻性测试阶段,取得了真实结果,并与回测结果进行了比较。 此EA提供的真实世界结果与回测结果的相似度高达99.9%,这让购买者在测试产品时充满信心。 主要特点: 没有马丁格尔,没有网格,没有对冲。 每笔交易都有固定止损。 每笔交易使用跟踪止损。 最多可有2个开仓头寸,可选择设置最多1个头寸。 包括新闻过滤功能,适合那些希望避免高影响新闻事件期间波动的人。 选项只选择买/卖。 用户界面对初学者友好。 适用于个人账户和Prop公
Gold Trade Pro
Profalgo Limited
4.59 (22)
推出促銷活動! 僅剩幾本,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 有一點經驗,您可
CyBRG RX Mt4
Arseny Potyekhin
5 (2)
介绍 CyBRG RX:下一代交易助手 踏入交易的未来,与您的尖端交易伴侣 CyBRG RX 一起提升您的交易体验。借助先进的神经网络,CyBRG RX 可以前所未有的精确性分析和适应不断变化的市场条件。 信号:   实时信号 1 实时信号 2 由于该策略非常独特,我只想出售有限数量的许可证。因此,价格将稳步上涨以限制销售。 下一个价格是  890 USD 。 经纪商 任何经纪商,优选 ECN / ZERO 点差 杠杆 从 1 : 20 起 存款 最低 50 美元     符号 USDJPY 时间框架 H1 为什么选择 CyBRG RX? 最先进的神经网络 :CyBRG RX 利用复杂的 AI 算法进行学习和进化,为您提供深入的市场分析。 自适应策略 :针对金融市场的动态特性,CyBRG RX 不断调整其策略,确保您始终领先一步。 用户友好界面 :凭借简洁、直观的设计,CyBRG RX 使初学者和经验丰富的交易者都能轻松使用其强大的功能。 实时分析 :通过实时分析,获得及时的数据驱动洞见,做出明智的决策。 强大的安全性 :您的数据安全是我们的首要任务。CyBRG
Supply Demand EA ProBot
Georgios Kalomoiropoulos
5 (2)
基于 供需 原则的 全自动 EA。第一个提供完全自动化的 供需 EA 。 现在 交易 变得轻松 ,完全控制您的交易策略 通过用户友好的图形交易面板。 您将获得包含超过 15,000 行代码的超高质量 算法交易 软件。 供应需求 EA ProBot 手册 交易“Prop Firms Challenges”和通过所有阶段成为合格交易员的最佳方式。 所有交易均自动进行和管理。只需 选择您的输入 ,然后坐下来,观察您的利润增长。 面板输入参数: 选择 交易方向 (买入或卖出) 选择您想要进行交易的 时间范围 选择您想要交易 的区域类型 (宽、中、窄、超窄) 选择 3 种资金管理 选项 选择 EA 在 盈利 或 亏损 交易 次数后停止 选择 基于风险 或 基于 ATR 的 TP 和 SL 比率 选择 看涨通道 或 看跌通道 内的交易区域 选择 上限 和 下限 范围 如果您只想在一天中的特定时段进行交易,请选择 时间范围 多种 追踪止损 和 盈亏平衡 功能可供选择 您最多可以查看三个更高时间范围的区域。因此,如果您处于 30 分钟时间范围内,则可以激活 1 小时、
AW Recovery EA
AW Trading Software Limited
4.32 (65)
智能交易系统是一个旨在恢复无利可图头寸的系统。 作者的算法锁定了一个亏损仓位,将其拆分为多个独立的部分,并分别平仓。简单的设置、在回撤的情况下延迟启动、锁定、禁用其他 EA 交易、使用趋势过滤进行平均以及部分关闭亏损头寸都内置在一个工具中。 与仅在整个组中关闭订单的网格策略相比,使用部分关闭损失可以让您以较低的存款负载减少损失,从而确保更安全地处理损失。 如何恢复订单: 1 EA 关闭所选工具的其他窗口以关闭无利可图的 EA(可选)。 2 EA 重置所有已处理订单的止盈和止损水平,并删除具有相应标识符的挂单。 3 EA 关闭所有已处理的盈利订单,以便使用其利润来弥补部分非盈利订单并减少总头寸量(可选)。 4 EA 通过打开锁定订单来锁定亏损头寸。 5 然后,通过打开恢复订单,它开始通过部分关闭不盈利的订单来减少损失。 6 当部分关闭时,算法首先恢复定位最不成功的订单,或者最接近盈利的无利润订单。每个无利可图的订单都分为许多部分,顾问分别关闭每个部分。恢复订单以小量开仓,以免大幅增加入金负担 包含注释、设置和测试说明的完整输入设置列表  ->   这里  MT5 版本 ->   这里
Big Forex Players MT4
Marzena Maria Szmit
4.67 (24)
We proudly present our cutting-edge robot, the  Big Forex Players EA  designed to maximize your trading potential, minimize emotional trading, and make smarter decisions powered by cutting-edge technology. The whole system in this EA took us many months to build, and then we spent a lot of time testing it. This unique EA includes three distinct strategies that can be used independently or in together. The robot receives the positions of the   biggest Banks   (p ositions are sent from our databa
Adapt EA
Alexander Kozachuk
1 (1)
过去 24 年(自 2000 年以来)的回测 高盈利能力 适应不同市场状态的算法 与任何经纪商兼容 经过验证的回撤控制系统 货币对:USDCAD,EURUSD,AUDUSD,EURGBP,USDJPY 下载 标准回测 : 点击此处 下载 99% TickData (Ducascopy) 回测: 点击此处 真实账户 : 点击此处 真实账户 (激进型) : 点击此处 关于开发: 我们是一个专业的交易团队, 专门从事外汇专家顾问(机器人)的开发超过 15 年 。我们创建的大多数机器人实际上从未到达最终客户。原因是,最终,经过所有测试,它们不符合我们对盈利和可靠机器人的标准。我们的开发方法是这样的,我们宁愿丢弃十几个“普通”机器人,以便只发布一些真正优秀的开发。 工作原理: ADAPT EA 代表了一种新的、独特的外汇市场方法。考虑到 市场不是恒定的 ,而是一个动态变化的变量, 设置和 MM(资金管理)的方法也必须根据市场条件进行调整 。 ADAPT EA 机器人使用网格原则作为其主要策略。但是,仅使用网格策略,我们无法实现出色的可靠性,更不用说盈利能力了——正如 200
TrendMaster FX MT4
Chen Jia Qi
4.78 (18)
采用先进的算法并利用深度学习技术,我们的专家顾问(EA)是为了帮助您在复杂的外汇交易世界中导航而精心设计的。该系统分析市场行为,并根据特定标准进行交易,使您能更有效地参与市场趋势。凭借近十年的数据支持,EA利用深度学习来检查过去的市场条件,旨在提供更高级的决策支持。 Live signal :   TrendMaster FX The MT5 version : TrendMaster FX MT5 目前有EA试用活动,购买后联系我们可获得“Gold Garden”或“AI TradingVision GPX”的使用权限。如需了解详情,请联系我们。 推荐使用的货币对: 英镑/美元(GBPUSD) 美元/加元(USDCAD) 欧元/美元(EURUSD) 风险设置: 对于激进的交易者,最大风险设置为0.15。 对于更保守的交易者,特别是资本较大的人,建议将其设置在0.05以下,0.03定义为低风险。可以先从0.01开始熟悉操作 购买后: 可以给我们发私信以获取用户手册和注意事项。或者自行参考推荐的用户手册:   点击查看手册 购买后建议阅读常见问题解答(FAQ):" 点击这里查看 "
FT Gold Robot MT4
Marzena Maria Szmit
4.39 (28)
Introducing the FT Gold Robot MT4, your ultimate companion in navigating the intricate world of XAUUSD trading. Developed with precision and powered by cutting-edge algorithms, FT Gold is a forex robot meticulously crafted to optimize your trading performance with   XAUUSD pairs . With its advanced analytical capabilities,   FT Gold Robot   constantly monitors the gold market, identifying key trends, patterns, and price movements with lightning speed. The FT Gold Robot opens 5 positions every da
XG Gold Robot MT4
Marzena Maria Szmit
4.28 (18)
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
Richter mt4
Yvan Musatov
A Richter Expert is a professional market analyst working using a specialized algorithm. By analyzing prices over a specific time period, it determines the strength and amplitude of prices using a unique indicator system based on real data. When the trend and its direction change, the expert closes the current position and opens a new one. The bot's algorithms take into account signals about overbought and oversold markets. Buying occurs when the signal falls below a certain level and then rise
GRain EA MT4
Roman Erokhin
4.25 (4)
Good afternoon. My name is Roman, I am the creator of Gold Rain EA. I have been preparing for its realization for a long time, went through a lot of tests and now I finished the product and went on sale with a live good signal. My motto is to use only live signals, I do not release products without history or lack of real accounts. Now you have the opportunity to try Gold Rain EA in your hands. I will help every client to customize and install EA, from beginner to pro. Tired of complicated EA mo
AI NeuroX EA MT4
Denis Kurnev
5 (5)
AI NeuroX EA is an innovative trading advisor based on advanced artificial intelligence technologies, including neural networks and the Perplexity and GPT-4 platforms. This advisor has a unique ability to analyze and predict the dynamics of financial markets using deep learning and advanced algorithms. Thanks to the intuition that even the most experienced traders would envy, AI NeuroX EA is capable of developing unprecedented trading strategies, ensuring excellent performance. This advisor oper
TopBottomEA
lizhi fu
4.61 (41)
TopBottomEA的优势: 首款支持小本金工作的EA,实盘4年多了;本EA基于波动率自适应机制,一次只下一单,每单带止损,平均每天4单左右,持单时长12小时左右, 使用Dukascopy真实历史数据,以20美元极限本金挑战回测跑完了10年以上。 每间隔三天涨价$100元,涨价过程:  998--> 1098--> 1198 ...... 涨到目标价 $ 4999为止,购买后,EA工作期间,可以和我们的真实观摩账户交易记录比较。 如遇到安装和EA回测问题,请联系我们 ;购买8天后,即可免费领取   Band trend indicator 指标 。 加入公众群组: 点击这里 挑战最小资金 真实账户: https://www.mql5.com/zh/signals/1575208   质量【可靠性】5格,在新冠病毒期间,EA交易中断了一年,服务器因故过期。 支持货币:GBPCAD ,EURSGD  ,GBPCHF,其它品种以后再陆续增加,大家目的是为了赚钱,只选最优,货币不在多在精,让收益更稳定。 支持周期:M1图表 平台推荐:icmarkets平台原始点差账户,fpmarkets
Prop Hunter Pro
Soraya Bahlekeh
Prop Hunter Pro EA 是一款高级专家顾问(EA),包含 6 种精心设计的策略,包括 HFT 和剥头皮 。其中三种策略旨在帮助交易者克服 prop 公司的挑战,而另外三种则用于个人交易账户。 原价   399$  —> 仅限 60% 折扣   $169 (4 个名额 可用 ) 要查看其实时操作,您可以通过以下账户信息登录 MT4 进行检查: 账户号码: 12634479 | 密码:PropHunterPro  | 服务器:ICmarketsSC-Demo01 | 策略:  PassProp1-HFT 主要特点 三种专为 HFT 挑战设计的策略:  三种策略旨在有效地通过 prop 公司的挑战,具有低回撤和止损。 三种个人和资金账户策略: 另外三种策略专为个人和资金账户设计,以实现真实利润。 账户保护:  所有策略都具有最小回撤,并受到止损保护。此外,它们经过优化以符合 prop 公司的通用规则,包括余额目标、最大每日回撤和最大每日交易等功能。 兼容性和使用: 可以通过一次购买费用来通过支持的 16 多家 HFT prop 公司的无限账户。购买前请向我
Ai Hybrid Robot MT4
Mansour Babasafary
5 (3)
Several experts in one expert With this expert, you can use several up-to-date strategies Enhanced with artificial intelligence Can be used in several popular forex currencies Can be used in the most popular forex time frames Without using high-risk strategies Attributes : Can be used in the EURUSD , GBPUSD , USDCHF , AUDUSD , USDCAD , NZDUSD  currency pairs Can be used in M30 , H1 , H4 , D1 time frames Has profit limit and loss limit Without using risky strategies like martingale or hedg
McS Disciplined EA
Shokhjakhon Maksudov
McS Disciplined EA     Support currency: GBPCAD, AUDCAD, NZDCAD, GBPCHF  Time Frame: M1 chart Recomended Broker: EXNESS: RAW SPREAD, IC Market: Raw Spread Whether there is a single by the market decision, maybe a day a single are not, maybe a day top a few days of single volume, the greater the market the more single volume. A perfect EA curve is often up and down fluctuating back and forth to grow up. Only Martin class strategy curve is straight, but at any time will return to zer
ONLY 3 COPIES OUT OF 10 LEFT AT $199! After that, the price will be raised to $299. - REAL SIGNAL: Default Setting:  https://www.mql5.com/en/signals/2253757 (*) IMPORTANT NOTE: To be able to back test the EA or install the EA correctly to be able to trade normally. You will need to allow EA access to the GPT API in addition to installing other news-related websites. For details, please contact me to receive specific installation instructions. Gold Quantum AI is an EA that I have used for a
FXMachine
Alexander Kozachuk
4 (5)
2020 年以来真实账户统计数据 过去 13 年的回测 低回撤策略 多货币算法 与任何经纪商兼容 经过验证的回撤控制系统 自 2020 年起使用真实账户进行交易 : 点击此处 美元兑加元、欧元兑英镑、英镑兑美元、欧元兑美元交易: 点击此处 欧元英镑交易: 点击此处 英镑兑美元交易: 点击此处 FXMachine EA 的完整回测可在此处下载: 点击这里 关于我们: FXMachine 和我们其他机器人的开发和支持是由在外汇领域拥有超过 14 年经验 的专业团队进行的。 在这 14年 中,我们一直在改进我们的发展,并寻找更好、更有效的交易方法。 如果您问我们 我们可以提供的最佳建议是什么 为了确定哪个 EA 好、哪个不好,我们会给出以下答案: 最重要的是查看机器人在真实货币账户上交易的结果 ,看看效果如何 它拥有多年的历史以及 EA 的表现如何。 如果 EA 没有真实账户的统计数据或者只有几个月的时间,那么这个 EA 就不会很好,相信我们,我们确信这一点。 而且这并不重要 它使回测变得多么漂亮或完美,有很多算法和技巧可以让回测生成变得漂亮,但在实际交易中
筛选:
无评论
回复评论
版本 1.6 2024.04.25
- unlocked other intruments: XAUUSD,XAGUSD,OIL,SP500,etc (example settings you'll find in params.txt inside folder tester and MQL4/files)
- XAUUSD,XAGUSD,OIL,SP500,etc added TP,SL by % (not for currencies)
- code improvements, prepared for multitimeframe version
- with GUI takeprofit is saved on chart
- extended dynamic_lots function (fibonacci sequence, martingale), info on chart: (N),(S),(F),(M)
- 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.
版本 1.5 2024.04.11
- fixing a bug when the broker has no limit on the number of orders
- added some error descriptions to the logs
- changed default settings: Built-in is set to SAFE
- LogLvL is set to MT4logs for backtesting
版本 1.4 2024.04.02
- moved the window size change to the indicator
- changed parameter name to Built-in
版本 1.3 2024.03.29
fixed typo in pending orders
版本 1.2 2024.03.24
changed parameter names
版本 1.1 2024.03.23
Fixed statistics window