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

Short Trend Reversal

end year promotion /EA is a part of my Nash Equilibrium/

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);
      }
   }
}


推荐产品
Grid MT4 Recovery
Volodymyr Hrybachov
具有用於“解決”一籃子訂單的自適應系統的網格顧問也可用於恢復賬戶上無利可圖的頭寸。 在線性回歸通道內工作,在多種條件下輸入。該信號使用線性回歸通道的方向、指數移動平均線、平均每日波動率,然後在價格偏離時構建訂單網格。 網格步長是可配置的,如果價格與我們相反,那麼在一定數量的訂單後,賬戶恢復功能(減少回撤)被激活,最遠的無利可圖的訂單通過與有利潤的相反訂單平倉來減少。 因此,EA 幾乎克服了任何無後坐力運動和回撤。該圖表顯示有關利潤的信息並繪製回歸通道本身。 Expert Advisor 還可以伴隨以手動模式開立的交易或由另一個 Expert Advisor 開立的交易 - 它可以解決這些問題並使賬戶受益。 建議存款金額從 $500 起。 時間表 M15 在自動模式下,您必須有 VPS。 MT5 https://www.mql5.com/en/market/product/69117 選項: START_LOT - FROM_BALANCE 的初始手數 - N 個餘額單位 LOT_MULTIPLIER - 訂單網格中的手數乘數; MAX_LOT - 最大手數; PE
Automated strategies are commonly used by institutional investors, banks, and hedge funds due to their ability to handle large volumes of trades with greater precision and efficiency. However, they are also increasingly being adopted by individual traders who use trading platforms that offer automated trading capabilities.  While a profit of 10 percent   may seem small ,   it can add up over time with consistent trading . It is important to note that trading involves risks, and traders should a
The Arrow Scalper
Fawwaz Abdulmantaser Salim Albaker
1 (2)
Dear Friend..  I share with you this simple Expert Adviser .. it is full automatic  this Expert Adviser following the trend of the pair you install on or any stocks or indices , it is works like that: - when the trend on H4 chart show a start of up trend the expert will wait till the 15M & 1H charts show an up trend the EA will open a buy order directly , and do the same for down trend and open a sell order the buy or sell  order lot size and take profit and stop loss will measured manually  by
FREE
Logic Machine
Viktor Barilko
5 (1)
Logic Machine is an automated Forex trading Expert Advisor ideal for EURUSD. The robot analyzes the market and automatically determines entry points based on the identified price fluctuations. The robot uses a dynamic system of profit taking and risk control. To make an entry decision, the robot monitors the formation of divergence and filters the signals taking into account patterns by volume. The robot uses virtual floating Take Profit, Stop Loss. Decisions are made at the opening of the bar.
Greedy Bob EA mw
DMITRII GRIDASOV
4.25 (4)
GREEDY BOB EA - 是一款基于价格行为研究的出色日内交易系统! 这是“设置并忘记”的专家顾问,可为您完成所有交易工作! 6 个 Set_files 可用! 使用“评论”部分中的 Set_files (v25.25) 使用/测试 EA。 交易理念基于著名的强大价格行为模式,该模式与剥头皮技术相结合! GREEDY BOB EA 在欧盟和美国会议期间在 H1 时间范围内工作。 EA 功能: - EA 可以同时在 6 对上运行。 - 根据账户余额自动计算手数。 - EA 默认内置复利资金管理。 - SL 和 TP 是动态的 - 它们可以默认适应市场波动。 - 每笔交易都有经纪商看不到的 SL 和 TP。 - 智能过滤系统:趋势过滤器、振荡器过滤器、工作日过滤器、工作时间过滤器、价差过滤器。 - 内置 SPREAD 显示。 - 运行机器人所需的最低账户余额仅为 100 美元。 - 账户杠杆:1:30 至 1:2000 范围内任意。 - 交易对:EURUSD、NZDUSD、USDCHF、AUDUSD、GBPAUD、GBPCAD。 - 时间范围:H1。 - 操作时间:EA
MARKET MAKER EXPERT is an customizable advanced, fully automated Grid Trading Expert Advisor developed to trade on MULTIPAIR MODE ( EURUSD,USDJPY,USDCHF,USDCAD,EURCHF ), by spreading out risks. Expanding Grid is its speciality. It focuses on opening a large number of orders. The currency pairs have been chosen carefully to run this system. Once it analyze the market, it does a hedge order immediately, (so margin levels are not affected on the initial trade) Starts grid when the price move aga
CN Hamster CN Hamster是一个完全自动化的EA,不使用马丁,加仓策略,基于BOLL和zigzag的指标编写的EA。 一般建议 最低存款额为100美元时,最好设置lots为0.01,同时设置maxopenorder=1。默认设置为格林威治标准时间+2。使用执行良好且低点差的经纪商。建议仅使用价差窄且市场执行力强的ECN或STP账户。最好用一个低ping的VPS交易,ping值越低越好。 它可以在多种货币中工作,而不会相互影响。它在欧元兑美元M5或英镑兑美元M5中工作得更好。此外,您还可以使用任何货币对。 输入参数 该产品同时适用于4位和5位引号。在输入参数中以小数点后5位的形式指定值,它将自动重新计算所有值的小数点后5位。 SL:止损点数 tp:止盈点数 Cls:低止盈点,当closeby设置为true时这个起作用,盈利达到Cls设置的点数时将自动平仓。 closeby:启用或停止低盈利点 lots:订单大小 OpenHour:开始工作时间 CloseHour:结束工作时间 Slippage:滑动点,当滑动点超过此值时,不要打开订单。 magic:订单识别号,
Piramida Grid
Iurii Tokman
Piramida Grid   Piramida Grid - 进入市场,顾问分析 斜率方向线 指标的读数。当市场反转时改变订单网格。处理挂单 BUYSTOP 和 SELLSTOP。使用损失平均系统来控制未平仓交易的余额及其无损失的输出。自动检测 6 位和 5 位数字。 顾问设置: 周期 = 32; - 斜坡方向线指示器的周期 过滤器编号 = 2; - 设置坡度方向线指示器的过滤器 ma_method = 3; - 平滑斜率方向线指标读数的方法 应用价格 = 0; - 用于计算斜率方向线指标的价格 TF = 15; - 斜率方向线指标的图表周期 止损 = 0; - 限制点数的损失水平 Order_Step = 20; - 以点为单位的网格订单之间的距离 Count_Order = 5; - 网格中的订单数量 Lock_Pips = 22; - 以点为单位打开平均订单的距离 克夫 = 2; - 乘以大量平均订单的系数 利润 = 10; - 以点为单位的利润水平 手数 = 0.1; - 起始手数 MN = 100; - 顾问订单的幻数 UseSound = True; - 启用或禁用顾问
Complete Scalper
Pavel Yakovlev
3.5 (4)
Complete Scalper is a scalper EA that combines the strategies of three Expert Advisors - Yogi EA, Scalper GBP and Cross Scalper . The Expert Advisor does not use hedging, martingale, grid strategies, arbitrage, etc. Most of the settings are already integrated into the EA code. All you need to do is to select the currency pair, adjust the WET (Western European Time) time zone in the EA parameters and to start trading. Working timeframe - M15. Advantages of Complete Scalper Trading strategy for t
| 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
CandleMomentum FX
Mazhar Ul Hassan Noorul Hassan Noor Ul Hassan
CandleMomentum FX – Precision Candlestick & Momentum Trading Bot Previously priced at $100 per month, all my bots are now available for a limited-time promotion at just $49 per month. I am new to this platform, which is why I have set a lower price for now. This special sale is solely for you to test my bots in a live trading environment before committing long-term. Overview CandleMomentum FX is a high-performance forex trading bot designed to analyze candlestick patterns and momentum shifts f
Live grid
Aleksej Shcherbak
Dedicated to grid trading fans. For a long period I was trading using Manual Trader by Ramil Minniakmetov. I liked this program but soon I came up with an idea to improve the program by making the grid vivid and adding something mine. 1) I taught the program to take swaps and commission into account. 2) If the market allows, the program trails a gain by moving Profit. 3) The program spends a part of the gain partially killing the lower order and moving to a smaller lot, preventing it from going
The algorithm of the adviser's work: When the Expert Advisor is launched at a specified distance from the price (first_step), BuyStop and SellStop orders are placed. Further, depending on which way the price went, one of them becomes market, and the other begins to crawl after the price. When the price rolls back, it also becomes market. If we have reached a set profit in some direction, the order is closed and a creeping pending order of the same direction is placed again. If the profit is no
High Freq Grid Scalper
Letsekang Bruno Sekhosana
This E.A is designed to wait for the perfect opportunity to get in the market, take a few trades (low risk) and get out. There is an option to Cut Loss at specific percentage of balance, this should be set to a max of 1% since we scalping. Very cautious EA, can go up to a few days without taking a trade. This should not alarm you, it simply means there currently is no opportunity available. Mainly designed for low spread brokers. Tested Pairs and their settings: EURUSD M1 : Jan 2022 - Dec 2022
Night Trader EURUSD
Ugur Oezcan
4.21 (29)
The EA can trade multiple currencies. Please check our signals ( https://www.mql5.com/en/users/ugur-edin/seller ) for detailed information. No grid or martingale! No manual configuration or adjustment needed! Every trade is protected by stop loss. This Expert Advisor only trades for a short time frame at night, during the ending of the New York session. It uses low volatility moments and enters trades based on indicators. It then manages those trades with dynamic stop losses and take profits als
Matrix Arrow EA MT4
Juvenille Emperor Limited
5 (8)
Matrix Arrow EA MT4 是一款独特的智能交易系统,可以通过图表上的交易面板手动或 100% 自动交易 Matrix Arrow Indicator 的 MT4 信号。 Matrix Arrow Indicator MT4 将在其早期阶段确定当前趋势,从多达 10 个标准指标中收集信息和数据,它们是: 平均定向运动指数 (ADX) 商品渠道指数 (CCI) 经典 Heiken Ashi 蜡烛 移动平均线 移动平均收敛散度 (MACD) 相对活力指数 (RVI) 相对强弱指数 (RSI) 抛物线SAR 随机振荡器 威廉姆斯的百分比范围 当所有指标给出有效的买入或卖出信号时,相应的箭头将打印在图表上,在下一个蜡烛/柱线的开盘时表示强劲的上升趋势/下降趋势。用户可以选择使用哪些指标,并可以单独调整每个指标的参数。使用 Matrix Arrow EA MT4 ,您可以直接从图表上的交易面板手动交易 Matrix Arrow Indicator MT4 信号,或使用 100% 算法交易选项 100% 自动交易! 注意力:   如果您想用您的   Matrix Arrow EA M
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
News Scalping Executor is an advisor which helps to trade news with high impact and huge volatility. This advisor helps to create two opposite orders with risk management. It moves automatically stop loss level to avoid losses as much as possible by using many different algorithms. It helps to avoid trading the news if spread suddenly becomes very huge. To be profitable with this type of trading you should choose the most volatile types of news such as: GDP, CPI, Unemployment Claims, Interest
Synergy MT4
Ervand Oganesyan
现场表现 : AUDUSD 快速启动 - 在 AUDUSD、EURUSD 或任何外汇主要货币对的 M5 图表上设置 EA。 - 设定舒适的风险水平。 - 确保时区设置正确。大多数经纪商的默认设置都是正确的。 - 将其余设置保留为默认设置,EA 即可进行交易。 可定制的交易逻辑 - 跟踪特定货币的日内价格行为,并根据这些行为的性质进行交易,预期价格将回归到初始水平。 - 用户可以选择 EA 是否应该交易短期、中期或长期价格行为。 - 默认交易频率为每周约 2 次。用户可以增加或减少频率至合适的水平。 - EA 将在任何选定场景中使用最佳优化设置。 便于使用 - 无需复杂设置。无需持续监控。设置后即可开始无缝 24/7 交易。 - 任何经纪商,任何账户类型。低点差账户类型是首选,但绝对不是关键。 - 不需要太多 RAM。可在最便宜的 VPS 上运行。 灵活的风险设置 - 每次仅可进行一笔交易。 - 每笔交易均设有止损,这使得默认设置的存款要求降至最低。即使是 100 美元,对于安全的最小手数交易来说也相当不错。 - 将 “最大手数,初始手数的倍数” 设置为 1,以实现持续风险交易
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
Black Arbitrage MT4
Ruslan Pishun
2.1 (10)
Attention!!! Do not try to test the EA in the Tester - it is simply impossible, because the EA opens positions on different 26 instruments. The tester is able to test only one pair. The EA uses 6 strategies. Trading is carried out in a pair of several currencies at the same time, for example, the EA opens orders simultaneously for two or more pairs and closes when a certain profit is reached. The EA trades many major currency pairs.  Monitoring:   https://www.mql5.com/ru/signals/author/profi_m
Grid On MACD
Evgeniy Zhdan
3 (2)
The Expert Advisor works according to the pattern of grid placement of limit orders both according to the trend and against the trend. The trend direction is determined according to the indications of the standard MACD indicator. MACD can be configured for any timeframe available in MT4. There is an opportunity to choose the direction of the order removal - according to the trend or against the trend. The Expert Advisor has flexible settings that allow you to tailor trading for any trading instr
GRV Grid
Roman Gergert
GRV Grid expert Advisor is a regular grid trader trading in both directions. The peculiarity of this grid is that subsequent orders in the grid are opened not only upon reaching the set step but also on the basis of the signal, which allows not to accumulate a lot of orders that can very quickly drain the entire Deposit. The EA makes a decision based on the signals from THE mA indicator and the trend filter. The EA trades almost non-stop, i.e. there are almost always open orders, so for stable
AEC Scalper
Gennady Kuznetsov
AEC Scalper I bring to your attention the AEC Scalper trading Advisor. The adviser works from 20:00 to 22:00 GMT. For testing in the strategy tester, the trading time should be set from 23:00 to 1:00. The EA works well on the following currency pairs: AUDCAD, AUDCHF, AUDJPY, CADCHF, CADJPY, EURAUD, EURCAD, EURCHF, EURGBP, EURUSD, GBPAUD, GBPCAD, GBPUSD  M5 Timeframe. Minimum deposit from $100 Trading is conducted on ECN accounts with a low spread. Leverage from 1:100 Trading is conducted in a
ImpulsVolume
IGOR KIRIANEN
This EA trades both with a stop loss, so it can trade without it, with an increase in the lot (martingale) and without an increase in the lot (without a martingale). The advisor trades in the continuation of the impulse. It has a number of filtering indicators. This Expert Advisor is not afraid of large spreads (there is protection), it also has protection from the maximum lot and has trading from the percentage of the deposit. There are two types of Martingale (by adding from the original lot,
Classic Lock MT4
Oleksandr Vlasenko
5 (1)
Classic Lock is a trading system that combines several different algorithms: both for opening a transaction and for its support. The system uses averaging, hedging, and in its essence, is a breakout strategy that trades with the trend. The strategy can trade on almost any instrument: gold, oil, currency pairs, etc. Good for trading in volatile markets. Features: •    The Expert Advisor can be attached to ANY TIMEFRAME, since the settings already contain the trading parameter for the required tim
Elastic Grid
Aliaksandr Charkes
4.83 (6)
Elastic Grid MT4 is a multi-functional grid Expert Advisor, designed for full or partial automation of various ideas related to grid trading. The EA trades on any timeframe and symbol. It can also trade several symbols with any amount of decimal places. It does not interfere with manual trading and other EAs' operation or any indicators. It allows to adjust its settings on the fly, works only with its own orders displaying all necessary data on them when needed, and for some situations it can be
Pacific Shark
Mohammed Mahajna
4 (1)
PACIFIC SHARK Robot is automated trading system based on Efficiency Ratio calculation  --No Martingale or Grid or other dangerous methods are used-- Live signal :  https://www.mql5.com/en/signals/1090996 in order to test and live trade 1 : test only on GBP/USD 2 : use only a daily time frame  (D1) 3: GMT Data Time = adjust shift hour EA input   ||| in (BACKTEST) based on your Historical data GMT time  ||| on (LIVE) based on your broker GMT ||| 4 DST : None we advice to test with Tick Data Sui
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+
Ichinoku Japan EA
Taman Talappetsakun
The Ichimoku Japan EA is a trading algorithm that uses two indicators, EMA and Ichimoku, to make decisions. While it was initially created for trading USD/JPY, it can also be used for EUR/USD and GBP/USD. The risk ratio for this EA is 1:2, meaning that the potential reward is twice the risk. The stop loss, take profit levels, and Lot size are determined by market volatility. Trading statistics List Details Initial Deposit $100 (minimum) but $1,000 is   recomment Currency Pair USD/JPY, EUR/USD, G
该产品的买家也购买
Gold Scalping AI
Ho Tuan Thang
5 (6)
10 份中仅剩 3 份,售价 399 美元! 此后,价格将上涨至 499 美元。 - 真实信号(真实信号有效期超过 6 个月): 默认设置: https://www.mql5.com/en/signals/2276213 Gold Scalping AI 是一款使用人工智能技术的 EA,分析许多指标的数据。从那里,EA 将有最好的选择来进入订单。黄金 Scalping   AI 最大的不同在于,EA 可以比其他 EA 更好地控制风险:回报率。这要归功于一套控制切入点和管理未结订单的工具。  EA 对所有订单使用止损,EA 不使用任何危险的交易方法:没有网格,没有马丁格尔,......黄金剥头皮 AI 是我使用过的 EA 之一。多年来一直在基金管理账户中使用和交易。我正式发布了最优化的 EA 版本。交易时间框架对 EA 来说并不重要。不过,我还是建议保留时间范围 H1,这样 EA 就可以从 H1 开始的所有时间范围获取数据作为参数。 限价 $299 仅限前 10 次销售。10 次销售后,价格将上涨 +100 美元。黄金剥头皮 AI 的最终价格为 1999 美元。 外汇 EA 交易频道:
Scalping Robot MT4
Marzena Maria Szmit
5 (7)
Introducing our advanced Scalping Forex Robot. The scalping algorithm is built to spot high-probability entry and exit points, ensuring that every trade is executed with the highest chance of success within the   M1 timeframe . The best pair to use with the Scalping Robot is   XAUUSD .  This robot is perfect for traders who prefer the   scalping method   and want to take advantage of rapid price movements without having to manually monitor the charts. It is suitable for both beginners looking fo
GbpUsd Robot MT4
Marzena Maria Szmit
5 (42)
The GBPUSD Robot MT4 is an advanced automated trading system meticulously designed for the specific dynamics of the  GBP/USD  currency pair. Utilizing advanced technical analysis, the robot assesses historical and real-time data to  identify potential trends , key support and resistance levels, and other relevant market signals specific to GBP/USD. The Robot opens positions  every day,  from Monday to Friday, and  all positions are secured  with Take Profit, Stop Loss, Trailing Stop, Break-Even
Ai General EA MT4
Indra Maulana
5 (1)
43% off for 48 hours only (Original price: $1,595) 50% bonus by purchasing this Robot, Contact us "after purchase" to receive the bonus A fully automatic expert Designed and produced 100% by artificial intelligence, with the world's most advanced technology All trades have profit and loss limits, with the best and least risky market strategy, without using dangerous strategies such as Martingale and hedges, etc. A specialist who has been trained by artificial intelligence for years to correctl
Bitcoin Robot MT4
Marzena Maria Szmit
4.81 (42)
The Bitcoin Robot  MT4 is engineered to execute Bitcoin trades with unparalleled   efficiency and precision . Developed by a team of experienced traders and developers, our   Bitcoin Robot   employs a sophisticated algorithmic approach (price action, trend as well as two personalized indicators) to analyze market and execute trades swiftly with   M5 timeframe , ensuring that you never miss out on lucrative opportunities.   No grid, no martingale, no hedging,   EA only open one position at the sa
AI Golden Jet Fighter GTX MT4
Andrei Nazarets
4.29 (7)
AI Golden Jet Fighter GTX     MT4 是 Meta Trader 4 平台上一款简单而高效的黄金交易专家顾问 (EA)。该 EA 利用神经网络,专为黄金市场 (XAU/USD) 的剥头皮交易而设计。AI Golden Jet Fighter GTX 的主要策略侧重于识别小幅价格​​波动并开仓以在短时间内获利。EA 实时分析市场状况,并自动执行具有预定义止损和止盈水平的交易。它还支持追踪止损功能,允许交易者在市场有利时锁定利润。为确保准确性,EA 使用价差过滤器来避免在不利条件下交易,并使用滑点保护机制来精确执行订单。AI Golden Jet Fighter GTX 包含风险管理功能,使交易者能够将风险水平设置为其账户余额的百分比,使其能够适应不同的交易方式。EA 利用 NN 算法实时分析市场数据,适应不断变化的条件,并为交易的进入和退出提供高度准确的信号。该 EA 易于使用且完全自动化,只需极少的设置,因此从初学者到专业人士,各个级别的交易者都可以使用它,无需持续监控市场。                              接下来的 10 位买
Forex GOLD Investor
Lachezar Krastev
4.48 (40)
WINTER Mega SALE! --> Buy Forex GOLD Investor with -60% OFF and get a BONUS EA -> Pips Master PRO - with amazing results! NOTE: Promo price: $197 (Regular Price: $497) - The offer ends soon! Live Signal Account:   https://www.mql5.com/en/signals/2276118 Forex GOLD Investor is one of the best expert advisors developed to trade on GOLD(XAUUSD) in the forex market. Forex GOLD Investor consists of 2 trading systems . The first one is based on scalping trading strategy and the second system has time
Quantum Emperor MT4
Bogdan Ion Puscasu
4.84 (154)
介绍     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 Wizard  或 Quantum StarMan 或 Quantum Gold Emperor !*** 私信询问更多详情 新版直播信号 V5:   点击此处 MT5版本:  点击这里 量子 EA 通道:       点击这里 每购买 10 件,价格将增加 50 美元。最终价格为 1999 美元 量子皇帝EA     采用独特的策略,将单个交易连续拆分为六个较小的交易。这意味着 EA 每次执行交易时,都会自动将其分为 6 个较小的头寸。 量子皇帝EA  
Neon Trade MT4
Evgeniy Ilin
5 (2)
综合方法的精髓,其主要目标是为交易员实现长期和现实的收益,同时将风险降至最低。基础是结合了高级交易概念和机器学习,这两者能够有效地相互增强。另一个独特之处在于,系统无需进行优化,因为这个功能已经交给了我的服务器。最新的设置每天都会在我们的 Telegram 频道上发布,不断保持系统的高度相关性。 我们的 Telegram 社区 贸易监控 !!! MetaTrader 5 的版本 !!! MetaTrader 4 的免费(简化)版本  安装和操作指南 特别想强调一下, 为什么要买这个顾问? 很多人可能觉得免费版本几乎完全符合原版。但事实并非如此。免费版本只有演示功能,所有的设置都需要你自己选择,从我将定期为您发布的那些选择。静态设置很快就会过时。意思是,在付费版本中,你可以连接到不同的信号,选择你喜欢的。不久的将来这样的信号会越来越多。我会在有能力的时候增加它们。信号只不过是一种设置集,选择工作由我来完成。因此,通过这种方式,你完全摆脱了组建投资组合和更新它们的日常工作。选择一个已经准备好的投资组合(信号)或使用默认设置,其中包括我认为目前最稳定的投资组合。因此, 对你来说,使用 AP
Aura Neuron MT4
Stanislav Tomilov
5 (3)
Aura Neuron 是一款独特的 EA 交易系统,延续了 Aura 系列交易系统。通过利用先进的神经网络和尖端的经典交易策略,Aura Neuron 提供了一种具有出色潜在性能的创新方法。这款 EA 交易系统完全自动化,旨在交易 EURUSD 和 XAUUSD (GOLD) 等货币对。从 1999 年到 2023 年,它在这些货币对中表现出了一致的稳定性。该系统避免了危险的资金管理技术,例如马丁格尔、网格或剥头皮,使其适用于任何经纪商条件。Aura Neuron 由多层感知器 (MLP) 神经网络驱动,利用它来预测市场趋势和走势。MLP 是一种前馈人工神经网络 (ANN),通常被称为“原始”神经网络,尤其是当它们由单个隐藏层组成时。MLP 包括三个基本层:输入层、隐藏层和输出层。除输入节点外,每个神经元都使用非线性激活函数。该网络使用称为反向传播的监督学习技术进行训练。 MLP 的多层结构和非线性激活使其有别于线性感知器,使其能够识别数据中非线性可分的模式。通过其复杂的 NN 智能,Aura Neuron 能够识别模式并适应不断变化的市场条件,例如汇率或交易者行为的变化。其处理复杂
Diamond PRO
Fanur Galamov
4.83 (42)
1 copу left for $199 Tomorrow price  --> $299 Diamond PRO is enhanced powerful version of Diamond for advanced traders. Pro version includes optimized cores, new impoved entry points filters, new multistage profit closure algorithm and сontains number of external control parameter that allows build and fine tune own tradind decisions and algorithms. The system provides more accurate market entries, analyzes and filters upcoming economic news, contains spread protection and an advanced position
Supply Demand EA ProBot
Georgios Kalomoiropoulos
5 (8)
基于 供需 原则的 全自动 EA。第一个提供完全自动化的 供需 EA 。 现在 交易 变得轻松 ,完全控制您的交易策略 通过用户友好的图形交易面板。 您将获得包含超过 15,000 行代码的超高质量 算法交易 软件。 供应需求 EA ProBot 手册 交易“Prop Firms Challenges”和通过所有阶段成为合格交易员的最佳方式。 所有交易均自动进行和管理。只需 选择您的输入 ,然后坐下来,观察您的利润增长。 面板输入参数: 选择 交易方向 (买入或卖出) 选择您想要进行交易的 时间范围 选择您想要交易 的区域类型 (宽、中、窄、超窄) 选择 3 种资金管理 选项 选择 EA 在 盈利 或 亏损 交易 次数后停止 选择 基于风险 或 基于 ATR 的 TP 和 SL 比率 选择 看涨通道 或 看跌通道 内的交易区域 选择 上限 和 下限 范围 如果您只想在一天中的特定时段进行交易,请选择 时间范围 多种 追踪止损 和 盈亏平衡 功能可供选择 您最多可以查看三个更高时间范围的区域。因此,如果您处于 30 分钟时间范围内,则可以激活 1 小时、4 小时和每日供应
The Infinity EA MT4
Abhimanyu Hans
3.48 (25)
ChatGPT Turbo 人工智能驱动技术 Infinity EA 是一款专为 GBPUSD 和 XAUUSD 设计的高级交易专家顾问。它专注于安全性、持续回报和无限盈利能力。与许多其他依赖高风险策略(如马丁格尔或网格交易)的 EA 不同。Infinity EA 采用基于神经网络的规范、有利可图的剥头皮策略,该神经网络嵌入机器学习、数据分析 AI 技术,由最新的 ChatGPT 版本提供,可让您的整体交易体验卓越不凡。 加入我们拥有超过 6000 名成员的 MQL5 社区, 与其他交易者建立联系。及时了解最新的产品更新、提示和独家内容。 MT5 版本 如何设置 Infinity EA 特征 Infinity EA 利用人工智能驱动的剥头皮策略。 该 EA 与 ChatGPT-4 Turbo 集成,可进行实时数据分析。 Infinity EA 利用机器学习不断从市场数据中学习。 风险管理是 Infinity EA 的核心,具有固定止损和获利设置等功能,可以保护资本并锁定利润。 该 EA 还进行高级蜡烛图分析,以识别高质量的交易条目。 Infinity EA 与道具公司完全兼容。 促销
Boring Pips MT4
Thi Thu Ha Hoang
4.73 (15)
你是否曾 经想过为什么大多数专家顾问在实盘交易中并不有效,尽管它们在回测中表现完美? 最有可能的答案是 过拟合。许多专家顾问被创建为对现有的历史数据进行 “ 学 习 ” 和完美适 应,但由于构建模型的泛化能力不足,它们无法预测未来。 一些开 发者可能根本不知道过拟合的存在,或者他们知道但没有办法防止它。其他人则将其作为美化回测结果的工具,他们添加了数十个输入参数,而不考虑统计学意义,使交易策略过度依赖历史数据,并试图说服他人他们的专家顾问未来能够实现类似的表现。 如果你 对这个迷人的主题感兴趣,并想更深入地了解过拟合,请参考我的这些文章: 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
CyNera MT4
Svetlana Pawlowna Grosshans
2.8 (15)
CyNera:您的交易,我们的技术 信号 >400%:  CyNera 信号 >500%: CyNera Turbo 手册和设置文件:购买后请联系我以获取手册和设置文件 价格: 价格根据售出的许可证数量上涨 可用副本: 4 交易黄金,市场上最波动的工具之一,需要精确的操作、深入的分析和强有力的风险管理。CyNera 专家顾问将这些要素无缝集成到一个复杂的系统中,专为优化黄金交易而设计。CyNera 的先进策略和技术旨在帮助经验丰富的交易员和新手应对黄金交易所带来的独特挑战和机遇。 有了 CyNera,您就拥有了一套可靠的解决方案,专门针对黄金市场的复杂性。它结合了自适应、智能策略以及多时间框架分析、自动交易调整和精确的风险管理等高级功能。正是这种适应性,使得 CyNera 成为一种多功能工具,能够应对快速的市场变化,同时确保您的资本在长期内得到保护。 符号 XAUUSD (黄金) 时间周期 M30   资本 最少 100 美元 经纪商 任何经纪商 账户类型 任何,较低点差优先 杠杆 从 1:20 起 VPS 首选,但不是必须,也可以使用 MQL VPS CyNera 的核心力量
Gold ISIS MT4
Lo Thi Mai Loan
5 (2)
EA Gold Isis – 一个安全且高效的黄金交易解决方案   启动促销! 当前价格仅剩 3 份!  下一价格:$458 最终价格:$1998  实时信号 MT5版本 你好!我是EA Gold Isis,是Diamond Forex Group家族中的第二款EA,专为黄金交易(XAU/USD)设计。凭借卓越的功能和安全优先的理念,我承诺为交易者提供可持续且高效的黄金交易体验。   EA Gold Isis 有何独特之处?   - 动态止损(SL):EA 根据最近K线的价格范围设置止损(SL)。这一功能确保SL能够灵活适应市场变化,更有效地保护您的账户。   - 多样化交易策略:EA配备了3种交易策略,每种策略最多可同时开启3个订单,总计最多可进行9笔交易。   - 灵活的移动止盈:提供利用移动止盈锁定利润的功能。您可以根据个人偏好完全自定义该功能。   - 安全至上:每笔交易均设置了预设止损(SL),以保障您的账户免受意外风险的侵害。   EA Gold Isis 的工作原理   1. 无风险策略:      - 不使用马丁策略或网格交易。      - 不执行
AW Recovery EA
AW Trading Software Limited
4.35 (79)
智能交易系统是一个旨在恢复无利可图头寸的系统。 作者的算法锁定了一个亏损仓位,将其拆分为多个独立的部分,并分别平仓。简单的设置、在回撤的情况下延迟启动、锁定、禁用其他 EA 交易、使用趋势过滤进行平均以及部分关闭亏损头寸都内置在一个工具中。 与仅在整个组中关闭订单的网格策略相比,使用部分关闭损失可以让您以较低的存款负载减少损失,从而确保更安全地处理损失。 如何恢复订单: 1 EA 关闭所选工具的其他窗口以关闭无利可图的 EA(可选)。 2 EA 重置所有已处理订单的止盈和止损水平,并删除具有相应标识符的挂单。 3 EA 关闭所有已处理的盈利订单,以便使用其利润来弥补部分非盈利订单并减少总头寸量(可选)。 4 EA 通过打开锁定订单来锁定亏损头寸。 5 然后,通过打开恢复订单,它开始通过部分关闭不盈利的订单来减少损失。 6 当部分关闭时,算法首先恢复定位最不成功的订单,或者最接近盈利的无利润订单。每个无利可图的订单都分为许多部分,顾问分别关闭每个部分。恢复订单以小量开仓,以免大幅增加入金负担 包含注释、设置和测试说明的完整输入设置列表  ->   这里  MT5 版本 ->   这里
HFT Prop Firm EA
Dilwyn Tng
4.96 (667)
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 条五星好
Dark Algo
Marco Solito
4.77 (56)
Last copy at 399$ -> next price 499$ Dark Algo  is a fully automatic Expert Advisor for Scalping Trading on Eurusd . This Expert Advisor is based on the latest generation of algorithm and is highly customizable to suit your trading needs.  If you   Buy this Expert   Advisor you can   write a feedback   at market and   get   a second EA for   Free , for More info contact me The basic strategy of this EA is built on a sophisticated algorithm  that allows it to identify and follow market trends . T
AI Gen XII MT4
Denis Kurnev
3.56 (45)
The   AI Gen ProX   Expert Advisor is a powerful solution based on advanced market analysis and data processing technologies. Utilizing cutting-edge algorithms for time series analysis and complex mathematical models, it ensures high accuracy in forecasts and automates trading processes. The EA is designed to combine performance and reliability, making it an effective tool for trading.   Real Time Signal GEN PRoX:  https://www.mql5.com/ru/signals/2283186 The price of the advisor will increase si
Aurum AI mt4
Leonid Arkhipov
4.63 (27)
Aurum AI – 用于黄金交易 (XAU/USD) 的人工智能力量 感受科技在交易中的全部潜力! Aurum AI 是一款突破性的专家顾问,专为黄金市场的稳定和安全交易而设计。它结合了人工智能的力量、精确的趋势分析和严格的风险控制,让每一笔交易都最大限度地发挥效益。 促销 Discount - 50%. 3 copies available at a price of $225 高风险实时信号 (最大回撤可达 20%) Aurum AI 奖励 – 独家 GoldPrime AI 顾问,基于分形系统运行! (查看测试结果) 购买 Aurum AI 即可免费获得 GoldPrime AI – 市场上独一无二的顾问! 仅限 Aurum AI 的购买者。 如何领取奖励? 购买后请与我联系,我将赠送您的奖励。 Aurum AI 的主要优势: 分析全球趋势: 严格按照趋势方向开仓交易。 安全策略: 排除马丁格尔、网格或锁单等激进策略。 固定止损: 明确的止损和止盈,没有复杂的止损参数。 简单安装: 使用基本设置即可运行,仅需选择交易量或激活自动风险计算。 适合 Prop 公司: 符合严格的
EvoTrade EA MT4
Dolores Martin Munoz
5 (1)
EvoTrade:市场上首个自学习交易系统 让我为您介绍EvoTrade——一款结合了前沿计算机视觉和数据分析技术的独特交易顾问。这是市场上首个自学习交易系统,能够实时运行。EvoTrade会分析市场情况,调整策略,并动态适应变化,在任何环境下都能提供卓越的精准度。 EvoTrade使用先进的神经网络技术,包括用于分析时间依赖性的长短期记忆网络(LSTM)和门控循环单元(GRU),用于识别复杂市场模式的卷积神经网络(CNN),以及用于实时策略调整的强化学习算法,例如近端策略优化(PPO)和深度Q学习(DQL)。这些技术使EvoTrade能够发现隐藏的市场信号,并精确调整其操作以适应当前市场动态。 在每次交易后,EvoTrade会重新评估其方法,自动更新止盈(TP)和止损(SL)等参数。系统的使命不仅是对变化做出反应,还要不断优化其交易策略,确保在任何市场条件下都能保持相关性和高效性。 为什么选择EVOTRADE交易顾问? 实时信号 : https ://www .mql5 .com /en /signals /2281752 交易顾问的价格将与其实时信号的增长成正比迅速上升 EvoT
AlphaFlow EA MT4
Dolores Martin Munoz
Alpha Flow EA:将您的交易提升到新高度 介绍   Alpha Flow EA   —— 一款先进的交易顾问,通过战略精准性、适应性和深度市场分析,彻底改变您的交易体验。 Alpha Flow EA   基于专有交易算法和深度市场洞察,能够在各种交易环境中表现出色,帮助您始终保持领先市场趋势的优势。 Alpha Flow EA 实时交易信号 XAUUSD 信号:   查看实时信号 EURUSD 信号:   查看实时信号 US 500 信号:   查看实时信号 Alpha Flow EA 的独特之处 先进的市场分析 Alpha Flow EA   采用多层次的分析方法,将传统的技术分析与现代的量化策略相结合。它的高级模式识别算法能够发现新兴趋势,提供具有战略意义和时效性的交易机会。 多样化的交易策略 此顾问具备多种预设策略,能够自动适应当前的市场状况。与依赖固定规则的系统不同, Alpha Flow EA   动态选择最佳策略,在不同的市场情景中提升表现。 超高速交易执行 借助高频交易 (HFT) 技术, Alpha Flow EA   以惊人的速度执行交易。这不仅能将滑点降至
FX EurUsd Robot MT4
Marzena Maria Szmit
5 (13)
The EUR/USD Multi-Strategy Trading Robot MT4 is an advanced tool designed to optimize trading by combining 3 key systems:   daily trading, volume analysis, and Fibonacci   retracement levels. This robot works by integrating these different approaches to create a more dynamic and adaptable strategy for trading the   EUR/USD pair . EA adapts to different market conditions, this makes it an ideal solution for traders looking to enhance their trading strategy with a powerful, multi-faceted approach.
Stock Indexes EA MT4
Marzena Maria Szmit
5 (1)
Stock Indexes EA is a sophisticated trading robot meticulously engineered to capitalize on the dynamics of the US30 . This expert advisor employs advanced algorithms and technical indicators to analyze market trends, identify potential entry and exit points, and execute trades with precision. A news filter has also been added to the robot, which prevents it from opening a position during important economic news , minimizing the risk. In robot, you can also specify the days and hours when the EA
Exp4 AI Sniper for MT4
Vladislav Andruschenko
5 (2)
我们的团队很高兴推出交易机器人,这是 MetaTrader 终端的尖端智能交易专家顾问。 AI Sniper 是一款智能的、自我优化的交易机器人,专为   MT4   终端设计。 AI Sniper 利用复杂的算法和尖端的交易方法,体现了交易优化的卓越性。 我们的团队在交易所和股票市场拥有超过 15 年的丰富经验,精心设计了此专家顾问,融合了创新的策略管理功能、智能功能和直观的图形界面。 AI Sniper 的每个方面都经过精心设计,并由经过严格测试的程序代码支持。 其先进的计算智能通过复杂的技术分析进行运作,每次价格变动都会进行数千次数学计算。 这使得 AI Sniper 能够精确定位交易的最佳入场点和出场点,无论是在看涨还是看跌的市场趋势中,确保精确执行买入或卖出订单。 我们的愿景、使命和战略始终致力于为交易者提供无与伦比的成功工具。 AI Sniper 将多种交易策略功能融合到一个单一的、全面的交易机器人中,旨在提升您的交易能力。 我们的首要目标是您的成功。 我们邀请您下载、测试并亲眼见证 AI Sniper 的变革能力。 今天就体验交易的未来。 MT5版本 Full Des
Quantum Gold Emperor MT4
Bogdan Ion Puscasu
4.82 (11)
介绍     Quantum GoldEmperor EA 是一款突破性的 MQL5 专家顾问,它正在改变您交易著名的 XAUUSD(黄金)货币对的方式!由拥有超过13年交易经验的经验丰富的交易者团队开发。 重要的! 购买后请给我发私信以接收安装手册和设置说明。 ***购买量子金皇EA,即可免费获得量子贸易EA!*** 详情请私聊 实时信号: 点击这里 MT5版本:   点击这里 量子 EA 通道:       点击这里 在先进算法的支持下,我们的 EA 交易能够利用每一个稍纵即逝的机会,确保最佳的进场和出场。 实时适应性:     黄金市场的动态性质需要快速调整。我们的顾问无缝适应不断变化的市场条件,让您保持领先地位。 风险管理掌握:     通过我们复杂的风险管理协议将风险降至最低。您的交易资金通过战略止损和止盈机制得到保障: 量子金皇 EA 采用独特的策略,将单个交易连续拆分为四个较小的交易。这意味着 EA 每次执行交易时,都会自动将其分为四个较小的头寸。 量子金皇 EA 因其处理亏损交易的卓越方法而在其他专家顾问中脱颖而出。与传统方法单纯依靠止损单来限制
BeiDou Trend
Xian Qin Ceng
Beidou Trend EA,是一款大盈亏比的趋势EA。 突破交易是一种很古老的方法,1900年代,自利弗莫尔开始,这种方法就已经被广泛使用,至今已经120多年,这种方法始终有效,尤其适合波动率较高的XAUUSD、Gold。 我的投资生涯初期一直在使用突破这种方法在XAUUSD上获取利润,我熟练这种方法,古老、简单、有效。Beidou Trend EA,以Rising Sun Gold EA作为基础而改进,30M具有4种Model,同时30MModel可以使用在60M图表上,你又可以获得另外4种Model。60M具有3种Model,也可以拓展使用在H4上,不过我认为这不是必要的。因此它至少有7种Model,并且可以拓展为11种Model以及更多。不过我通常只使用默认的7种Model。 Live signal . 如果你对于EA设置有不明白的地方,你可以在这里讨论:   Click here   加入公众讨论群。 Beidou Trend EA 的特点: 所有参数已经设置好,使用简单。使用者仅仅需要调整 lot ,选择Model即可。  诚实的展示交易结果,它不会笔直的往上增长,
AW Double Grids EA
AW Trading Software Limited
4.43 (7)
AW Double Grids MT5 智能交易系统是一款激进的、全自动的基于网格的智能交易系统,具有信息交易面板和简单的设置。该策略包括同时进行的两侧工作,将一个方向的体积相乘。内置自动计算手数,以及订单乘法的变化。 说明 -> 此处  /  问题解决 ->   此处 / MT4 版本 ->   此处 顾问如何交易: AW 双网格通过一对方向相反的订单进行双向交易。 AW Double Grids 通过开立两个反向订单开始交易。在关闭盈利订单后,顾问会再次开立两个订单,将开仓方向的交易量乘以倍数。如果有未结订单,顾问可以根据设置更改获利点数。获利点可以是动态的,也可以是固定的。 输入参数: 主要设置 Size_of_the_first_order - 定义第一个订单大小的变量。 在“Enable_Autolot_calculation”禁用时使用。 Enable_Autolot_calculation - 使用自动手数计算。此功能允许您在更改存款时保存风险设置。     如果您使用 autolot,则不使用“   Size_of_the_first_order”   。 Autol
AW Scalping Dynamics EA
AW Trading Software Limited
4.67 (12)
基于趋势逆转的全自动高级交易机器人。如果有必要,可以使用网格策略。当达到最大推车负载时,内置 3 种类型的通知和位置锁定。 建议在 M15 时间范围内为 EURUSD 使用默认设置。 特点和优点: 能够同时在两个方向工作 具有在多个阶段按时工作的内在能力 使用经纪人不可见的虚拟止损 基于当前趋势活动的工作算法 内置自动手数计算 使用所有类型的通知 自动锁定头寸和禁用顾问的能力 为篮子中的后续订单减少止盈 考虑当前趋势或逐步调整开仓订单 MT5版本->     这里     / 故障排除 ->  这里     输入变量的详细说明和说明   -> 这里 顾问如何交易: -首先,在交易时,会考虑当前趋势活动(“主趋势过滤器”变量)。它越小,反转的可能性就越高,EA 将打开的订单就越少。 -当打开每个新订单时,EA 通过“趋势过滤器减少每个订单”来减少趋势的活动,以获取后续信号。 - 在趋势过滤信号之后使用振荡器反转信号。 确定振荡器信号活动的变量是 - 振荡器周期 - 振荡器周期。越小,信号越活跃。 振荡器区域的 K1 - 权重因子 #1。它越小,信号越活跃。 振荡器区域的 K2 - 权重
筛选:
无评论
回复评论
版本 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