• 미리보기
  • 리뷰
  • 코멘트 (1)

Forex GPT MA

This advisor independently creates a neural network and is trained during operation or when launched in the strategy tester; the network is created from the average price values (based on the Moving Average indicator).

See my profile for my other products.

The advisor does not use third-party libraries, does not connect anything, all calculations occur inside the advisor, with the ability to save neural network data and all its parameters when training, restarting or transferring to another terminal using files created during its operation!

1. Basic principle of operation.

2. Construction of a neural network.

3. Checking neural network options.

4. Block for opening and calculating virtual orders.

5. Filter for analyzing and selecting virtual orders.

6. Description of input parameters.


1. Basic operating principle.

This advisor uses and creates a neural network in its work using the average price values. For the average price we use the Moving Average indicator. On each new bar, the advisor builds a grid of cells based on past data, checking whether the cell contains an average price. To build a network, we use the x and y coordinate axis; when the average price is in a cell, it writes - 1 into it; if there is no price, then - 0. In this way, a variant of the network is formed, and this happens on each new bar, then the adviser checks it in its neural network Is there such a location option and if not, then it adds this option to the network and gives a signal to open virtual orders, and if it already exists, then the virtual order calculation block begins to open virtual orders and track price changes and records either profit or loss for each option which is on the net. Thus, the advisor virtually calculates each option and accumulates the history of transactions for each option of the neural network.

Next, virtual orders are filtered by 3 filters and, when the criteria are reached and signals from the network are available, they are placed into trading. When this option is enabled, the advisor can save all work data to files for learning from history or for transferring to another terminal.


2. Construction of a neural network.

To understand how the advisor builds its neural network, let’s look at picture No. 1 https://c.mql5.com/31/1112/forex-gpt-ma-screen-2118.jpg :

So we see a price chart with the Moving Average indicator with the value period=2 and a lined grid (red lines) of network cells. Along the X axis we take bars, which can be used in steps or each bar, in the figure step=4 is used. Along the Y axis we take values from the opening price of the current bar, build a grid upward by adding delta, and downward by subtracting delta.

It turns out like this: the advisor looks at the current bar and if there are values of the Moving Average indicator in the cell, then the advisor writes 1 to this cell, if there is no value of the Moving Average indicator there, then writes 0.

The construction of the network proceeds from the upper left cell from left to right down row by line, when the advisor option Filesave=true is enabled, the data of the neural network is written to the file row by row, each line in the file is a version of the network rectified into one line in the order of its construction - the upper left cell from left to right down picture No. 2 https://c.mql5.com/31/1112/forex-gpt-ma-screen-3578.png .

In this figure, the contents of the *_neural.csv file stores variants of the neural network; each line is 1 variant of the neural network with values 0 and 1.

In this case, this is the formation of a network x=4 y=11 and delta=70, to see visually you need to break the 1st line by x=4 y=11 – picture No. 3: https://c.mql5.com/31/ 1112/forex-gpt-ma-screen-6086.png

The same can be seen in the enabled information panel mode Enable panel=true

This example clearly shows how a network is formed from x=4 y=11 and step=1 – picture No. 4: https://c.mql5.com/31/1112/forex-gpt-ma-screen-1840.png

Bars are formed like this from right to left 0,1,2,3 and on the network the right column in the middle costs 1, then the second column in the middle also costs 1 and in the 3rd column 1 costs higher than the 1 that were before, because the price there is higher than them and in the left column 1 is even lower than those units since the price there was lower than those values.

This is how a neural network is formed, which is stored as an array of data in the advisor’s memory and, with the Filesave=true option enabled, is uploaded every Monday to the MQL4/files/ files when trading and when testing in tester/files/.


3. Checking neural network options.

After 1 variant of the neural network has been formed, the advisor monitors the new network variant on each new bar, if it differs from what already exists, the advisor adds it to its database while opening virtual orders in both directions, thus the advisor tracks both sell and buy for each network option, and then, when analyzing which sell or buy option will have a good rating, he will trade. At each bar, the advisor checks, as if building a network, and looks at how the indicator is located there and, in accordance with this, makes a decision; if there is no such option, then it adds, if there is, it opens virtual orders. This continues while the advisor is working.


4. Block for opening and calculating virtual orders.

The advisor implements a mechanism for opening and analyzing already open virtual orders. Using arrays of variables, the advisor tracks signals from the neural network block and, upon receipt, begins to monitor how the price changes with each bar, using the values of the 1st bar open, high, low, close. Taking into account the direction of trade, the block calculates the profit of each order and calculates each network option. The calculations use the values of maximum profit and minimum for drawdown, profit factor, profit and loss, and the number of orders for each network option. Thus, if there are 20 options in the neural network, then in the block of virtual orders there will be 20 options for the variables SL, TP, PF, DD, ordercount for sell and the same values for buy. All these values are stored in the EA’s memory as an array of data; when the Filesave=true option is enabled, the EA uploads these values to the following files: MQL4/files/ when trading and when testing in tester/files/:

*_buy_d1_v1.csv, *_buy_d1_v2.csv and their copies just in case.

*_sell_d1_v1.csv, *_ sell _d1_v2.csv and their copies just in case.

