• 概述
  • 评论
  • 评论 (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
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
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)
悉尼是一种复杂而新颖的算法,使用人工智能与传统的技术分析相结合,预测 英镑兑美元 和 美元兑日元 符号的未来市场走势。该专家顾问利用递归神经网络,特别是长期记忆细胞,利用技术分析指标的数据进行训练。通过这种方法,EA能够学习哪些指标与未来价格走势最相关,并根据这些指标采取行动。此外,LSTM网络特别适用于时间序列分析,因为它们能够同时考虑短期和长期的历史数据。 注意:这是一个 有限的介绍性报价 :本EA的 10份拷贝中 只有 1份 将以当前价格出售。下一个价格: 499美元 该EA的价格将稳步上升,以限制使用该系统交易的用户数量。 实时信号: https://www.mql5.com/en/signals/2021790 MT5版本: https://www.mql5.com/en/market/product/96960 重要提示: 请在购买产品后直接通过PM与我们联系,以获得更多信息和额外的服务。 机械学 这个专家顾问可以 在没有 马丁格尔、智能恢复、网格交易、平均数或任何其他可能对没有经验的交易者造成重大损失的方法的情况下使用。 每个头寸从一开始就有一个固定的或追踪的止盈和固
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  订单识别码,无需修改 测试或者使用过程中,遇到问题,可以给我留言。
该产品的买家也购买
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,我花了超过 100 周(超过 2 年)在真实货币上测试 BONNITTA EA 并在下面的链接中查看结果。 BONNITTA EA 由爱和力量组成。 仅适用于少数买家,这是盗版算法的价格和实施的原因。 Bonnitta EA 在 22 年的时间内使用质量为 99.9% 的真实报价成功通过了压力测试,滑点和佣金接近真实市场条件。 Expert Advisor包含统计采集和滑点控制的算法,具有完整的统计控制; 此信息用于保护您免受经纪人的欺骗。 Bonnitta EA 在下订单之前控制经纪人执行的质量,它还成功地通过了历史数据和不同数据馈送的蒙特卡罗模拟方面的严格标准。 结果 策略测试器的 Expert Advisor 结果:初始存款为 1000 美元的 Bonnitta EA 在 2020 年 1 月 1 日至 202
Z4scalp
Cence Jk Oizeijoozzisa
5 (4)
-------------------------------------------------------介绍:Z4SCALP------------------------------------------- Z4SCALP 是一种先进的交易机器人,每笔交易都有一个 SL,SL 非常小,设计时没有使用马丁格尔。 独家优惠:购买一款产品, 免费获得另一款 !其他三个版本均可免费使用 ---------------------------------------------------------------------------------------------------------------- 如果您不信任测试策略,请每天关注此帐户 ------------------------------------------------------------------------------------ 它已经工作了三个多月,每天仔细查看,监控, 帐号:21756797 密码:A12345678 服务器:ICMarketsSC-Demo02 --------
CoreX G MT4
Arseny Potyekhin
5 (1)
概述 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 动态适应市场变化,不断整合新数据并优化其模型。 使用的神经网络 卷积神经
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)
歡迎來到指數! 道具準備就緒! -> 在這裡 下載設定文件 推出促銷活動: 目前價格只剩幾本! 最終價格: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 個指數進行了壓力測試,使用不同經紀商的多個價格回饋
Quantum Emperor MT4
Bogdan Ion Puscasu
4.87 (137)
介绍     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 个较小的头寸。 量
The Gold Reaper MT4
Profalgo Limited
4.62 (29)
道具準備就緒! ( 下載SETFILE ) 推出促銷活動: 目前價格只剩幾本! 最終價格:990$ 免費取得 1 個 EA(適用於 2 個交易帳號)-> 購買後聯絡我 Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal 歡迎來到黃金收割者! 該 EA 以非常成功的 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.mql5.com/en/blogs/post/757093 常见
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$ 免費取得 1 個 EA(適用於 2 個交易帳號)-> 購買後聯絡我 Ultimate Combo Deal   ->   click here New live signal:   https://www.mql5.com/en/signals/2084890 Live Signal high risk :  https://www.mql5.com/en/signals/2242498 Live Signal Set Prop Firm Set JOIN PUBLIC GROUP:   Click here Parameter overview Gold Trade Pro 加入了黃金交易 EA 俱樂部,但有一個很大的區別:這是一種真正的交易策略。 “真實交易策略”是什麼意思? 您可能已經註意到,市場上幾乎所有黃金 EA 都是簡單的網格/鞅系統,當市場與初始倉位相反時,該系統會添加交易。  它們通常偽裝成“神經網絡/人工智能/機器學習”,但如果您對外彙和 EA 有一點經驗,您可
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 功能: - 主要在道琼斯指数对(US30、W30、US30Cash、DJ30 等)上交易。 - 从2020年起使用最佳经纪商数据进行回测,显示出非常强劲的权益曲线。交易清晰地显示出盈利和亏损。每次亏损的连续出现都能迅速恢复。 - 支持0、1或2位数点差的经纪商。 - 不使用如马丁格尔或网格等高风险策略。 - 不使用过远的止损来操控胜率,避免因仅1-2笔亏损交易而爆仓。 - 不使用虚假的AI或虚假的机器学习。 EA 提供清晰的实时账户信号。 下载设置文件 MT5 版本 设置: - 货币对:US30、DJ3
Way To Stars是一款夜间头皮EA,专门设计在市场波动性较低的时间段进行交易来利用低波动性,以此降低风险。这款夜间头皮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 加载时间框架:任意 无网格,无马丁,一次交易 将订单分散为多笔订单,降低风险,提高成功率 通过最大持仓时间和最大浮亏比例来管理风险 自动调整交易时间,考虑时区和夏令时变化 小资金账户适用 适用于低点差高流动性平台,如IC Markets 关于MT4版本的特别
CyBRG RX Mt4
Arseny Potyekhin
5 (3)
介绍 CyBRG RX:下一代交易助手 踏入交易的未来,与您的尖端交易伴侣 CyBRG RX 一起提升您的交易体验。借助先进的神经网络,CyBRG RX 可以前所未有的精确性分析和适应不断变化的市场条件。 信号:   实时信号 1 实时信号 2 由于该策略非常独特,我只想出售有限数量的许可证。因此,价格将稳步上涨以限制销售。 下一个价格是  890 USD 。 经纪商 任何经纪商,优选 ECN / ZERO 点差 杠杆 从 1 : 20 起 存款 最低 50 美元     符号 USDJPY 时间框架 H1 为什么选择 CyBRG RX? 最先进的神经网络 :CyBRG RX 利用复杂的 AI 算法进行学习和进化,为您提供深入的市场分析。 自适应策略 :针对金融市场的动态特性,CyBRG RX 不断调整其策略,确保您始终领先一步。 用户友好界面 :凭借简洁、直观的设计,CyBRG RX 使初学者和经验丰富的交易者都能轻松使用其强大的功能。 实时分析 :通过实时分析,获得及时的数据驱动洞见,做出明智的决策。 强大的安全性 :您的数据安全是我们的首要任务。CyBRG
Supply Demand EA ProBot
Georgios Kalomoiropoulos
5 (2)
基于 供需 原则的 全自动 EA。第一个提供完全自动化的 供需 EA 。 现在 交易 变得轻松 ,完全控制您的交易策略 通过用户友好的图形交易面板。 您将获得包含超过 15,000 行代码的超高质量 算法交易 软件。 供应需求 EA ProBot 手册 交易“Prop Firms Challenges”和通过所有阶段成为合格交易员的最佳方式。 所有交易均自动进行和管理。只需 选择您的输入 ,然后坐下来,观察您的利润增长。 面板输入参数: 选择 交易方向 (买入或卖出) 选择您想要进行交易的 时间范围 选择您想要交易 的区域类型 (宽、中、窄、超窄) 选择 3 种资金管理 选项 选择 EA 在 盈利 或 亏损 交易 次数后停止 选择 基于风险 或 基于 ATR 的 TP 和 SL 比率 选择 看涨通道 或 看跌通道 内的交易区域 选择 上限 和 下限 范围 如果您只想在一天中的特定时段进行交易,请选择 时间范围 多种 追踪止损 和 盈亏平衡 功能可供选择 您最多可以查看三个更高时间范围的区域。因此,如果您处于 30 分钟时间范围内,则可以激活 1 小时、
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 年的丰富经验,精心设计了此专家顾问,融合了创新的策略管理功能、智能功能和直观的图形界面。 AI Sniper 的每个方面都经过精心设计,并由经过严格测试的程序代码支持。 其先进的计算智能通过复杂的技术分析进行运作,每次价格变动都会进行数千次数学计算。 这使得 AI Sniper 能够精确定位交易的最佳入场点和出场点,无论是在看涨还是看跌的市场趋势中,确保精确执行买入或卖出订单。 我们的愿景、使命和战略始终致力于为交易者提供无与伦比的成功工具。 AI Sniper 将多种交易策略功能融合到一个单一的、全面的交易机器人中,旨在提升您的交易能力。 我们的首要目标是您的成功。 我们邀请您下载、测试并亲眼见证 AI Sniper 的变革能力。 今天就体验交易的未来。 MT5版本 Full De
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算法交易 此EA(智能交易系统)由具有超过13年编程和交易经验的团队创建和设计。 该EA专注于开发能够长期稳定盈利的系统。它采用无风险策略,避免使用马丁格尔、网格和对冲方法,以及那些使用过长止损的策略,这些策略实际上与没有止损没有区别。 此EA将改变您对交易机器人的看法。 详细功能 - 使用价格行为策略,根据Dravas突破思维寻找入场点。 - 包含适合资金管理公司的功能:管理回撤、新闻和交易时间。 - 提供三种策略模式供选择。 - 不使用马丁格尔、网格、对冲或无止损策略。 - 每笔交易始终固定止损。 - 每次只开一笔交易。 - 注重胜率,因此风险回报率(RR)较小。止盈(TP)是灵活的,交易可能具有RR = 0.2、0.5、1或2。 - 提供来自真实账户的实时信号,确保透明和清晰。 - 根据用户需求定期更新算法。 安装: 点击这里 - 主要用于Nas100、USTech、US100(纳斯达克100)或U
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
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,并且不断努力改进它。当它变得足够优秀时,我们可能会停止销售它。然而,已经购买的客户无需担心。根据平
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 这是一款使用 100% 价格行为的 EA(智能交易系统),基于前一天的价格波动范围,并将在第二天执行一笔交易,每天仅一笔交易。EA 尊重市场的价格行为,不回溯过多历史数据,因为这样没有效果,也不使用马丁格尔或网格策略。EA 每笔交易都有明确的止损。 该 EA 提供清晰的实时信号,不使用虚假的回测结果,也不使用模拟账户。EA 不尝试创建假 AI 或机器学习,因为交易只有简单才能有效。在交易中,重要的是资金管理,而不是策略。 推出优惠 当前价格仅剩几份!  最终价格:$1993.99  EA 提供明确的真实账户信号 。 MT5 版本 设置 - 货币对:US30、DJ30(道琼斯指数对)  - 时间框架:每日  - 最低存款:不限  - 账户类型:低点差的原始账户  -   **重要!!!** :使用低点差账户以获得最佳结果! 特点 - 交易 US30。  - 不使用网格、对冲或多笔同时开单。  - 每笔交易都有止损保护。  - 内置自动手数调整功能。  - 安装非常简单;无需更改设置,默认设置适用于大多数经纪商。  - 推荐使用 VPS,以确保 EA
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 個 EA! (2 個交易賬戶) Ultimate Combo Deal   ->   click here LIVE RESULTS:   https://www.mql5.com/en/signals/1949810 JOIN PUBLIC GROUP:   Click here Set Files 歡迎來到 DayTrade Pro Algo! 經過多年的市場研究和不同策略的編程,我發現了一個具有良好交易系統所需的一切的算法: 它是獨立於經紀人的 它是獨立傳播的 它使用真實可變點差測試在 MT4、MT5、TDS2 和多個經紀商上輕鬆顯示非常穩定的回測 數百種不同的設置都在測試中給出了有利可圖的結果(當然我選擇了最好的!) 非常強大的系統 -> 設置可以互換,因此使用 USDJPY 的設置運行 EURUSD 仍然是有利可圖的。   已經在 13 個貨幣對上運行:EURUSD;GBPUSD;USDJPY;AUDUSD;XAUUSD;GBPJPY;USDCAD;EURJPY;EURNZD;EURAU
作者的更多信息
Forex GPT Full
Evgeniy Kuzevanov
5 (1)
Этот советник расширенная версия Forex GPT MA  который самостоятельно создает сразу 4 нейронных сети и обучается во время работы или при запуске в тестере стратегий, сеть  создается из значений средней цены (на основе индикатора Moving Average). Другие мои продукты смотрите тут . Советник не использует сторонних библиотек, ни чего не подключает, все расчеты происходят внутри советника, с возможностью сохранения данных нейронной сети и всех его параметров при обучении, перезапуске или переносе на
筛选:
无评论
回复评论