• 미리보기
  • 리뷰
  • 코멘트
  • 새 소식

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부터입니다. 타임
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.
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
FTMO Smart Trader EA
Tshivhidzo Moss Mbedzi
Unlock the gateway to prop trading success with the FTMO Smart Trader EA, your ultimate Forex robot designed to propel you towards unprecedented trading achievements. Engineered for ambitious traders eyeing partnerships with leading prop firms like FTMO, Funded Next, and more, this revolutionary tool is your key to unparalleled performance and risk management in the dynamic Forex market. Get sets here : https://www.mql5.com/en/blogs/post/756066 Why Choose FTMO Smart Trader EA? High Performance:
CN Hamster CN Hamster는 Martin, 추가 창고 정책을 사용하지 않고 BOLL 및 zigzag의 지표를 기반으로 작성된 완전히 자동화된 EA입니다. 일반 권장 사항 최저 예금액이 100달러일 경우 lots를 0.01로 설정하고 maxopenorder=1을 설정하는 것이 좋다.기본값은 그리니치 표준시 + 2입니다.잘 수행되고 낮은 수준의 브로커를 사용합니다.가격차가 좁고 시장 실행력이 강한 ECN 또는 STP 계정만 사용하는 것이 좋습니다.낮은 ping VPS로 거래하는 것이 좋으며 ping 값이 낮을수록 좋습니다. 그것은 서로 영향을 주지 않고 여러 화폐에서 일할 수 있다.그것은 유로-달러 M5 또는 파운드-달러 M5에서 더 잘 작동합니다.또한 모든 통화 쌍을 사용할 수 있습니다. 입력 매개변수 이 제품은 4비트와 5비트 따옴표를 모두 사용할 수 있습니다.모든 값의 소수점 이하 5자리를 자동으로 다시 계산하는
Piramida Grid   Piramida Grid - 시장에 진입하기 위해 고문은   경사 방향 선   표시기의 판독값을 분석합니다. 시장이 반전될 때 주문 그리드를 변경합니다. 보류 중인 주문 BUYSTOP 및 SELLSTOP에 대해 작업합니다. 손실 없이 열린 거래의 균형과 산출물을 제어하는 손실 평균화 시스템을 사용합니다. 6자리 및 5자리 자동 감지. 어드바이저 설정: 기간 = 32; - 경사 방향선 표시기의 주기 필터 번호 = 2; - Slope Direction Line 표시기의 필터 설정 ma_method = 3; - 경사 방향선 표시기 판독값을 평활화하는 방법 적용 가격 = 0; - Slope Direction Line 표시기 계산에 사용되는 가격 TF = 15; - 기울기 방향선 표시기의 차트 기간 손절매 = 0; - 포인트 손실 수준 제한 주문_단계 = 20; - 그리드 차수 사이의 거리(포인트 단위) Count_Order = 5; - 그리드의 주문 수 Lo
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
| 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
White bird
Jean Christophe Paput
5 (2)
WHITE BIRD EA is a fully automated & customizable EA. The EA's objective is to provide steady incomes (See pictures) with a high level of safeness  (See pictures). The algorythm based on an auto-adaptive system, is constantly controlling : - The distance between orders - The lot size of orders - The level of Equity - The level of security  3 trading modes can be used  (See backtests 9 examples) : - CHALLENGE FUNDERS (PROP FIRMS) COMPATIBLE: Profit higher than 10 %  / Draw
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 n
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 2
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 는 Matrix Arrow Indicator의 MT4 신호를 차트의 거래 패널과 수동 또는 100% 자동으로 거래할 수 있는 고유한 전문가 조언자입니다. Matrix Arrow Indicator MT4 는 다음과 같은 최대 10개의 표준 지표에서 정보와 데이터를 수집하여 초기 단계에서 현재 추세를 결정합니다. 평균 방향 이동 지수(ADX) 상품 채널 지수(CCI) 클래식 하이켄 아시 캔들 이동 평균 이동 평균 수렴 발산(MACD) 상대 활력 지수(RVI) 상대 강도 지수(RSI) 포물선 SAR 스토캐스틱 오실레이터 윌리엄스의 백분율 범위 모든 지표가 유효한 매수 또는 매도 신호를 제공하면 강력한 상승/하락 추세를 나타내는 다음 캔들/막대가 시작될 때 해당 화살표가 차트에 인쇄됩니다. 사용자는 사용할 표시기를 선택하고 각 표시기의 매개변수를 개별적으로 조정할 수 있습니다. Matrix Arrow EA MT4 를 사용하면 차트의 거래 패널에서 직접
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, Intere
Synergy MT4
Ervand Oganesyan
라이브 공연 : AUDUSD 빠른 시작 - AUDUSD, EURUSD 또는 모든 주요 외환 통화쌍의 M5 차트에 EA를 설정합니다. - 편안한 위험 수준을 설정하세요. - 시간대 설정이 올바른지 확인하세요. 대부분의 브로커의 기본값은 올바릅니다. - 나머지 설정을 기본값으로 두면 EA가 거래할 준비가 됩니다. 사용자 정의 가능한 거래 로직 - 통화별 일중 가격 움직임을 추적하고, 이러한 움직임의 특성에 따라 가격이 초기 수준으로 돌아갈 것으로 예상하여 거래가 시작됩니다. - 사용자는 EA가 단기, 중기, 장기 가격 움직임을 거래할지 여부를 선택할 수 있습니다. - 기본 거래 빈도는 주당 약 2회입니다. 사용자는 편안한 수준으로 빈도를 늘리거나 줄일 수 있습니다. - EA는 선택된 시나리오에서 가장 최적화된 설정을 사용합니다. 사용하기 쉽습니다 - 정교한 설정은 필요 없습니다. 지속적인 모니터링이 필요 없습니다. 설정하고 24/7 원활한 거래를 시작하는 것을 잊어버리세요.
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_
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
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 ti
GS smart V
Aleksander Gladkov
1 (1)
GS smart V is 4 in 1 = Advanced Grid Advisor + Hedging + News Feed + Trend Indicator. Version 8.2 of GS smart advisor : Automatically adjusts its parameters to work on any Forex instrument (including cryptocurrencies, indices and CFDs) for USD accounts. To start trading, simply attach the EA to a chart, preferably EURUSD, GBRUSD, NZDUSD, AUDUSD and XAUUSD (Gold) timeframes M5, H1. For accounts from $1000 with leverage of 1:500 and higher. The most profitable strategy is set in the defaul
PRICE ACTION OB TRADER EA - 가격 행동 연구를 기반으로 한 완벽한 자동 거래 시스템입니다! 이것은 당신을 위해 모든 거래 업무를 수행하는 "설정하고 잊어버리는" 전문 고문입니다! 7 설정 파일을 사용할 수 있습니다! 거래 아이디어는 유명하고 강력한 가격 행동 패턴인 OutsideBar를 기반으로 합니다! 가격 조치 OB Trader EA는 매우 좋은 투자입니다. 수년 동안 작동할 것이며 모든 Set_files는 긍정적인 수학적 기대치를 갖습니다! EA 사용/테스트를 위해 "설명" 섹션의 설정 파일을 사용하세요. EA 기능: -EA는 7개 쌍에서 동시에 실행될 수 있습니다. - 해당 Set_file이 "댓글" 섹션에서 여러분을 기다리고 있습니다. - 시스템은 많은 스캘퍼만큼 높은 수수료에 돈을 낭비하지 않습니다. - 엄격한 스프레드 요구 사항 없음 - EA는 모든 계정에서 사용할 수 있습니다. -시스템은 위험한 그리드 방법을 사용하지 않습니다.
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 S
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+
이 제품의 구매자들이 또한 구매함
CyNera MT4
Svetlana Pawlowna Grosshans
5 (8)
CyNera: 귀하의 거래, 우리의 기술 신호 >400%:  CyNera 신호 >500%: CyNera Turbo 매뉴얼 및 설정 파일: 구매 후 저에게 연락하면 매뉴얼과 설정 파일을 받으실 수 있습니다 가격: 가격은 판매된 라이선스 수에 따라 상승합니다 사용 가능한 복사본: 4 금은 시장에서 가장 변동성이 큰 금융 상품 중 하나로, 정확한 거래, 심도 있는 분석 및 강력한 리스크 관리가 요구됩니다. CyNera 전문가 조언자는 이러한 요소들을 통합하여, 최적의 금 거래를 위한 정교한 시스템으로 설계되었습니다. CyNera의 고급 전략과 기술은 경험이 풍부한 트레이더는 물론, 초보자도 금 거래에서 직면하는 독특한 도전과 기회를 극복할 수 있도록 지원합니다. CyNera는 금 시장의 복잡성에 맞춰 신뢰할 수 있는 솔루션을 제공합니다. 적응적이고 지능적인 전략과 다중 시간대 분석, 자동 거래 조정, 정밀한 리스크 관리 등 고급 기능을 결합합니다. 이러한 적응성 덕분에 CyNera
CyNeron MT4
Svetlana Pawlowna Grosshans
5 (1)
CyNeron: 정밀한 거래와 AI 혁신의 결합 신호 :   CyNeron 매뉴얼 및 설정 파일 : 구매 후 연락주시면 매뉴얼과 설정 파일을 보내드립니다 가격 : 판매된 복사본 수에 따라 가격이 상승합니다 사용 가능한 복사본 : 5 AI 기반 스냅샷 분석: 시장 최초 CyNeron은 시장 조건의 상세 스냅샷을 캡처하고 처리하는 혁신적인 거래 접근 방식에 최첨단 AI를 통합한 시장 최초의 EA입니다. 최첨단 AI 뉴럴 네트워크를 활용하여 가격 데이터와 기술 지표를 평가하고, 시장 움직임에 대한 고도의 정확한 예측을 제공하여 정밀하고 전략적인 거래 결정을 가능하게 합니다. 이 AI 기반 기술은 CyNeron을 돋보이게 하며, 실시간으로 변화하는 시장 동향에 동적으로 적응하고 이전에 얻을 수 없었던 통찰력을 거래자들에게 제공합니다. 심볼 XAUUSD (골드) 시간 프레임 M15 또는 M30   자본 최소 $100 브로커 모든 브로커 계좌 유형 모든 계좌, 낮은 스프레드 선호
Maknight
Aliaksandr Khudakou
3 (2)
100% Automatic trading system (advisor) – EA MakNikht !!! TEST THE ADVISOR AND YOU WILL SEE THE RESULT FOR YOURSELF  We have made everything as convenient and simple as possible for YOU: AND NOW IN MORE DETAIL: WE have studied the currency pair AUDNZD GBPCHF GBPCAD GBPAUD EURCHF for a long time and have seen many advisers and here is our difference: 1.  Simultaneous work with several currencies, which increases efficiency 2. No martingale 3. No scalping 4. No grid 5. Always uses stop loss and ta
EA MakScalping
Aliaksandr Khudakou
Hello, dear friends! 100% Automatic trading system (advisor) – EA MakScalping !!! TEST THE ADVISOR AND YOU WILL SEE THE RESULT FOR YOURSELF Scalping is popular due to small stops and a good ratio between SL and TP. These reasons led to the birth of the MakScalping trading robot, and a simple trading idea and excellent results in the tester will make it popular. MakScalping is based on 2 linearly weighted moving averages. The idea of ​​​​trading is to take rollbacks when volatility increases. W
The Infinity EA MT4
Abhimanyu Hans
4.58 (19)
ChatGPT Turbo를 통한 AI 기반 기술 Infinity EA는 GBPUSD 및 XAUUSD를 위해 설계된 고급 거래 전문가 자문가입니다. 안전성, 일관된 수익률 및 무한한 수익성에 중점을 둡니다. 마팅게일 또는 그리드 거래와 같은 고위험 전략에 의존하는 다른 많은 EA와 달리 Infinity EA는 최신 ChatGPT 버전에서 제공하는 기계 학습, 데이터 분석 AI 기반 기술에 내장된 신경망을 기반으로 하는 규율 있고 수익성 있는 스캘핑 전략을 사용하여 전반적인 거래 경험을 탁월하게 만듭니다. 6,000명 이상의 멤버로 구성된   MQL5 커뮤니티에   가입하여 다른 트레이더와 소통하세요. 최신 제품 업데이트, 팁, 독점 콘텐츠로 최신 정보를 받아보세요. MT5 버전 Infinity EA 설정 방법 특징 Infinity EA는 AI 기반 스캘핑 전략을 활용합니다. EA는 실시간 데이터 분석을 위해 ChatGPT-4 Turbo와 통합되어 있습니다. Infinity EA는
AI Gen XII MT4
Denis Kurnev
4.4 (35)
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
Aurum AI mt4
Leonid Arkhipov
5 (17)
Aurum AI – 금 거래(XAU/USD)를 위한 인공지능의 힘 거래에서 기술의 모든 힘을 경험하세요! Aurum AI 는 금 시장에서 안정적이고 안전한 거래를 위해 설계된 혁신적인 전문가 어드바이저입니다. 인공지능의 힘, 정확한 트렌드 분석 및 엄격한 리스크 관리를 결합하여 모든 거래에서 최대 효율성을 보장합니다. 투명성과 결과 12월 19일, 우리의 전문가 고문(EA)은 실시간 거래 기간 동안 첫 손실을 기록하여 전체 수익이 +54.40%에서 +36.72%로 감소했습니다. EA는 11월 29일 거래를 시작했으며, 이 기간 동안 뛰어난 결과를 보여주었습니다. 테스트에서는 100%의 승률을 달성하여 알고리즘의 효율성을 입증했습니다. 하지만 12월은 금융 시장에서 가장 예측 불가능한 시기 중 하나라는 점을 이해하는 것이 중요합니다. 연말에는 포지션 청산, 낮은 유동성 및 높은 변동성으로 인해 거래가 종종 혼란스러운 움직임을 동반합니다. 그럼에도 불구하고, 이 EA는 강력한 거래 시스
Quantum Emperor MT4
Bogdan Ion Puscasu
4.84 (150)
소개       Quantum Emperor EA는   유명한 GBPUSD 쌍을 거래하는 방식을 변화시키는 획기적인 MQL5 전문 고문입니다! 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 Gold Emperor를 무료로 받으실 수 있습니다!*** 자세한 내용은 비공개로 문의하세요. 새로운 Live Signal V5:   여기를 클릭하세요 MT5 버전 :  여기를 클릭하세요 Quantum EA 채널:       여기를 클릭하세요 10개 구매 시마다 가격이 $50씩 인상됩니다. 최종 가격 $1999 퀀텀 엠퍼러 EA  
Bitcoin Robot MT4
Marzena Maria Szmit
4.77 (35)
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.33 (6)
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에는 위험 관리 기능이 포함되어 있어 거래자가 계좌 잔액의 백분율로 위험 수준을 설정할 수
Gold One MT4
Habib Gholamali Heidari
5 (4)
Gold One  MT4 안녕하세요, 외환에서 금 거래를 좋아하는 모든 분들, 최고의 금 거래자들에 합류할 수 있는 로봇에 오신 것을 환영합니다. 20년 이상의 정확한 외환 시장 경험을 바탕으로, 최신 세대의 거래 로봇을 자랑스럽게 소개합니다. 특징:  프로프 회사의 도전에 적합합니다. 모든 계좌 크기에 적합하며, 소액 자본에도 사용 가능합니다. 그리드   없음과   마르팅게일   없음 100% 완전 자동화 이 로봇은 금에 특화된 최신, 혁신적, 그리고 최첨단 지표를 사용하여 매수 및 매도 지점을 식별하는 데 뛰어난 정확성을 자랑합니다. 이는 외환 시장 내 금 거래에서 혁신적인 돌파구를 의미합니다. 이 혁신은 10년 이상의 연구, 시도와 오류, 그리고 광범위한 테스트의 결과로, 금 거래의 전문가들로부터 얻은 통찰력을 통합하였습니다. 정교한 금 거래 패턴을 활용함으로써, 우리 로봇은 완전 자동화된 거래를 스트레스 없이 모니터링할 수 있도록 하여 마음의 평화를 보장합니다. 다년간의
Big Forex Players MT4
Marzena Maria Szmit
4.72 (29)
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
GbpUsd Robot MT4
Marzena Maria Szmit
5 (11)
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
CoreX G MT4
Arseny Potyekhin
5 (7)
개요 CoreX G EA는 외환 시장의 복잡성을 해결하기 위해 특별히 설계된 고급 거래 시스템입니다. 최첨단 신경망, 정교한 머신 러닝 기술, 통합된 빅데이터 전략을 활용하여 CoreX G는 거래에서 탁월한 정확성과 보안을 제공합니다. 이 전문가 고문(EA)은 기술적 우수성과 프리미엄 고객 지원으로 차별화되며, 사용자가 질문이나 우려 사항에 대해 항상 도움을 받을 수 있도록 합니다. 신호: Live Signal Blog: CoreX G EA 이 전략은 매우 독특하기 때문에 라이선스의 수를 제한하여 판매하고 싶습니다. 따라서 판매를 제한하기 위해 가격이 점차 상승할 것입니다. 다음 가격은   790 달러입니다. 브로커 모든 브로커, ECN/제로 스프레드 선호 레버리지 1:20부터 입금 최소 200$     심볼 XAUUSD 타임프레임 H1 빅데이터 통합 및 거래 전략 빅데이터는 CoreX G 전략의 핵심입니다. 이 시스템은 방대한 양의 역사적 및 실시간 시장 데이터를 처리하여
Boring Pips MT4
Thi Thu Ha Hoang
4.71 (14)
Have you ever wondered why most expert advisors are not effective in live trading, despite their perfect backtest performance? The most likely answer is Over-fitting . Many EAs are created to ‘learn’ and adapt perfectly to the available historical data, but they fail to predict the future due to a lack of generalizability in the constructed model. Some developers simply don't know about the existence of over-fitting, or they know but don't have a way to prevent it. Others exploit it as a tool t
Diamond PRO
Fanur Galamov
5 (25)
Holiday sale -40% is active! Happy New Year and Merry Christmas! 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
Gold Scalping AI
Ho Tuan Thang
5 (1)
ONLY 3 COPIES OUT OF 10 LEFT AT $299! After that, the price will be raised to $399. - REAL SIGNAL: Default Setting:  https://www.mql5.com/en/signals/2276213 Gold Scalping AI is an EA that uses artificial intelligence technology to analyze data of many indicators. From there, EA will have the best option to enter orders. The biggest difference of Gold Scalping   AI is that the EA can control the Risk:Reward ratio much better than other EAs.That is possible thanks to a set of tools to control e
Aura Black Edition
Stanislav Tomilov
4.73 (15)
Aura Black Edition은 GOLD만 거래하도록 설계된 완전 자동화된 EA입니다. Expert는 2011-2020년 기간 동안 XAUUSD에서 안정적인 결과를 보였습니다. 위험한 자금 관리 방법, 마팅게일, 그리드 또는 스캘핑이 사용되지 않았습니다. 모든 브로커 조건에 적합합니다. 다층 퍼셉트론으로 학습된 EA 신경망(MLP)은 피드포워드 인공 신경망(ANN)의 한 종류입니다. MLP라는 용어는 모호하게 사용되며, 때로는 피드포워드 ANN에 느슨하게 사용되기도 하고, 때로는 임계값 활성화가 있는 여러 층의 퍼셉트론으로 구성된 네트워크를 엄격하게 지칭하기도 합니다. 다층 퍼셉트론은 특히 단일 은닉층이 있을 때 "바닐라" 신경망이라고도 합니다. MLP는 입력층, 은닉층, 출력층의 최소 3개 층의 노드로 구성됩니다. 입력 노드를 제외하고 각 노드는 비선형 활성화 함수를 사용하는 뉴런입니다. MLP는 역전파라는 지도 학습 기술을 사용하여 학습합니다. 다중 레이어와 비선형 활성화는
Aura Neuron MT4
Stanislav Tomilov
5 (1)
Aura Neuron은 Aura 시리즈 거래 시스템을 이어가는 독특한 전문가 자문입니다. 고급 신경망과 최첨단 클래식 거래 전략을 활용하여 Aura Neuron은 뛰어난 잠재적 성과를 가진 혁신적인 접근 방식을 제공합니다. 완전 자동화된 이 전문가 자문은 EURUSD 및 XAUUSD(GOLD)와 같은 통화 쌍을 거래하도록 설계되었습니다. 1999년부터 2023년까지 이러한 쌍에서 일관된 안정성을 입증했습니다. 이 시스템은 마팅게일, 그리드 또는 스캘핑과 같은 위험한 자금 관리 기술을 피하므로 모든 브로커 조건에 적합합니다. Aura Neuron은 다층 퍼셉트론(MLP) 신경망으로 구동되어 시장 추세와 움직임을 예측하는 데 활용합니다. MLP는 피드포워드 인공 신경망(ANN)의 한 유형으로, 특히 단일 숨겨진 계층으로 구성될 때 "바닐라" 신경망이라고도 합니다. MLP에는 입력 계층, 숨겨진 계층 및 출력 계층이라는 세 가지 필수 계층이 포함됩니다. 입력 노드를 제외한 각 뉴런은 비선
The Gold Reaper MT4
Profalgo Limited
4.55 (29)
소품 회사 준비 완료!   (   세트파일 다운로드   ) 출시 프로모션: 현재 가격으로 몇 장 남지 않았습니다! 최종 가격: 990$ 1EA를 무료로 받으세요(2개의 거래 계정에 대해) -> 구매 후 저에게 연락하세요 Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here New V2.2 Live Signal Old Live Signal 골드 리퍼에 오신 것을 환영합니다! 매우 성공적인 Goldtrade Pro를 기반으로 구축된 이 EA는 동시에 여러 기간에 걸쳐 실행되도록 설계되었으며 거래 빈도를 매우 보수적인 것부터 극단적인 변동까지 설정할 수 있는 옵션이 있습니다. EA는 여러 확인 알고리즘을 사용하여 최적의 진입 가격을 찾고 내부적으로 여러 전략을 실행하여 거래 위험을 분산시킵니다. 모든 거래에는 손절매와 이익 실현이 있지만, 위험을 최소화하고 각 거래의 잠재력을 극대화하기 위해 후행 손절매와 후
FX EurUsd Robot MT4
Marzena Maria Szmit
5 (11)
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.
Supply Demand EA ProBot
Georgios Kalomoiropoulos
5 (3)
수요와 공급의 원칙에 기반한 완전 자동화된 조언자입니다 . 처음으로 우리는 완전히 자동화된 공급 및 수요 조언자를 제공합니다 . 거래가 쉬워졌으며 이제 거래 전략을 완벽하게 제어할 수 있습니다. 편리한 그래픽 제어판을 사용합니다. 15,000줄 이상의 코드가 포함된 매우 높은 품질의 알고리즘 거래 소프트웨어를 얻을 수 있습니다. EA 프로봇 공급 및 수요 가이드 Prop Firms를 거래하는 가장 좋은 방법은 자격을 갖춘 거래자가 되기 위한 모든 단계에 도전합니다. 모든 거래는 자동으로 이루어지고 관리됩니다. 항목을 선택하고 긴장을 풀면서 상금이 커지는 것을 지켜보세요. 패널 입력 매개변수: 거래 방향 선택(매수 또는 매도) 거래하려는 기간을 선택하세요. 서비스하려는 구역 유형 (넓음, 중간, 좁음, 매우 좁음)을 선택하십시오. 세 가지 자금 관리 옵션 중에서 선택하세요 일련의 승리 또는 손실 거래 후에 그만 두는 고문을 선택하십시오 . 위험 또는 ATR을
AW Recovery EA
AW Trading Software Limited
4.4 (75)
Expert Advisor는 수익성이 없는 포지션을 회수하도록 설계된 시스템입니다.   작성자의 알고리즘은 손실 위치를 잠그고 여러 부분으로 분할하고 각 부분을 별도로 닫습니다. 손쉬운 설정, 하락 시 지연된 시작, 다른 Expert Advisors 잠금, 비활성화, 추세 필터링을 통한 평균화 및 손실 위치의 부분 마감이 하나의 도구에 내장되어 있습니다. 전체 그룹에서만 주문을 마감하는 그리드 전략과 달리 더 낮은 예금 부하로 손실을 줄일 수 있는 부분에서 마감 손실을 사용하여 손실과 함께 더 안전한 작업을 보장합니다. 주문이 복원되는 방법: 1 EA는 선택한 상품의 다른 창을 닫아 수익성이 없는 EA를 끕니다(선택 사항). 2 EA는 처리된 모든 주문에 대해 TakeProfit 및 StopLoss 수준을 재설정하고 해당 식별자가 있는 보류 주문을 삭제합니다. 3 EA는 수익성이 없는 주문의 일부를 충당하고 총 포지션 볼륨을 줄이기 위해 이익을 사용하기 위해 처리된 모든 수익성 있
Prisma EA
David Jukl
The Prisma Expert Advisor is a set of rules that allows you to achieve consistent results on the FOREX currency market thanks to sophisticated open position management, quality money management and opening and closing of positions, where mathematics together with probability play the main role. Prisma is able to work with stability on all major currency pairs and their combinations provided the system is run with a suitable broker that offers favorable conditions for such trading. However, it is
XG Gold Robot MT4
Marzena Maria Szmit
4.52 (27)
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
Bitcoin Scalp Pro
Profalgo Limited
5 (3)
현재 프로모션: 549$에 단 1개 남음 최종 가격: 999$ NEW: Choose 1 EA for free! (for 2 trade account numbers) 프로모션 블로그   에서 "   Ultimate EA 콤보 패키지 "   를 확인하십시오   !   LIVE SIGNAL Bitcoin Scalp Pro는 시장에서 독특한 거래 시스템입니다.  그것은 지원 및 저항 수준의 돌파를 거래함으로써 비트코인 ​​시장의 변동성을 이용하는 데 전적으로 초점을 맞추고 있습니다. EA의 초점은 안전에 있으며, 이는 거래에 대한 매우 낮은 손실과 매우 좋은 위험/보상 비율로 해석됩니다. EA는 내부적으로 "스마트 적응 매개변수 시스템"을 사용하여 손절매, 이익실현, 트레일링SL뿐만 아니라 비트코인의 실제 가격을 기준으로 항목 및 로트 크기도 계산합니다. 즉, 비트코인이 6000 또는 30000에서 거래되는 경우 모든 매개변수에 대해 다른 값을 갖게 됩니다. EA는 2022년
MAX Gold 1
Peng Peng Gao
这是一种全自动智能自适应算法。MAX Gold  系统计算历史数据,并根据即将突破支撑位和阻力位的概率百分比执行分析,并下达挂单。 EA 交易可适应任何市场条件。它使用质量为 99,9% 的真实刻度进行了回溯测试和优化。它已成功完成压力测试。 EA 包含统计信息收集算法,并在信息面板上输出。 建议选择ECN经纪商和点差最低的账户。 货币对/时间框架: EURUSD M30、 EURUSD H1、 USDJPY M30、 USDJPY  H1、   GBPUSD M30 、 GBPUSD  H1 、 XAUUSD M30 推荐货币对/时间框架: EURUSD   H1 、USDJPY   H1   or  EURUSD   M30 、 USDJPY  M30  or  XAUUSD M30 需要 VPS。 要求和建议 5 位引号。 最大点差:0 - 20 点。 最低存款额:100 美元。 最大止损水平:0 - 5 点。 建议使用 1:100 或更高的杠杆。 如果您在同一个账户上使用多个 Advisor,请确保所有 Advisor 都有不同的 Magic Num
Gemini Trump
Jingzhi Wang
Gemini Trump EA represents a sophisticated advancement in grid trading systems. Unlike traditional methods that rely on fitting the system to historical data, Gemini Trump EA is engineered to exploit existing market inefficiencies, leveraging authentic market dynamics to generate profit. Gemini boasts an impressive array of features designed for both convenience and performance. With its One Chart Setup, you can trade all supported symbols using a single chart, while its Multi-Currency Support s
Aurus Gold MT4
Dmitriq Evgenoeviz Ko
"Aurus Gold" is a program capable of automatically analyzing and trading on the currency market (Forex) without human intervention. This innovative tool for decisions on buying or selling currency pairs. The main task of Aurus Gold is to maximize profits and minimize risks for investors. It is capable of working around the clock, based on pre-set parameters and trading rules. The main advantages of using a currency robot include: 1. Automation of trading: The ability to carry out transa
The Matrix Mind AI MT4
Pool Quintal Carlos Alejandro
The Matrix Mind AI: 외환 거래의 새로운 표준 The Matrix Mind AI는 외환 시장에서 가능성을 확장하기 위해 설계된 혁신적인 거래 어드바이저입니다. 행렬 분해 모델을 기반으로 시장 데이터를 심층적으로 분석하여 숨겨진 패턴을 발견하고 전략 개발을 위한 독특한 기회를 제공합니다. 실시간 신호: https ://www .mql5 .com /en /signals /2277247 가격 제안: 첫 7개 카피:   $399 다음 가격:   $499 The Matrix Mind AI의 주요 특징 행렬 분해를 기반으로 한 분석 특이값 분해(SVD)와 주성분 분석(PCA)과 같은 고급 알고리즘을 사용하여 대규모 데이터 세트를 분해하고, 통화 쌍, 시계열, 시장 동향 간의 중요한 상관관계를 식별합니다. 텍스트 및 그래픽 기반 AI와의 차별성 텍스트 분석과 데이터 시각화에 제한되는 플랫폼과 달리, The Matrix Mind AI는 실제 시장 조건에 맞춰 설계되었습니다. 이
필터:
리뷰 없음
리뷰 답변
버전 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