• 概述
  • 评论
  • 评论 (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
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
The King Advisor MT4
Guillem Boix Martin
3.83 (12)
The King Advisor   是一种高度先进的和 神经网络 算法。其策略基于通过 复杂的自学系统 和多年经验与工作设计出的 交易系统 识别支撑位、阻力位和趋势线。 由经验丰富的交易员团队开发。 请注意,200 个示例为限 --> 已更新的售出总量  195 我们正在促销下一款 EA。请在购买后联系我们领取。此为限时优惠。 The King Advisor   能够 控制执行 。在进行交易之前,机器人会评估交易对的 流动性吸收 情况,最大限度地减少滑点,确保在 最佳条件 下执行交易。 The   King Advisor   拥有非常出色的 风险管理能力 ,可以控制订单。该专家顾问在最恶劣的市场条件下进行了 严格测试 ,证明了其适应不同市场情况的能力。此外,该专家顾问经过 20多年的 优化和测试,建模质量达到 99.9% 。   Dukascopy . 国王顾问》的详细评测。 配置和指南 常见问题 配置 符号 欧元兑美元 时间段 H1 建议的杠杆作用 1:30 或以上 最低余额 $ 100 与其他专家合作的可能性 是 关于产品 购买产品
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
Ichimoku Trade
Evgeniy Zhdan
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
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 -
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 是一种先进的多货币系统,可交易以下符号:EURJPY、GBPCHF、EURGBP、USDCAD、AUDNZD、USDJPY 和 AUDCAD。 该策略基于我自己开发的内置指标。 Forex Fighter 遵循重复的独特模式,但人脑通常无法捕捉它们。 这里的决策者是两个神经网络,它们必须就是否进行特定交易达成一致。 重复模式的概率必须高于 85%,然后才能进行交易。 该专家顾问不断扫描图表以寻找有利可图的交易,因此建议在质量不错的 VPS 上全天候 24/7 进行交易。 关于 EA: 它遵循经常重复的模式 内置了我自己开发的独特指标 在两个神经网络上运行 在 EURJPY H1 图表上运行 现场信号: https://www.mql5.com/en/signals/1822829 输入: 所有输入都按部分分类。 在第一个中,您可以更改幻数、注释和符号。 我强烈建议不要添加任何符号并保留默认符号。 尽管您可能会通过添加额外的交易品种获得一些交易,但它们将是随机的,这可能会毁掉您的账户。 在第二部分,您可以选择 EA 交易的时间。 我的建议是保
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
波浪之王 实盘信号  https://www.mql5.com/zh/signals/2203414 波浪之王是一款专注于亚盘波动小的时候进行波浪交易的EA,使用简单,设置方便,要求资金低,胜率高,盈亏比大,一次一单,不马丁,不网格,是一款可以放心使用的EA. 使用说明: 使用要求 说明  使用品种  GBPCAD、EURSGD  图标周期  M1  (1分钟图)  平台建议  ICMarkets  原始点差账户  延迟要求  无要求,当然能在50ms以内更好  账户资金  无要求,大于20美金即可,建议100美金以上  是否加仓  不加仓,一次一单 参数设置: 参数名称 设置说明 Lots=0.01  默认0.01手,建议100美金0.01,500美金0.05, 以此类推 SL=800  止损点数,无需修改  MagicNum=5588  订单识别码,无需修改 测试或者使用过程中,遇到问题,可以给我留言。
Tiburon EA
Elizaveta Erokhina
3.67 (3)
Tiburon EA is another one of my fully automatic EAs working specifically with the EURUSD currency pair. The Expert Advisor showed excellent results on the H1 timeframe in the period from 2011 to 2021. Tiburon EA is based on several trading indicators: RSI (Relative Strength Indicator), Stochastic Oscillator and my own custom indicator which makes it even more efficient. As an initial signal for determining suitable entry points, the EA uses the standard crossing of 2 levels: overbought and ove
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
ArazMomentum
Mahmoud Karkeh Abadi
The price will increase by $ 1 per day or reach a maximum of $ 300 This is not a marketing technique, it is just an incentive for you to value your time more There is an important but very simple rule To succeed in any market, this condition must be met            ️ Minimum Winrate = 1 / (1 + Reward:Risk) So how can we use this condition? The first step is to choose the ratio of profit to loss I like the value 1 How to determine the amount of stop loss and take profit? I will t
该产品的买家也购买
AI Gen XII MT4
Denis Kurnev
5 (20)
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
Gold Trading AI
Ho Tuan Thang
5 (6)
ONLY 3 COPIES OUT OF 10 LEFT AT $399! After that, the price will be raised to $499. - REAL SIGNAL: Default Setting:  https://www.mql5.com/en/signals/2258186 Gold Trading 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 Trading 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 entry
Z4scalp
Cence Jk Oizeijoozzisa
4.43 (7)
-------------------------------------------------------介绍:Z4SCALP------------------------------------------- Z4SCALP 是一种先进的交易机器人,每笔交易都有一个 SL,SL 非常小,设计时没有使用马丁格尔。 虚假利润 获利两周后消失,损失有限。这个专家不是那样工作的。 我的专家需要耐心。两个月后,结果和复利将出现在您的帐户中。 如果您急于快速获利。请不要购买这个专家 独家优惠:购买一款产品,即可免费获得另一款!其他三个版本均可免费使用 --------------------------------------------------------------------------------------------------------------------- 如果您不信任测试策略,请每天关注此帐户 -----------------------------------------------------------------------------------
CoreX G MT4
Arseny Potyekhin
5 (4)
概述 CoreX G EA 是一种专为应对外汇市场复杂性而设计的先进交易系统。通过利用尖端的神经网络、复杂的机器学习技术和集成的大数据策略,CoreX G 在交易中提供了卓越的准确性和安全性。这个专家顾问(EA)因其技术卓越性和优质的客户支持而脱颖而出,确保用户在遇到任何问题或疑虑时都能得到帮助。 信号:   Live Signal 1 Live Signal 2 Blog: CoreX G EA 由于该策略非常独特,我只想出售有限数量的许可证。因此,价格将稳步上涨以限制销售。 下一个价格是  790 USD 。 经纪商 任何经纪商,优选 ECN / ZERO 点差 杠杆 从 1 : 20 起 存款 最低 200 美元     符号 XAUUSD 时间框架 H1 大数据集成与交易策略 大数据是 CoreX G 策略的基石。它处理大量的历史和实时市场数据,以做出明智的交易决策。大数据的使用使系统能够更有效地识别外汇市场中的模式和趋势,从而做出更准确的预测并提高交易机会。通过将机器学习与大数据结合,EA 动态适应市场变化,不断整合新数据并优化其模型。 使用的神经网络 卷积神经
Quantum Emperor MT4
Bogdan Ion Puscasu
4.87 (143)
介绍     QuantumEmperor EA 是一款突破性的 MQL5 专家顾问,它正在改变您交易著名的 GBPUSD 货币对的方式!由拥有超过13年交易经验的经验丰富的交易者团队开发。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***购买 Quantum Emperor EA,即可免费获得 Quantum StarMan 或 Quantum Queen 或 Quantum Gold Emperor !*** 私信询问更多详情 新版直播信号 V5:   点击此处 MT5版本:  点击这里 量子 EA 通道:       点击这里 每购买 10 件,价格将增加 50 美元。最终价格为 1999 美元 量子皇帝EA     采用独特的策略,将单个交易连续拆分为六个较小的交易。这意味着 EA 每次执行交易时,都会自动将其分为 6 个较小的头寸。 量
Golden Ai EA MT4
Mansour Babasafary
40% discount only for the next 5 buyes (Original price: 600 $) Get a 50% bonus by buying (or even renting) any of our products. After buying (or renting), send a message for more information. Expert Golden Ai Combined with artificial intelligence Control the AI with a variety of simple settings Without using dangerous strategies (all trades have a profit limit and a loss limit) Can be used in Gold (XAUUSD) currency pair and 3 important time frames An expert who has been trained by artif
Waka Waka EA
Valeriia Mishchenko
4.31 (48)
EA has a live track record with 4.5 years of stable trading with low drawdown: Live performance MT5 version can be found here Waka Waka is the advanced grid system which already works on real accounts for years. Instead of fitting the system to reflect historical data (like most people do) it was designed to exploit existing market inefficiencies. Therefore it is not a simple "hit and miss" system which only survives by using grid. Instead it uses real market mechanics to its advantage to make p
Bitcoin Robot MT4
Marzena Maria Szmit
5 (17)
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
The Infinity EA MT4
Abhimanyu Hans
4.2 (5)
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 与道具公司完全兼容。 促
Bonnitta EA
Ugochukwu Mobi
3.42 (19)
Bonnitta EA 基于挂单策略 (PPS) 和非常先进的秘密交易算法。 Bonnitta EA 的策略是秘密自定义指标、趋势线、支撑和阻力位(价格行动)和上述最重要的秘密交易算法的组合。 不要在没有超过 3 个月的任何真实货币测试的情况下购买 EA,我花了超过 100 周(超过 2 年)在真实货币上测试 BONNITTA EA 并在下面的链接中查看结果。 BONNITTA EA 由爱和力量组成。 仅适用于少数买家,这是盗版算法的价格和实施的原因。 Bonnitta EA 在 22 年的时间内使用质量为 99.9% 的真实报价成功通过了压力测试,滑点和佣金接近真实市场条件。 Expert Advisor包含统计采集和滑点控制的算法,具有完整的统计控制; 此信息用于保护您免受经纪人的欺骗。 Bonnitta EA 在下订单之前控制经纪人执行的质量,它还成功地通过了历史数据和不同数据馈送的蒙特卡罗模拟方面的严格标准。 结果 策略测试器的 Expert Advisor 结果:初始存款为 1000 美元的 Bonnitta EA 在 2020 年 1 月 1 日至 202
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
AI TradingVision GPX MT4
Yu Mei Cheng
4.64 (14)
注意事项 EA 最多包含 6 个入场点,每次交易的手数为下单手数乘以 6,因此请注意不要使用过大的手数。 默认的手数计算方式不是资金百分比。我们的默认计算方式不受杠杆影响,能更精确地控制风险。 建议使用 1000 美元以上的资金以提高风险抗性。 同时使用多个货币对会有风险叠加的可能,请注意。 此为MT5版本。MT5版本能更好的模拟市场环境。建议使用。如需MT4版本,我们会在稍后一段时间发布。 请注意,交易涉及风险,理解并有效管理这些风险非常重要。 实时信号: 点击查看 目前我们有一项黄金EA赠送活动,购买后请联系我们获取。该活动为限时活动。 运行推荐 推荐货币对:   GBPUSD,   USDCAD , AUDUSD 时间周期:M15 运行资金:建议 1000 美元以上 账户类型:无特殊要求,低点差效果更好 杠杆:无特殊要求 参数功能说明: 使用手册。 购买后建议阅读常见问题解答(FAQ):" 点击这里查看 " 关于销售: 我们目前也在使用此EA,并且不断努力改进它。当它变得足够优秀时,我们可能会停止销售它。然而,已经购买的客户无需担心。根据平台协议,平台会保留最新版本的E
The Gold Reaper MT4
Profalgo Limited
4.54 (28)
道具準備就緒! ( 下載SETFILE ) 推出促銷活動: 目前價格只剩幾本! 最終價格:990$ 免費取得 1 個 EA(適用於 2 個交易帳號)-> 購買後聯絡我 Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal 歡迎來到黃金收割者! 該 EA 以非常成功的 Goldtrade Pro 為基礎,設計為同時在多個時間框架上運行,並且可以選擇將交易頻率從非常保守到極端波動設定。 EA 使用多種確認演算法來找到最佳入場價格,並在內部運行多種策略來分散交易風險。 所有交易都有停損和止盈,但也使用追蹤停損和追蹤停盈來最小化風險並最大化每筆交易的潛力。 該系統建立在非常流行且經過驗證的策略之上:交易突破重要的支撐位和阻力位。   黃金非常適合這種策略,因為它是一種波動性很大的貨幣對。 系統根據您的帳戶規模和最大允許提款設定自動調整交易頻率和手數! 回測顯示出非常穩定的成長曲線,回撤非常可控且恢復很快。  該 EA 已針對黃金的最長可用期限進行了壓力測試,為不同經紀商使用了
Way To Stars是一款夜间头皮EA,专门设计在市场波动性较低的时间段进行交易来利用低波动性,以此降低风险。这款夜间头皮EA专注于利用小的价格变动进行频繁交易,通过积少成多的方式积累利润。本EA采用严格的止损措施来限制每笔交易的潜在亏损,确保了风险管理的有效性。Way To Stars 是一个真实且诚实的交易系统,它不依赖于号称的神经网络、人工智能、ChatGPT或完美的直线回测结果。 MT5版本     用户手册     signal :  https://www.mql5.com/en/signals/2260126   下一个价格: $ 699 setfile of Medium-low Risk  (signal's setfile) setfile of High Risk 本EA的特点: 适合货币对:GBPUSD 加载时间框架:任意 无网格,无马丁,一次交易 将订单分散为多笔订单,降低风险,提高成功率 通过最大持仓时间和最大浮亏比例来管理风险 自动调整交易时间,考虑时区和夏令时变化 小资金账户适用 适用于低点差高流动性平台,如IC Markets 关于MT4版本的特
HeXon FX MT4
Arseny Potyekhin
HeXon FX – 外汇交易者的首选交易解决方案 HeXon FX 是一款高度先进的专家顾问(EA),旨在外汇市场中进行精准操作。利用尖端的交易策略,HeXon FX 为交易主要货币对 EURUSD 提供了一种灵活且稳定的解决方案。该 EA 在市场波动较大的阶段表现尤为出色,能够有效适应不同的市场条件,从而实现持续盈利并将风险降至最低。 信号:   Live Signal 1 由于该策略非常独特,我只想出售有限数量的许可证。因此,价格将稳步上涨以限制销售。 下一个价格是  690 USD 。 经纪商 任何经纪商,优选 ECN / ZERO 点差 杠杆 从 1 : 20 起 存款 最低 50 美元     符号 EURUSD 时间框架 H1 HeXon FX 独特的策略 HeXon FX 结合了多种复杂的交易策略,可以单独使用或组合使用,以达到最佳性能。以下是这些策略的概述,以及它们为何如此有效: 基于波动性的突破策略 HeXon FX 使用了一种先进的突破策略,能够识别关键的支撑和阻力水平。当市场突破这些关键点时,EA 精准开仓,利用价格波动的动量。这种策略在波动性
Supply Demand EA ProBot
Georgios Kalomoiropoulos
5 (2)
基于 供需 原则的 全自动 EA。第一个提供完全自动化的 供需 EA 。 现在 交易 变得轻松 ,完全控制您的交易策略 通过用户友好的图形交易面板。 您将获得包含超过 15,000 行代码的超高质量 算法交易 软件。 供应需求 EA ProBot 手册 交易“Prop Firms Challenges”和通过所有阶段成为合格交易员的最佳方式。 所有交易均自动进行和管理。只需 选择您的输入 ,然后坐下来,观察您的利润增长。 面板输入参数: 选择 交易方向 (买入或卖出) 选择您想要进行交易的 时间范围 选择您想要交易 的区域类型 (宽、中、窄、超窄) 选择 3 种资金管理 选项 选择 EA 在 盈利 或 亏损 交易 次数后停止 选择 基于风险 或 基于 ATR 的 TP 和 SL 比率 选择 看涨通道 或 看跌通道 内的交易区域 选择 上限 和 下限 范围 如果您只想在一天中的特定时段进行交易,请选择 时间范围 多种 追踪止损 和 盈亏平衡 功能可供选择 您最多可以查看三个更高时间范围的区域。因此,如果您处于 30 分钟时间范围内,则可以激活 1 小时、
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
Fenghuang Rig EA MT4
Sof'ia Vlasova
5 (3)
Fenghuang EA utilizes clustering principles in machine learning to analyze data, identifying groups of objects or events with similar features or relationships. It uncovers hidden patterns and categorizes objects by similarities, aiding in the discovery of causal relationships. The EA allows for in-depth data analysis, highlighting significant relationships without risky techniques like martingale, netting, or scalping, making it compatible with various brokerage environments. Read more about t
Dark Algo
Marco Solito
4.75 (53)
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 .
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
Boring Pips MT4
Thi Thu Ha Hoang
5 (12)
你是否曾 经想过为什么大多数专家顾问在实盘交易中并不有效,尽管它们在回测中表现完美? 最有可能的答案是 过拟合。许多专家顾问被创建为对现有的历史数据进行 “ 学 习 ” 和完美适 应,但由于构建模型的泛化能力不足,它们无法预测未来。 一些开 发者可能根本不知道过拟合的存在,或者他们知道但没有办法防止它。其他人则将其作为美化回测结果的工具,他们添加了数十个输入参数,而不考虑统计学意义,使交易策略过度依赖历史数据,并试图说服他人他们的专家顾问未来能够实现类似的表现。 如果你 对这个迷人的主题感兴趣,并想更深入地了解过拟合,请参考我的这些文章: 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
Sequoia mt4
Yvan Musatov
3.4 (5)
The Sequoia Expert Advisor is a professional market analyst working using a specialized algorithm. Based on the analysis of prices over a specific time interval, it reveals the strength and amplitude of prices using a unique indication system based on real data. When the strength of the trend and its direction changes, the expert closes the current position and opens a new one. The bot's algorithms include signals about overbought and oversold markets. A purchase occurs if the signal falls belo
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
Indicement MT4
Profalgo Limited
5 (1)
歡迎來到指數! 道具準備就緒! -> 在這裡 下載設定文件 推出促銷活動: 目前價格只剩幾本! 最終價格:990$ NEW: Choose 1 EA for FREE! (limited to 2 trading account numbers) 終極組合優惠   ->   點擊此處 加入公共團體: 點擊此處   LIVE SIGNAL INDICEMENT 將我 15 年在創建專業交易演算法方面的經驗帶入指數市場。 EA 使用經過深思熟慮的演算法來找到最佳入場價格,並在內部運行多種策略來分散交易風險。 所有交易都有停損和止盈,但也使用追蹤停損和追蹤停盈來最小化風險並最大化每筆交易的潛力。 該系統建立在非常流行且經過驗證的策略之上:交易突破重要的支撐位和阻力位。   我很高興地說,在多年的 EA 開發過程中,我已經完善了這個策略 該 EA 專為 US500、US30 和 NAS100 指數交易而開發。 這些市場特別適合這種類型的策略交易。 回測顯示出非常穩定的成長曲線,回撤非常可控且恢復很快。  該 EA 已針對所有 3 個指數進行了壓力測試,使用不同經紀商的多個價格回饋
Forex trading bot ai 是一个基于人工智能的机器人,具有自我学习能力。该机器人根据设置中指定的输入参数启动其首笔交易。每次执行的交易都会被记录在文件中(记忆)。随后,机器人会分析所有已关闭的交易及其关闭时的市场条件。如果已关闭交易的整体利润为负,机器人将检查这些交易的初始参数,并进行调整以改善交易结果。通过这种方式,机器人不断学习并自主选择最有效的交易参数。机器人的学习过程在关闭前10个订单后开始。机器人通过分析其最后100笔交易来学习。设置中的输入参数仅用于开启前10笔订单,之后机器人将自行优化设置。因此,机器人在图表上的交易时间越长,表现就会越好。 购买该机器人的优势: 一个自动交易机器人。 用于有效开启前几笔交易的SET文件,帮助机器人在学习阶段获得更好表现。 访问开发者的封闭VIP频道。 可以在20台不同的电脑上安装机器人。 您可以将机器人安装在不限数量的交易账户上。机器人绑定到电脑。 免费获取机器人的所有最新更新。 可以无限期使用机器人,无任何限制。 机器人的优势: 机器人基于人工智能,能够自我学习并改善交易结果。 机器人可以独立选择最有效的交易参数。 机器
Diamond Titan FX MT4
Lo Thi Mai Loan
5 (8)
你好,我是 Diamond Titan FX。 这个 EA 专门为 US30 交易对设计。 EA 不使用任何高风险策略,如 Martingale 或 Grid。 默认情况下,EA 为每笔交易设置固定止损(SL)为 50 点,但你可以根据需要进行更改。 EA 还实现了一个从 10 点开始锁定利润的移动止损,你也可以修改这个设置。 它具有整个账户的回撤管理功能。 EA 包含一个新闻过滤选项,如果你希望在新闻期间关闭交易,可以使用这个功能。 特别提示:EA 的实时信号已经运行超过 7 个月。清晰透明。 实时信号 1:   https://www.mql5.com/en/signals/2220190?source=Site+Profile+Seller   实时信号 2:   https://www.mql5.com/en/signals/2242066?source=Site+Profile+Seller   促销:购买 Diamond Titan 可免费获得 2 个 EA(US30 Scalper 和 Nasdaq Algo)=> 请发消息了解更多详情。 通过 Prop 挑战的交易历史
Ai Hybrid Robot MT4
Mansour Babasafary
Several experts in one expert With this expert, you can use several up-to-date strategies Enhanced with artificial intelligence Can be used in several popular forex currencies Can be used in the most popular forex time frames Without using high-risk strategies Attributes : Can be used in the EURUSD , GBPUSD , USDCHF , AUDUSD , USDCAD , NZDUSD  currency pairs Can be used in M30 , H1 , H4 , D1 time frames Has profit limit and loss limit Without using risky strategies like martingale or hedg
Big Forex Players MT4
Marzena Maria Szmit
4.71 (28)
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
实时信号-1: 点击这里 MT5版本: 点击这里 免费获取 Quantum Pip   (适用于2个交易账户)-> 购买后联系我 欢迎来到Nasdaq算法交易 此EA(智能交易系统)由具有超过13年编程和交易经验的团队创建和设计。 该EA专注于开发能够长期稳定盈利的系统。它采用无风险策略,避免使用马丁格尔、网格和对冲方法,以及那些使用过长止损的策略,这些策略实际上与没有止损没有区别。 此EA将改变您对交易机器人的看法。 详细功能 - 使用价格行为策略,根据Dravas突破思维寻找入场点。 - 包含适合资金管理公司的功能:管理回撤、新闻和交易时间。 - 提供三种策略模式供选择。 - 不使用马丁格尔、网格、对冲或无止损策略。 - 每笔交易始终固定止损。 - 每次只开一笔交易。 - 注重胜率,因此风险回报率(RR)较小。止盈(TP)是灵活的,交易可能具有RR = 0.2、0.5、1或2。 - 提供来自真实账户的实时信号,确保透明和清晰。 - 根据用户需求定期更新算法。 安装: 点击这里 - 主要用于Nas100、USTech、US100(纳斯达克100)或U
Btcusd Grid
Ahmad Aan Isnain Shofwan
BTCUSD GRID EA 是一款旨在使用网格交易策略的自动化程序 BTCUSD GRID EA 对于初学者和经验丰富的交易者都非常有用。 虽然您可以使用其他类型的交易机器人,但网格交易策略的逻辑性质使加密货币网格交易机器人可以轻松地执行自动交易而不会出现问题。 如果您想尝试网格交易机器人,BTCUSD GRID EA 是整体上最好的平台。 BTCUSD GRID EA 对于加密货币行业非常有效,因为即使在货币波动的情况下,它也能够以理想的价格点执行自动交易。 这种自动交易策略的主要目的是在 EA 内以预设的价格变动发出大量买卖订单。 这种特殊的策略很容易实现自动化,因此通常用于加密货币交易。 如果使用得当,网格交易策略可以让人们在资产价格变化时赚钱。 网格 交易策略已被证明是最有效的。 由于加密货币价格的波动。   -------------------------------------------------- ----------------------------------------------------   ---------- -----------
作者的更多信息
Forex GPT Full
Evgeniy Kuzevanov
5 (1)
Этот советник расширенная версия Forex GPT MA  который самостоятельно создает сразу 4 нейронных сети и обучается во время работы или при запуске в тестере стратегий, сеть  создается из значений средней цены (на основе индикатора Moving Average). Другие мои продукты смотрите тут . Советник не использует сторонних библиотек, ни чего не подключает, все расчеты происходят внутри советника, с возможностью сохранения данных нейронной сети и всех его параметров при обучении, перезапуске или переносе на
筛选:
无评论
回复评论