Each line is the values of SL, TP, PF, DD, ordercount for one network option. (see picture picture No. 5: https://c.mql5.com/31/1112/forex-gpt-ma-screen-3958.png )

*_data.csv – information about the upload date, the number of network options and how much profit by filters is written here, the overall balance. Using this file, we are guided from what date to what date the adviser has accumulated history for restarting or when transferring after training on history.


5. Filter for analyzing and selecting virtual orders.

All network options are considered virtual orders. Despite the fact that each network option keeps statistics on two directions of trade at once, both buy and sell. All values can be good and bad, unprofitable and positive; to find the best options, a filter is made that selects the best from all values according to a certain criterion. 3 types of filtering are implemented:

The following calculations are used for filters:

Filtr1 - By maximum profit.

Filtr2 - By maximum profit*profit factor.

Filtr3 - By maximum profit*profit factor*number of orders.

Each filter can be turned on and off; when the filters are turned on, it is possible to open 3 orders at once.


6. Input parameters

Magicnumber - number to identify your orders;

Lot - Lot size;

On/off MM - enable or disable money management;

Risk % - Percentage of the deposit for MM;

Enable Panel - Enable the information panel;

panel fon Color - Background color of the information panel;

panel text Color - Information panel text color;

breakeven on/off - enable breakeven;

breakeven distance - distance to switch on for transferring SL to +;

breakeven pips - how many points to set SL to +;

ON or OFF Trailing - enable trailing stop;

MinProfit for Trailing - distance for enabling the transfer of SL to +;

TrailingStop - how many points to set SL to +;

TrailingStep - how many points to move SL to +;

Filesave - When enabled, the advisor will save all parameters to files in *.scv format - when testing, in the terminal folder tester/files/folder with advisor parameters/filename*.scv. When trading in the MQL4 terminal folder/Files/ folder with advisor parameters/filename*.scv

Filename - file names for saving information: Filename_buy.csv, Filename_buy_copy.scv, Filename_sell.csv, Filename_sell_copy.scv, Filename_data.csv, Filename_data_copy.scv, Filename _neural .csv, Filename _neural _copy.scv;

PF - minimum profit factor value for filtering virtual orders;

MA - period of the Moving Average indicator for determining the neural network;

SL* - Stop Loss value - 16 calculation options;

TP* - Take Profit value - 16 calculation options;

k_sl_tp - coefficient for multiplying SL TP values;

delta - range of price values in points to form a network along the Y axis;

step - step in bars to form a network along the X axis;

Input net_x - number of cells along the X axis;

Input net_y - number of cells along the Y axis;

profittestmax - minimum profit for virtual orders to start opening real orders;

dd_max - maximum drawdown for virtual orders, more than which will not be filtered for selection for real trading;

NumberOfTry - number of attempts to open and modify orders;

Slippage - slippage;


Result:

After the virtual orders have been filtered, there is another option: profittestmax, where the profit is indicated in the deposit currency, for example it costs 50, which means real trading will begin only when the profit of virtual orders for the network options exceeds these values.

It turns out that the advisor seems to be optimizing the parameters himself, calculating all the SL TP options and selecting the best options from them and then toruget based on them.

When the Filesave=true option is enabled, files are written once a week - on Monday morning.

If you ask why the network consists only of a maximum of x=4 and y=13, then the answer is: the larger the size of the network, the more options it has that will be less repeated in history and therefore there will be little statistics on them, this also increases resources and time computer operation for searching and training the network, and there is another important parameter: the possibility of storing variables is also not unlimited and is limited by the capabilities of the MQL4 programming language. With huge amounts of testing and optimization, the maximum parameters were left exactly x=4 and y=13.


추천 제품
Golden Wings
Thi Tra Mi Duong
EA Golden Wings is a fully automated EA designed to trade GOLD. It is based on machine learning cluster analysis and genetic algorithms. EA contains self-adaptive market algorithm, which uses price action patterns and standard trading indicators. Expert showed stable results on XAUUSD in 2015-2021 period. No dangerous methods of money management used, no martingale, no grid, scalp or hedge. Feature:  + Fully automated trading 24/5 with time filter.  + No need in a large initial deposit.  + Alway
Otto MT4
Ariunbaatar Gunge Sersendemid
Otto is an expert advisor (EA) that utilizes proprietary indicators and trend lines while implementing a robust risk management strategy. It focuses on generating consistent and secure profits over the long term. By employing a fractional lot approach across various currency pairs, it effectively diversifies risk and increases trading opportunities for generating profits. Additionally, Otto can be applied to trading gold to potentially yield substantial returns. The EA executes daily transactio
IQmovingZ
Alexander Kovalenko
This is an automatic 24-hour trading system based on the algorithm of collective behavior of adaptive automata (a kind of algorithms of self-learning of artificial intelligence) that does not require manual intervention and does not use any indicators or well-known trading methods. The principle of the EA is to remember and analyze each step. A step is a price movement for a certain number (BaseStep) of points up or down. The depth of memory (how many steps to remember and analyze) is determined
HFT Lot Rebate
Mr Panjapol Kanka
HFT Lot Make r is an advanced Forex EA (Expert Advisor) designed for smart, consistent trading profits. It utilizes a trend-following strategy combined with a grid system, opening a high volume of orders to maximize rebates from traded lots. While focusing on generating rebates , the EA also prioritizes sustainable long-term profits. The developer has thoroughly tested the system on a Cent account, ensuring reliable performance. This makes the EA suitable for traders of all levels, from begin
EA works with none of the technical indicators.   It waits for the trend and trade accordingly. No standard indicators. No grid trading. No arbitrage. No curve fitting according to back-test results No Hedge   Very low Stop Loss Ratio  Tested with 99.90% data Modelling quality. Can work with even $30 USD Recommendations : Developed for M1, EURUSD ECN Broker with 5 points Settings Spread: Need to be as low as possible. Trailing Status: trailing stop usage option Trailing stop: Pips to allow trail
Scalper Gold Reborn
Zahidin Zainal Zulkornain
Scalper Gold Reborn is an Expert Advisor designed specifically for trading gold but can use at currency too. The operation is based on opening orders using the Bolinger Band and Moving Average . Monitoring Live Signal: https://www.mql5.com/en/signals/1805669 Recommendations Timeframe : M1 Pairs : GOLD/Currencies Settings: Default Lot : Use 0.01 for every 10.000cents Leverage: 1:1000 or higher Contact me in private for more setfiles. Setup Open M1 timeframe charts for pair GOLD or currency. At
Works to open two hedging deals, buying and selling, with a goal of each deal of 20 points With the opening of multiple cooling deals in the manner of another lot size and suspending each type of sale or purchase transaction At a profit level. Parameters: Lot1: Manual Lot Size Auto_Lot: Set true to automatically calculate optimal Lot Size based on risk preferences, Set False if you want use manual lot size. Max_Risk: Max Risk as percentage of Equity* the greater this percentage is the great
Stealth Bomber EA
Stephanus Kapenangolo Enondumbo
The Stealth Bomber EA operates by way of scalping and taking swing trades on selected currency pairs. It looks for overbought and oversold zones to place sell and buy orders respectively. The minimum lot size is 0.01 and can be increased through optimization.  Recommended Timeframe: 15 Minutes Recommended Pairs: AUDUSD, AUDCAD, GBPUSD, EURJPY, EURUSD, NZDCAD, NZDUSD
Phoenix Rig EA MT4
Sof'ia Vlasova
5 (3)
Phoenix Rig EA: The Advanced Correlation Matrix Expert Advisor is a state-of-the-art trading tool that combines correlation matrices, Convolutional Neural Network (CNN), and Long Short-Term Memory (LSTM) to identify trading opportunities. Using cutting-edge machine learning algorithms, Phoenix Rig EA analyzes relationships between financial instruments, revealing hidden patterns and trends. By executing trades based on correlated and counter-trending assets, it maximizes risk-adjusted returns. T
Copyright(c) 2019 Superfarabi EA Is the Scalping Forex Expert Advisor for MT4 Working on Timeframes (M5) Best Pair Recomended is EU/UChf=0.4 Calculation is based of Envelopes indicator ===========Rakyat +62 =========== Hak Cipta (c) 2019 Superfarabi EA Merupakan Scalping Forex Expert Advisor untuk MT4 Berjalan pada Time Frame Kecil (M5) Pair Rekomendasi adalah EU / UChf = 0,4 Perhitungan didasarkan pada indikator Envelopes
Thor Scalper is a bot optimized mainly for night trading operations with capital preservation and low drawdown strategies in mind. It uses a selective algorithm to find trades suitable for trading operations and to close trades that are not favorable at a lower value to minimize loss and to safeguard profits. Recommendation : You will need an ECN account with low raw spreads and a VPS, you may use MQL5's vps or a vps provider of your choice with low latency connection to your broker's live tra
LegendsHunter
Minh Thinh Vu
3.67 (3)
LEGENDHUNTER New version 3.0 that great! Our special price 799$ for before 30/9, October price  999$ for before 9/10/2024 NEXT 1399$, LAST PRICE 13989$, LIVE SIGNAL:  https://www.mql5.com/en/signals/2229365 This is an excellent trading system that is developed and researched with great care, using intelligent algorithms combined with fundamental indicators and specific timeframes for entry.  Recommend : TF: M5. Minimum Deposit $1000 DD LOW with 1k$ Min Deposit Recommended: 5000$/5 pairs
Fitpro 10 Scalper Expert Advisor  is a automated forex trading robot designed to work on the most traded currency any pair. The strategy is based on using several MT4 indicators , each entry point is calculated using an advanced input filter based on the analysis of the movement of the price chart. Each order is secured by a fixed stop-loss while, no martingale, no grid, scalp or hedge.   Paramater •    Magic Order - is a special number that the EA assigns to its orders •    Take Profit - take
The Expert Advisor identifies the most probable direction of the price based on the divergence of volumes and consolidation of prices in the overbought/oversold areas. Filtering for opening trades is carried out by using a unique formula for calculating the price level - "magnet" (based on the Ichimoku indicator), where the price is highly probable to come within a few bars in the future. The EA contains a minimum of settings, which facilitates its usage. Recommended symbols: EURUSD 15m ; GBPUSD
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+
Mr Robot and source code
Luis Mariano Vazquez Marcos
I use this robot every day on my real accounts. This Forex trading robot has been developed by MRBEAST as a tool to facilitate day trading. Please note that using this robot involves certain risks and does not guarantee consistent profits in the forex market. The trading robot is based on algorithms and strategies that I have designed, which have been created using my knowledge and experience in the field of trading. However, past performance does not guarantee future results, and the Forex mark
Multi Ai EA MT4
Indra Maulana
2 (1)
50% discount for one week only An expert based on artificial intelligence and neural network 99% of this expert's strategy is in charge of artificial intelligence A complex neural network with multiple filters Experience multiple experts in one expert I have provided you with several months of artificial intelligence training with powerful new and advanced computers (and several years of programming effort) at the lowest price. Features of this expert: Can be used:       in several dif
RSI Intelligent is a fully automated scalping robot that uses a very efficient Relative Strength Index (RSI) breakout strategy, Probabilistic analysis with (RSI). Most effective in the price Cumulative probability of a normal distribution that occupy the bulk of the market time. Transactions happen almost every day like Scalping follow trend. A Forex robot using the Relative Strength Index (RSI) indicator combined with an artificial neural network would be an advanced automated trading system th
I am the owner of EA KingKong. This is the MT4 version, if you are interested in copying the MT4 version, please copy it in this account   https://www.mql5.com/en/signals/2114953 EA KingKong is a full automatic trading system base on martingale on pair EURUSD only. Minimum balance to trade with this EA  is:  1. Leverage 1:500 minimum $3000 2. Leverage 1:200 minimum $7500 3. Leverage 1:100 minimum $10000 The strategy is: #1 - Place an order according to the direction of the market trend. #2 -
Sydney MT4
Ruben Octavio Gonzalez Aviles
1.2 (5)
시드니는 전통적인 기술적 분석과 함께 인공 지능을 사용하여 GBPUSD 및 USDJPY 심볼의 미래 시장 움직임을 예측하는 복잡하고 새로운 알고리즘입니다. 이 전문가용 어드바이저는 기술적 분석 지표의 데이터를 사용하여 훈련된 순환신경망, 특히 장단기 기억 셀을 사용합니다. 이 방법을 통해 EA는 향후 가격 변동과 가장 관련성이 높은 지표를 학습하고 이에 따라 행동 할 수 있습니다. 또한 LSTM 네트워크는 단기 및 장기 과거 데이터를 모두 고려할 수 있으므로 시계열 분석에 특히 적합합니다. 참고: 이 혜택은 한정된 소개용 혜택 입니다: 이 EA는 현재 가격으로 10장 중 1장만 판매됩니다. 다음 가격: $499 이 EA의 가격은 이 시스템으로 거래하는 사용자 수를 제한하기 위해 꾸준히 인상될 것입니다. 실시간 신호: https://www.mql5.com/en/signals/2021790 MT5 버전: https://www.mql5.com/en/market/product/96960 중
Bfxenterprise RSI
Ricky Romadona Tri Saputra
Bfxenterprise RSI Inspired and optimized RSI indicator is the focus of this Expert Advisor (EA). Designed with the use of RSI to perform optimal transactions. Reading trends and price reversals is done by the RSI whose functions have been sorted. Version of Bfxenterprise The version with the name “Bfxenterprise” focuses on special and thorough sorting of transactions. So this version does not always make transactions, unlike the Expert Advisor version in general. This version relies on accuracy
Mustang Best
Ignacio Agustin Mene Franco
Good community, on this occasion I present to you the EA Mustang Best for the GBP/USD pair. It is a bot programmed for the GBP/USD pair IT IS USED IN A TIME OF H1 (1 Hour) Back Testing From 2022 to 2024 current date. Broker Recommended to use EA. WorldForex It is used with a minimum capital of 1000 USD balance to operate calmly Without showing a graph of millions of dollars, this EA works REAL with monthly as well as annual passive income. By purchasing this EA, the EA Faraon Scalp comes as a gi
Forex Fighter 4
Jared Matthew Bryant
1 (1)
Forex Fighter is an advanced, multicurrency system that trades following symbols:  EURJPY, GBPCHF, EURGBP, USDCAD, AUDNZD, USDJPY and AUDCAD.  The strategy is based on built in indicators which I developed myself. Forex Fighter follows unique patterns that are repetitive but very often human brain is not capable of catching them.  The decision maker here are two Neural Networks which have to agree whether or not a particular trade will be placed. The probability of repeating a pattern has to be
The Viper EA
Profalgo Limited
3.18 (11)
NOTE: only recommended for these pairs currently: EURAUD;GBPAUD;GBPCHF;EURCHF;AUDCAD and AUDUSD NEW PROMO: Only a few copies copies available at 349$ Next price: 449$ Make sure to check out our " Ultimate EA combo package " in our   promo blog ! Live monitoring :  https://www.mql5.com/en/signals/1422803 The Viper EA uses sharp and effective "mean reversion" entries during the ranging period of the trading sessions (between 23h and 1h GMT+2, US DST).    These trades already have a very high
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
Ea with indicators stochastic. *** NEW VERSION WITH INDICATOR SETTING TO ON or OFF and MULTI TIMEFRAME ***   ATTENTION !!! - In the backtest, you cannot use multi time frames because there is only one time frame available. - For accurate results it is better to use a cent account with a 1 month rental period. ONLY 2 COPIES OUT OF 5 LEFT AT $ 499! After that, the price will be raised to $ 999. ==>   that every forex broker has different spreads and each currency has a different character, so w
Tiger Moon EA robot is a automated robot for Forex trade. The EA does use a strategy of the MACD combined with martingale . Input parameters MagicNumber : usually magic number of Tiger Moon EA is unique. Change its value only if your other EA uses the same magic number. Slippage : the maximum allowed slippage when you trade. The_MACD : the MACD parameters. Fast_EMA : Fast MACD Period. Slow_EMA : Slow MACD Period. Signal_SMA : Signal SMA Period. Management : will auto calculate lots size when M
Advisor FU PULSAR  - is a scalper with high accuracy of market entries. The EA is able to work with medium spreads (for testing we used a spread of 20 points on GBPUSD), it is not critical to slippage, and it is also not demanding on trading conditions. It uses Stop Loss as protection for orders, and uses virtual trailing stop as a percentage of the balance as order support. It does not open orders often but as accurately as possible. FU PULSAR does not use indicators. The algorithm contains
Doctor
Andrey Kolmogorov
This is a universal adviser working in several directions. The first and main thing is assistance in various situations that arise during trading. The second is scalping or positional trading according to the trend, open orders, at the same time, insured with support orders using the model of a quantum set of algorithms. Main Advantages Work in several directions; Increase in account balance during drawdown; Maintenance of already open orders; Building a grid lock; Scalping and/or trend trading
WaveKing EA Live signal https://www.mql5.com/en/signals/2203414 Instructions for use: Usage requirements Instructions  Symbol  GBPCAD, EURSGD  Period  M1  Platform  ICMarkets  RAW  Latency   No requirement, of course it would be better within 50ms  Blance  >50 USD  Martingle NO,1 order max parameter settings: Parameter name Setting instructions Lots= 0.01 default is 0.01, recommended is 0.01 for 100 US dollars, 0.05 for 500 US dollars, and so on SL= 800 stop
이 제품의 구매자들이 또한 구매함
AI Gen XII MT4
Denis Kurnev
5 (15)
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
Bonnitta EA
Ugochukwu Mobi
3.42 (19)
Bonnitta EA는 보류 포지션 전략(PPS)과 매우 진보된 비밀 거래 알고리즘을 기반으로 합니다. Bonnitta EA의 전략은 비밀 사용자 지정 지표, 추세선, 지원 및 저항 수준(가격 조치) 및 위에서 언급한 가장 중요한 비밀 거래 알고리즘의 조합입니다. 실제 돈으로 3개월 이상 테스트하지 않고 EA를 구입하지 마십시오. 실제 돈으로 BONNITTA EA를 테스트하고 아래 링크에서 결과를 확인하는 데 100주 이상(2년 이상)이 걸렸습니다. BONNITTA EA는 사랑과 권한 부여로 만들어졌습니다. 불법 복제 알고리즘의 가격 및 구현의 이유는 소수의 구매자에게만 해당됩니다. Bonnitta EA는 테스트를 거쳤으며 22년 동안 99,9% 품질의 실제 진드기를 사용하여 실제 시장 조건에 가까운 슬리피지 및 수수료로 스트레스 테스트를 성공적으로 통과했습니다. Expert Advisor에는 완전한 통계 제어를 통해 통계 수집 및 미끄러짐 제어 알고리즘이 포함되어 있습니다
Z4scalp
Cence Jk Oizeijoozzisa
5 (4)
-------------------------------------------소개: Z4SCALP--------------------------------------------- Z4SCALP는 마팅게일 없이 설계된 거래당 SL, 매우 작은 SL을 갖춘 고급 거래 로봇입니다. 독점 제공: 제품 하나를 구매하면 다른 하나를 무료로 받으세요! 나머지 세 가지 버전은 무료로 제공됩니다 . ------------------------------------------------------------------------------------------------------------------------------ 테스트 전략을 신뢰하지 않으면 매일 이 계정을 팔로우하세요. --------------------------------------------------------------------- 3개월 이상 작동했습니다. 매일 자세히 살펴보고 모니터링하세요. 계정 번호: 21
CoreX G MT4
Arseny Potyekhin
5 (1)
개요 CoreX G EA는 외환 시장의 복잡성을 해결하기 위해 특별히 설계된 고급 거래 시스템입니다. 최첨단 신경망, 정교한 머신 러닝 기술, 통합된 빅데이터 전략을 활용하여 CoreX G는 거래에서 탁월한 정확성과 보안을 제공합니다. 이 전문가 고문(EA)은 기술적 우수성과 프리미엄 고객 지원으로 차별화되며, 사용자가 질문이나 우려 사항에 대해 항상 도움을 받을 수 있도록 합니다. 신호: Live Signal 1 Live Signal 2 Blog: CoreX G EA 이 전략은 매우 독특하기 때문에 라이선스의 수를 제한하여 판매하고 싶습니다. 따라서 판매를 제한하기 위해 가격이 점차 상승할 것입니다. 다음 가격은   790 달러입니다. 브로커 모든 브로커, ECN/제로 스프레드 선호 레버리지 1:20부터 입금 최소 200$     심볼 XAUUSD 타임프레임 H1 빅데이터 통합 및 거래 전략 빅데이터는 CoreX G 전략의 핵심입니다. 이 시스템은 방대한 양의 역사적 및
Gold Scalper Trading
Ho Tuan Thang
4.15 (13)
ONLY 3 COPIES OUT OF 10 LEFT AT $399! After that, the price will be raised to $499. 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 one of the EAs I have used. using and trading with fund management account
Indicement MT4
Profalgo Limited
5 (1)
Indicement에 오신 것을 환영합니다! PROP FIRM 준비 완료! ->   여기에서 세트 파일을 다운로드하세요 프로모션 출시: 현재 가격으로는 몇 개밖에 남지 않았습니다! 최종 가격: 990$ NEW: Choose 1 EA for FREE! (limited to 2 trading account numbers) 최고의 콤보 딜     ->     여기를 클릭하세요 공개 그룹에 가입하세요:   여기를 클릭하세요   LIVE SIGNAL INDICEMENT는   제가 15년 동안 축적한 경험을 바탕으로 지수 시장에 전문적 거래 알고리즘을 개발했습니다. EA는 매우 잘 고안된 알고리즘을 사용하여 최상의 진입 가격을 찾고, 거래 위험을 분산하기 위해 내부적으로 여러 가지 전략을 실행합니다. 모든 거래에는 손절매와 이익실현이 있지만, 거래의 위험을 최소화하고 잠재력을 극대화하기 위해 추적 손절매와 추적 이익실현도 사용합니다. 이 시스템은 매우 인기 있고 검증된 전략, 즉 중요한
Quantum Emperor MT4
Bogdan Ion Puscasu
4.87 (137)
소개       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 Queen 또는 Quantum Gold Emperor를 무료로 받으실 수 있습니다!*** 자세한 내용은 비공개로 문의하세요. 새로운 Live Signal V5:   여기를 클릭하세요 MT5 버전 :  여기를 클릭하세요 Quantum EA 채널:       여기를 클릭하세요 10개 구매 시마다 가격이 $50씩 인상됩니다. 최종 가격 $1
The Gold Reaper MT4
Profalgo Limited
4.62 (29)
소품 회사 준비 완료!   (   세트파일 다운로드   ) 출시 프로모션: 현재 가격으로 몇 장 남지 않았습니다! 최종 가격: 990$ 1EA를 무료로 받으세요(2개의 거래 계정에 대해) -> 구매 후 저에게 연락하세요 Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal 골드 리퍼에 오신 것을 환영합니다! 매우 성공적인 Goldtrade Pro를 기반으로 구축된 이 EA는 동시에 여러 기간에 걸쳐 실행되도록 설계되었으며 거래 빈도를 매우 보수적인 것부터 극단적인 변동까지 설정할 수 있는 옵션이 있습니다. EA는 여러 확인 알고리즘을 사용하여 최적의 진입 가격을 찾고 내부적으로 여러 전략을 실행하여 거래 위험을 분산시킵니다. 모든 거래에는 손절매와 이익 실현이 있지만, 위험을 최소화하고 각 거래의 잠재력을 극대화하기 위해 후행 손절매와 후행 이익 이익도 사용합니다. 이 시스템은 매우
Diamond Titan FX MT4
Lo Thi Mai Loan
5 (8)
런칭 프로모션 현재 가격으로 구입할 수 있는 판매가 3개만 남았습니다. 다음 가격: $1233 무료로 Nasdaq Algo EA를 받으세요 -> 구매 후 저에게 연락하세요 Live signal - 1:    https://www.mql5.com/en/signals/2220190?source=Site+Profile+Seller Live signal - 2:  https://www.mql5.com/en/signals/2242066?source=Site+Profile+Seller#!tab=account 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.
XG Gold Robot MT4
Marzena Maria Szmit
4.48 (25)
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
Gold Trade Pro
Profalgo Limited
4.61 (23)
프로모션 시작! 449$에 얼마 남지 않았습니다! 다음 가격: 599$ 최종 가격: 999$ 1EA를 무료로 받으세요(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의 클럽에 합류하지만 한 가지 큰 차이점이 있습니다. 이것은 진정한 거래 전략입니다. "실제 거래 전략"이란 무엇을 의미합니까?   아시다시피 시장에 있는 거의 모든 Gold EA는 단순한 그리드/마팅게일 시스템으로 시
AI NoX EA MT4
Denis Kurnev
5 (1)
AI NoX EA is an innovative Forex expert advisor that combines advanced neural networks technologies with high-volume trading and   Matrix factorisation .The advisor uses complex algorithms to decompose large sets of market data, uncovering hidden patterns and correlations between various financial instruments. Details about Advisor Development Configuring the Advisor Real Time Signal XAUUSD:  https://www.mql5.com/en/signals/2254092 Real Time Signal USDJPY:  https://www.mql5.com/en/signals/225409
GRain EA MT4
Roman Erokhin
4.5 (6)
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
Diamond Ultimate에 오신 것을 환영합니다!!! BACKTEST GUIDE 출시 프로모션: 현재 가격으로 남은 복사본이 몇 개 없습니다! 최종 가격: 4993.99 달러 Diamond Ultimate 는 다양한 가격 행동에 기반한 알고리즘과 13년의 시장 경험을 결합하여 주문을 실행하고 자본을 관리합니다. 모든 거래에는 명확한 손절매 및 이익 실현 수준이 설정되어 있습니다. EA는 추적 손절매를 사용하여 이익을 확보합니다. EA는 동시에 최대 7개의 거래를 열 수 있지만, 설정에서 더 적은 수로 조정할 수 있습니다. 이 EA가 장기적으로 제 최고의 EA가 될 것이라고 확신하며, 매우 기대하고 있습니다. EA의 특징: - 주로 다우존스 페어(US30, W30, US30Cash, DJ30 등)로 거래합니다. - 2020년부터의 최상의 브로커 데이터를 통해 백테스트되었으며, 매우 강력한 자본 곡선을 보여줍니다. 거래는 명확하게 승패가 구분되며, 모든 손실
Way To Stars는 낮은 위험 기회를 활용하기 위해 시장 변동성이 낮은 기간에 거래하도록 특별히 설계된 야간 암표 EA입니다.이 야간 암표 EA는 잦은 거래를 위한 작은 가격 움직임을 포착하여 시간이 지남에 따라 수익을 축적하는 데 집중합니다.거래당 잠재적 손실을 제한하기 위해 엄격한 스톱로스 조치를 사용하여 효과적인 리스크 관리를 보장합니다.Way To Stars는 소위 말하는 신경망, 인공 지능, ChatGPT 또는 완벽한 직선 백테스팅 결과에 의존하지 않는 진실되고 정직한 거래 시스템입니다. MT5       사용 설명서   signal :  https://www.mql5.com/en/signals/2220466      Medium-low Risk 다음 가격: $ 699 setfile of Medium-low Risk setfile of High Risk 이 EA의 특징: 적합한 통화쌍:GBPUSD Load timeframe:임의의 시간 그리드도 없고, 마팅게일도 없고,
CyBRG RX Mt4
Arseny Potyekhin
5 (3)
Introducing CyBRG RX: The Next-Generation Trading Assistant Step into the future of trading with CyBRG RX, your cutting-edge trading companion designed to elevate your trading experience. Harnessing the power of advanced neural networks, CyBRG RX is engineered to analyze and adapt to ever-changing market conditions with unparalleled precision. Signals:   Live Signal 1 Live Signal 2 Because this strategy is so unique, I only want to sell a limited number of licenses. Therefore, the price
Supply Demand EA ProBot
Georgios Kalomoiropoulos
5 (2)
수요와 공급의 원칙에 기반한 완전 자동화된 조언자입니다 . 처음으로 우리는 완전히 자동화된 공급 및 수요 조언자를 제공합니다 . 거래가 쉬워졌으며 이제 거래 전략을 완벽하게 제어할 수 있습니다. 편리한 그래픽 제어판을 사용합니다. 15,000줄 이상의 코드가 포함된 매우 높은 품질의 알고리즘 거래 소프트웨어를 얻을 수 있습니다. EA 프로봇 공급 및 수요 가이드 Prop Firms를 거래하는 가장 좋은 방법은 자격을 갖춘 거래자가 되기 위한 모든 단계에 도전합니다. 모든 거래는 자동으로 이루어지고 관리됩니다. 항목을 선택하고 긴장을 풀면서 상금이 커지는 것을 지켜보세요. 패널 입력 매개변수: 거래 방향 선택(매수 또는 매도) 거래하려는 기간을 선택하세요. 서비스하려는 구역 유형 (넓음, 중간, 좁음, 매우 좁음)을 선택하십시오. 세 가지 자금 관리 옵션 중에서 선택하세요 일련의 승리 또는 손실 거래 후에 그만 두는 고문을 선택하십시오 . 위험 또는 ATR을
The Law of Jungle
Inrexea Limited
5 (2)
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
One Inch Slap
Inrexea Limited
No Backtesting is allowed: (OIS 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 verify that it works with your broker, the response is the same: backtesting results alone don't prove effectiveness. "OIS" : The Final product of ours
Exp4 AI Sniper for MT4
Vladislav Andruschenko
5 (2)
우리 팀은 MetaTrader 터미널을 위한 최첨단 스마트 트레이딩 전문가 자문인 트레이딩 로봇을 소개하게 되어 기쁘게 생각합니다. AI Sniper   는  MT4   터미널 모두를 위해 설계된 지능형 자체 최적화 거래 로봇입니다. 정교한 알고리즘과 최첨단 거래 방법론을 활용하는   AI Sniper는   거래 최적화의 우수성을 보여줍니다. 거래소와 주식 시장 모두에서 15년 이상의 폭넓은 경험을 바탕으로 우리 팀은 혁신적인 전략 관리 기능, 지능형 기능 및 직관적인 그래픽 인터페이스를 통합한 이 Expert Advisor를 제작했습니다. AI Sniper   의 각 측면은 엄격하게 테스트된 프로그램 코드에 의해 꼼꼼하게 설계되고 지원됩니다. 고급 컴퓨터 지능은 복잡한 기술 분석을 통해 작동하며 가격 변동이 있을 때마다 수천 건의 수학적 계산을 수행합니다. 이를 통해   AI Sniper는   강세 또는 약세 시장 추세에 관계없이 거래에 대한 최적의 진입 및 청산 지점을 정확히
Hercules AI MT4
Aleksandr Chebotaev
2 (1)
Hello, my name is Alexander. I would like to introduce you to my new development, the Hercules AI advisor. The advisor is synthesis of Price Action Method and Artificial Intelligence technologies.  It doesn't use  any indicators. The EA works well on Gold  pair. The advisor has shown stable performance for more than 10 years. It does not use dangerous trading methods such as martingale, etc. All transactions are protected by take profit and stop loss. I tried to make the advisor as easy to insta
실시간 신호-1: 여기를 클릭하세요 MT5 버전: 여기를 클릭하세요 Quantum Pip   를 무료로 받으세요 (2개 거래 계좌용) -> 구매 후에 저에게 연락주세요 Nasdaq Algo Trading에 오신 것을 환영합니다 이 EA (Expert Advisor)는 13년 이상의 프로그래밍 및 거래 경험을 가진 팀에 의해 생성 및 설계되었습니다. 이 EA는 장기적이고 안정적인 수익을 제공할 수 있는 시스템을 개발하는 데 중점을 둡니다. 리스크가 없는 전략을 사용하며, 마틴게일, 그리드, 헤징 방법이나 사실상 스톱로스가 없는 것과 같은 지나치게 긴 스톱로스를 사용하는 전략을 피합니다. 이 EA는 거래 봇에 대한 당신의 시각을 바꿀 것입니다. 상세 기능 - Dravas 돌파 사고방식에 기반하여 진입점을 찾기 위해 가격 행동 전략을 사용합니다. - Prop firm에 적합한 기능을 포함하고 있습니다: 드로우다운 관리, 뉴스 관리, 거래 시간 관리 등. - 선택할
Boring Pips MT4
Thi Thu Ha Hoang
5 (12)
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
AI TradingVision GPX MT4
Yu Mei Cheng
4.64 (14)
Strategy Introduction The EA will find the best entry and exit points based on the data trained by the neural network and the current market trend. It includes multiple loss exit strategies to ensure capital safety. Because the market is full of uncertainties, it is impossible to enter at the most ideal point every time. Our EA uses a unique batch entry method, adding up to 5 entry points. Even occasional misjudgments can quickly recover subsequently. Each order has a fixed stop loss (SL) and t
US30 Scalper EA MT4
Lo Thi Mai Loan
5 (6)
출시 프로모션! 현재 가격에서 몇 권만 남았습니다! 다음 가격: 1533 달러 최종 가격: 1993달러 Live signal:  https://www.mql5.com/en/signals/2220893?source=Site+Profile+Seller MT5:   https://www.mql5.com/en/market/product/107337?source=Site+Profile+Seller For more top Expert Advisors and Indicators, visit:   https://www.mql5.com/en/users/lothimailoan/seller I am Los, please subscribe to receive more updates:   https://www.mql5.com/en/users/lothimailoan/news US30 Scalper EA는 거래 및 코딩 분야에서 높은 경험을 가진 팀에 의해 개발된 차세대 스캘핑 로봇입니다. 미국(US30
AI Meta EA MT4
Denis Kurnev
4.43 (7)
Introducing the AI Meta EA advisor - a remarkable leap in the world of trading! If you've always aspired to something greater and uncharted, then AI Meta EA is what you need. It harnesses cutting-edge artificial intelligence technologies, developed using neural networks and hidden algorithms in the deepest corners of the internet. What makes AI Meta EA so uniquely exceptional? Forget about old strategies and mundane indicators! My advisor possesses an intuition that even the most experienced tra
Quantum Pip MT4
Lo Thi Mai Loan
Quantum PIP에 오신 것을 환영합니다 이 EA(Expert Advisor)는 100% 가격 행동을 기반으로 하며, 전날의 가격 변동 범위를 바탕으로 하여 다음 날 단 한 번의 거래를 실행합니다. 하루에 한 번만 거래하며, 시장의 가격 움직임을 존중합니다. 과거 데이터를 멀리 읽지 않으며, 이는 효과적이지 않기 때문입니다. 또한, 마틴게일이나 그리드 전략을 사용하지 않습니다. 모든 거래에는 명확한 손절매(Stop Loss)가 설정되어 있습니다. 이 EA는 명확한 실시간 신호를 제공하며, 가짜 백테스트나 데모 계정을 사용하지 않습니다. 가짜 인공지능(AI)이나 머신러닝을 만들려고 시도하지 않으며, 거래는 단순할 때 가장 효과적입니다. 거래에서 수익을 내는 데 중요한 것은 전략이 아니라 자본 관리입니다. 출시 프로모션 현재 가격으로 남은 수량은 얼마 없습니다! 최종 가격: $1993.99 EA는 명확한 **실계좌 신호**를 제공합니다. MT5 버전 설정 - 통화 쌍: US30,
Dark Algo
Marco Solito
4.75 (52)
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 .
FT Gold Robot MT4
Marzena Maria Szmit
4.4 (35)
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
Daytrade Pro Algo
Profalgo Limited
5 (5)
프로모션 시작: 현재 가격으로 제공되는 제한된 수의 사본 최종 가격: 990$ 신규: 1개를 무료로 받으세요!   (거래 계좌 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 및 여러 브로커에서 쉽게 실제 변수 확산 테스트를 사용하여 매우 안정적인 백 테스트를 보여줍니다. 수백 가지의 다양한 설정이 모두 테스트에서 수익성 있는 결과를 제공합니다(물론 저는 최고의 설정을 선택했습니다!). 매우 강력한 시스템 -> 설정은 상호
제작자의 제품 더 보기
Forex GPT Full
Evgeniy Kuzevanov
5 (1)
Этот советник расширенная версия Forex GPT MA  который самостоятельно создает сразу 4 нейронных сети и обучается во время работы или при запуске в тестере стратегий, сеть  создается из значений средней цены (на основе индикатора Moving Average). Другие мои продукты смотрите тут . Советник не использует сторонних библиотек, ни чего не подключает, все расчеты происходят внутри советника, с возможностью сохранения данных нейронной сети и всех его параметров при обучении, перезапуске или переносе на
필터:
리뷰 없음
리뷰 답변