• 概述
  • 评论
  • 评论 (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
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
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
MyVolume Profile Scalper
Ahmad Aan Isnain Shofwan
购买之前,请使用模拟帐户 MyVolume Profile FV(免费版本) 进行几个月的前向测试。了解它,并找到最适合您的设置。 MyVolume Profile Scalper EA 是一种先进的 自动化   程序,旨在使用交易量配置文件,该程序 获取 指定时间段内特定价格水平的总交易量,并将总交易量划分为上涨交易量(使价格上涨的交易) ) 或下跌成交量(导致价格下跌的交易),然后开仓或 下 单。 该 EA 的核心引擎使用 Volume、Heiken Ashi 和 ADX 指标。 使用可定制的移动平均线的附加过滤器来确保并遵循移动平均线指标给出的趋势。 此过滤器是可选的,默认情况下为 TRUE(使用此过滤器)。 MyVolume Profile Scalper EA  按降序(从大到小时间范围)扫描所有时间范围(D1、H4、H1、M30、M15、M5、M1),并在条件匹配时下订单,您可以跟踪该交易量的交易量概况用于订单的时间范围。 扫描的时间范围是    可定制的。 特征: 批次模式:固定批次 如果您不需要鞅,请将鞅乘数设置为 1 来启用/禁用鞅 使用网格策略。 根据定义的距离(
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
Live performance   KenniFX  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 profit Supported currency pairs:  AUDCAD, NZDCAD Recommended timeframe:   M15 Features: One Chart Setup:
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.25 (4)
悉尼是一种复杂而新颖的算法,使用人工智能与传统的技术分析相结合,预测 英镑兑美元 和 美元兑日元 符号的未来市场走势。该专家顾问利用递归神经网络,特别是长期记忆细胞,利用技术分析指标的数据进行训练。通过这种方法,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
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 交易的时间。 我的建议是保
Check MYFXBOOK HERE!!! Check out my LIVE channel to see this EA in profitable action! Check My Profile. Or Check out a video of this EA in the screenshot section at the bottom of this page. Recover your MOST PRECIOUS assets: TIME and PEACE of MIND . Set-and-Forget, Plug-and-Play, autonomous, multifunction, DayTrading EA.    BING DayTrading Pro is a fully autonomous, intervention-free, day trading EA. Designed to take Low-Risk, High Win rate, Low DD trades, with advanced trade management, duri
The Viper EA
Profalgo Limited
3.46 (13)
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
该产品的买家也购买
The Gold Reaper MT4
Profalgo Limited
4.86 (29)
道具準備就緒! ( 下載SETFILE ) 推出促銷活動: 目前價格只剩幾本! 最終價格:990$ 免費取得 1 個 EA(適用於 2 個交易帳號)-> 購買後聯絡我 Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal 歡迎來到黃金收割者! 該 EA 以非常成功的 Goldtrade Pro 為基礎,設計為同時在多個時間框架上運行,並且可以選擇將交易頻率從非常保守到極端波動設定。 EA 使用多種確認演算法來找到最佳入場價格,並在內部運行多種策略來分散交易風險。 所有交易都有停損和止盈,但也使用追蹤停損和追蹤停盈來最小化風險並最大化每筆交易的潛力。 該系統建立在非常流行且經過驗證的策略之上:交易突破重要的支撐位和阻力位。   黃金非常適合這種策略,因為它是一種波動性很大的貨幣對。 系統根據您的帳戶規模和最大允許提款設定自動調整交易頻率和手數! 回測顯示出非常穩定的成長曲線,回撤非常可控且恢復很快。  該 EA 已針對黃金的最長可用期限進行了壓力測試,為不同經紀商使用了
FT Gold Robot MT4
Marzena Maria Szmit
5 (19)
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
Gold Trade Pro
Profalgo Limited
4.59 (22)
推出促銷活動! 僅剩幾本,449 美元! 下一個價格: 599$ 最終售價:999$ 免費取得 1 個 EA(適用於 2 個交易帳號)-> 購買後聯絡我 Ultimate Combo Deal   ->   click here New live signal:   https://www.mql5.com/en/signals/2084890 Live Signal Set Prop Firm Set JOIN PUBLIC GROUP:   Click here Gold Trade Pro 加入了黃金交易 EA 俱樂部,但有一個很大的區別:這是一種真正的交易策略。 “真實交易策略”是什麼意思? 您可能已經註意到,市場上幾乎所有黃金 EA 都是簡單的網格/鞅系統,當市場與初始倉位相反時,該系統會添加交易。  它們通常偽裝成“神經網絡/人工智能/機器學習”,但如果您對外彙和 EA 有一點經驗,您可以輕鬆地將它們識別為簡單的網格和鞅系統,這是非常危險的。 雖然這種類型的策略在回溯測試中可能看起來不錯(直線排列,甚至經常在測試中進行操縱以獲得更多銷售額),但它們總是無一例外
Quantum Emperor MT4
Bogdan Ion Puscasu
4.89 (131)
介绍     QuantumEmperor EA 是一款突破性的 MQL5 专家顾问,它正在改变您交易著名的 GBPUSD 货币对的方式!由拥有超过13年交易经验的经验丰富的交易者团队开发。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***购买量子皇帝EA即可免费获得量子星人、量子贸易EA或量子金皇!*** 详情请私讯 新的实时信号 V4:   点击此处 MT5版本:  点击这里 量子 EA 通道:       点击这里 *促销价:1199 美元。每购买 10 次,价格就会上涨 100 美元。最终售价 1999 美元 量子皇帝EA     采用独特的策略,将单个交易连续拆分为六个较小的交易。这意味着 EA 每次执行交易时,都会自动将其分为 6 个较小的头寸。 量子皇帝EA     因其处理亏损交易的出色方法而从其他专家顾问中脱颖而出。与传统方法单纯
GoldPulse AI
Babak Alamdar
4.29 (14)
您购买的不是回测,而是真实的交易系统: Live Signal 1     Live Signal 2       Live Signal 3   此价格为促销期间临时价格,稍后将上调 免费获取 1 个 EA -> 购买后联系我 当前价格仅剩几份,下一个价格是 -->> 1480 $ Welcome to the GoldPulse AI Hey, I'm GoldPulse AI! 这是第一个也是最智能的机器人,可以使用完整的货币对(例如 XAUUSD、XAUEUR、XAUGBP、XAUAUD、XAUJPY、XAUCHF、XAUSGD 和 XAUCNH)交易黄金或 XAU! 我每天都会查看新闻,并利用任何机会进行技术、基本面和情绪确认!钱就会从急躁商人的口袋里流到病人的口袋里! 在这个市场上,你将与聪明人竞争!他们想拿走你的钱,你也想拿走他们的钱!利用最准确、最活跃的市场分析,我会尽力而为!祝你好运! Highlights: 易于使用:在每个交易品种图表上一一附加具有任何时间范围的 EA(XAUUSD、XAUEUR、XAUGBP、XAUAUD、XAUJPY、XAUC
Hercules AI MT4
Aleksandr Chebotaev
5 (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
TrendMaster FX MT4
Chen Jia Qi
5 (13)
采用先进的算法并利用深度学习技术,我们的专家顾问(EA)是为了帮助您在复杂的外汇交易世界中导航而精心设计的。该系统分析市场行为,并根据特定标准进行交易,使您能更有效地参与市场趋势。凭借近十年的数据支持,EA利用深度学习来检查过去的市场条件,旨在提供更高级的决策支持。 Live signal :   TrendMaster FX The MT4 version : TrendMaster FX MT4   618大促,限时优惠300$ 目前有EA试用活动,购买后联系我们可获得“Gold Garden”或“AI TradingVision GPX”的使用权限。如需了解详情,请联系我们。 推荐使用的货币对: 英镑/美元(GBPUSD) 美元/加元(USDCAD) 欧元/美元(EURUSD) 风险设置: 对于激进的交易者,最大风险设置为0.15。 对于更保守的交易者,特别是资本较大的人,建议将其设置在0.05以下,0.03定义为低风险。可以先从0.01开始熟悉操作 购买后: 可以给我们发私信以获取用户手册和注意事项。或者自行参考推荐的用户手册:   点击查看手册 安全且稳定的EA: 我们的E
Ai Multi Trend MT4
Mansour Babasafary
5 (2)
40% discount, until 2024.06.18 (Original price: $1000) Get a 50% bonus by buying (or even renting) any of our products. After buying (or renting), send a message for more information. Expert trend hunter 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 6 main market currency pairs and 4 important time frames An expert who has been trained by artific
AI Gen XII MT4
Denis Kurnev
5 (2)
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
Bitcoin Scalp Pro
Profalgo Limited
5 (2)
當前促銷: 僅剩 1 件,349 美元 最終價格:999$ 請務必在我們的促銷博客中 查看我們的“   Ultimate EA 組合包 ”   !   LIVE SIGNAL Bitcoin Scalp Pro 是市場上獨一無二的交易系統。  它完全專注於通過交易支撐位和阻力位的突破來利用比特幣市場的波動性。 EA 的重點在於安全性,這轉化為極低的回撤和非常好的交易風險/回報率。 EA 在內部使用“智能自適應參數係統”,它將根據比特幣的實際價格計算止損、止盈、尾隨止損以及入場和手數。 這意味著如果比特幣以 6000 或 30000 的價格交易,所有參數的值都會不同。 自 2022 年 6 月以來,該 EA 已在真實真實賬戶上進行了前瞻性測試,到目前為止,結果非常有希望。 還進行了 99.90% tickquality 的回溯測試,並且在過去幾年中顯示出非常穩定的增長。 該 EA 需要提供低比特幣點差的經紀商。 私信聯繫我,獲取推薦經紀商名單。 主要特徵: 自適應參數係統,根據比特幣的實際價格調整 SL、TP、entries 和 lotsize 非常好的風險/回
Daytrade Pro Algo
Profalgo Limited
5 (6)
推出促銷: 以當前價格提供的副本數量有限 最終價格: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
Bitcoin Robot MT4
Marzena Maria Szmit
5 (11)
The Bitcoin Robot  MT4 is engineered to execute Bitcoin trades with unparalleled   efficiency and precision . Developed by a team of experienced traders and developers, our   Bitcoin Robot   employs a sophisticated algorithmic approach (price action, trend as well as two personalized indicators) to analyze market and execute trades swiftly with   M5 timeframe , ensuring that you never miss out on lucrative opportunities.   No grid, no martingale, no hedging,   EA only open one position at the sa
Ai Hybrid Robot MT4
Mansour Babasafary
5 (3)
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
注意事项 EA 最多包含 6 个入场点,每次交易的手数为下单手数乘以 6,因此请注意不要使用过大的手数。 默认的手数计算方式不是资金百分比。我们的默认计算方式不受杠杆影响,能更精确地控制风险。 建议使用 1000 美元以上的资金以提高风险抗性。 同时使用多个货币对会有风险叠加的可能,请注意。 此为MT5版本。MT5版本能更好的模拟市场环境。建议使用。如需MT4版本,我们会在稍后一段时间发布。 请注意,交易涉及风险,理解并有效管理这些风险非常重要。 真实资金信号: 点击查看 实时信号: 点击查看 MT5版本: 转到MT5 618大促,限时优惠300$ 目前我们有一项黄金EA赠送活动,购买后请联系我们获取。该活动为限时活动。 运行推荐 推荐货币对:   GBPUSD,   USDCAD , AUDUSD 时间周期:M15 运行资金:建议 1000 美元以上 账户类型:无特殊要求,低点差效果更好 杠杆:无特殊要求 参数功能说明: 使用手册。
Dark Algo
Marco Solito
4.78 (59)
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 .
Diamond Titan FX MT4
Lo Thi Mai Loan
5 (2)
推广活动:半价特惠! 目前只剩下3次销售以当前价格购买。 下一个价格: $933 免费获取US30 Scalper EA和Quantum Algo EA -> 购买后请联系我 Live signal:  https://www.mql5.com/en/signals/2220190?source=Site+Profile+Seller 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 常见问题解答: https://www.mql5.com/en/blogs/post/757094 更多 Diamond Titan FX 分析: https://www
One Gold MT4
Stanislav Tomilov
4.67 (12)
欢迎来到下一代金融投资的世界,使用我们基于MetaTrader平台的独特金融交易机器人!我们的专有技术代表了交易领域中先进数据分析计算平台的巅峰。One Gold EA是一种真正的智能算法,运行在超出人类交易员能力范围的水平上。它的独特方法基于神经扫描仪和人工智能高级技术在神经网络中的原理,EA能够以无与伦比的精度分析金市的历史和当前数据。 忘记复杂的手动策略和风险吧!One Gold交易机器人旨在帮助您增加潜在利润。不要错过在MetaTrader市场上尝试黄金交易的尖端解决方案的机会。这不仅仅是一个机器人,它代表着今天金融市场的未来!One Gold EA利用先进的数据分析方法,可以成为您在实现金融目标方面的可靠合作伙伴。尽管我们不能保证特定的回报,但我们相信我们的开发潜在带来了在金市中获得可观利润的机会。抓住这个机会,体验未来的好处吧! 在使用这个机器人时,我们已经利用了前沿的神经插件的强大功能,以增强其性能。通过整合这些最先进的神经插件,我们的交易机器人配备了一套强大的工具,以应对复杂的黄金交易世界。尽管我们不能保证特定的结果,但这些神经插件旨在增强机器人的性能并有望促进您的交易
Supply Demand EA ProBot
Georgios Kalomoiropoulos
基于 供需 原则的 全自动 EA。第一个提供完全自动化的 供需 EA 。 现在 交易 变得轻松 ,完全控制您的交易策略 通过用户友好的图形交易面板。 您将获得包含超过 15,000 行代码的超高质量 算法交易 软件。 供应需求 EA ProBot 手册 交易“Prop Firms Challenges”和通过所有阶段成为合格交易员的最佳方式。 所有交易均自动进行和管理。只需 选择您的输入 ,然后坐下来,观察您的利润增长。 面板输入参数: 选择 交易方向 (买入或卖出) 选择您想要进行交易的 时间范围 选择您想要交易 的区域类型 (宽、中、窄、超窄) 选择 3 种资金管理 选项 选择 EA 在 盈利 或 亏损 交易 次数后停止 选择 基于风险 或 基于 ATR 的 TP 和 SL 比率 选择 看涨通道 或 看跌通道 内的交易区域 选择 上限 和 下限 范围 如果您只想在一天中的特定时段进行交易,请选择 时间范围 多种 追踪止损 和 盈亏平衡 功能可供选择 您最多可以查看三个更高时间范围的区域。因此,如果您处于 30 分钟时间范围内,则可以激活 1 小时、
Aura White Edition
Stanislav Tomilov
4.4 (5)
Aura White Edition   is unique Expert Advisor that continues the Aura series of advisors. The Expert Advisor is based on the engine of   Aura Black Expert Advisor , but with a number of changes and author's settings for currency pairs. Innovative methods of the programme's approach to trading, and promising performance results are possible thanks to the use of modern technologies and methods. Aura White Edition is a fully automated EA designed to trade currencies only. Working pairs EURUSD, GBPU
TopBottomEA
lizhi fu
4.8 (54)
TopBottomEA的优势: 首款支持小本金工作的EA,实盘4年多了;本EA基于波动率自适应机制,一次只下一单,每单带止损,平均每天4单左右,持单时长12小时左右, 使用Dukascopy真实历史数据,以20美元极限本金挑战回测跑完了10年以上。 每间隔三天涨价$100元,涨价过程:  998--> 1098--> 1198 ...... 涨到目标价 $ 4999为止,购买后,EA工作期间,可以和我们的真实观摩账户交易记录比较。 如遇到安装和EA回测问题,请联系我们 ;购买8天后,即可免费领取   Band trend indicator 指标 。 加入公众群组: 点击这里 挑战最小资金 真实账户: https://www.mql5.com/zh/signals/1575208   质量【可靠性】5格,在新冠病毒期间,EA交易中断了一年,服务器因故过期。 支持货币:GBPCAD ,EURSGD  ,GBPCHF,其它品种以后再陆续增加,大家目的是为了赚钱,只选最优,货币不在多在精,让收益更稳定。 支持周期:M1图表 平台推荐:icmarkets平台原始点差账户,fpmarkets
US30 Scalper EA MT4
Lo Thi Mai Loan
5 (4)
启动促销! 当前价格仅剩少量库存! 下一个价格:633美元 最终价格: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)最受欢迎的华尔街指数之一上进行剧烈波动而设计。 该策略经过
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
Oracle MT4
Stanislav Tomilov
4.1 (10)
Oracle Trading Expert the Quintessence of Modern Programming Technologies Expert Oracle for MetaTrader, trading on GBPUSD and Gold, represents the quintessence of modern programming technologies. Our unique proprietary methods and developments are based on advanced machine learning concepts, making our trading expert truly one-of-a-kind. We offer cutting-edge modules and neural architecture that embody innovative advancements in financial programming. Our algorithms rely on in-depth data analysi
Quantum Algo Trading MT4
Lo Thi Mai Loan
5 (4)
当前价格是促销价格,很快就会上涨。 产品的最终价格是:$9933。 按当前价格剩余的库存很少,下一个价格为 $653。 查看实时结果: $50K 个人信号: [点击这里] 个人实时信号: [点击这里] Prop公司实时信号: [点击这里] MT5版本在这里: [点击这里] 欢迎来到 Quantum Algo Trading MT4 EA 。 此EA不仅仅是一个机械系统,它将成为您整个交易旅程中的伙伴。 此EA利用突破系统,并由拥有超过13年交易和编程经验的人优化算法。 与市场上其他仅依赖过去回测结果的EA不同,许多EA故意操纵结果以适应过去,Quantum Algo Trading进行了完全自然的回测,没有强迫结果匹配过去。它还进行了前瞻性测试阶段,取得了真实结果,并与回测结果进行了比较。 此EA提供的真实世界结果与回测结果的相似度高达99.9%,这让购买者在测试产品时充满信心。 主要特点: 没有马丁格尔,没有网格,没有对冲。 每笔交易都有固定止损。 每笔交易使用跟踪止损。 最多可有2个开仓头寸,可选择设置最多1个头寸。 包括新闻过滤功能,适合那些希望避免
Aura Black Edition
Stanislav Tomilov
4.76 (17)
Aura Black Edition is a fully automated EA designed to trade GOLD only. Expert showed stable results on XAUUSD in 2011-2020 period. No dangerous methods of money management used, no martingale, no grid or scalp. Suitable for any broker conditions. EA trained with a multilayer perceptron Neural Network (MLP) is a class of feedforward artificial neural network (ANN). The term MLP is used ambiguously, sometimes loosely to any feedforward ANN, sometimes strictly to refer to networks composed of mult
XG Gold Robot MT4
Marzena Maria Szmit
4.39 (23)
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
SouthEast
Sugianto
5 (13)
SouthEast is an expert advisor developed from my experience in manual trading that has been automated. SouthEast is specifically designed to generate maximum profits with small deposits by prioritizing the security of your funds. Why SouthEast? SouthEast does not require complicated settings and is easy to use because user only need to upload a set file that is already available. Currently there are set files for 20 fx pairs. The best GRID EA with the ability to control risks. I will share
Stock Indexes EA MT4
Marzena Maria Szmit
5 (1)
Stock Indexes EA is a sophisticated trading robot meticulously engineered to capitalize on the dynamics of the US30 . This expert advisor employs advanced algorithms and technical indicators to analyze market trends, identify potential entry and exit points, and execute trades with precision. A news filter has also been added to the robot, which prevents it from opening a position during important economic news , minimizing the risk. In robot, you can also specify the days and hours when the EA
FXMachine
Alexander Kozachuk
4.75 (12)
2020 年以来真实账户统计数据 过去 13 年的回测 低回撤策略 多货币算法 与任何经纪商兼容 经过验证的回撤控制系统 自 2020 年起使用真实账户进行交易 : 点击此处 美元兑加元、欧元兑英镑、英镑兑美元、欧元兑美元交易: 点击此处 欧元英镑交易: 点击此处 英镑兑美元交易: 点击此处 FXMachine EA 的完整回测可在此处下载: 点击这里 关于我们: FXMachine 和我们其他机器人的开发和支持是由在外汇领域拥有超过 14 年经验 的专业团队进行的。 在这 14年 中,我们一直在改进我们的发展,并寻找更好、更有效的交易方法。 如果您问我们 我们可以提供的最佳建议是什么 为了确定哪个 EA 好、哪个不好,我们会给出以下答案: 最重要的是查看机器人在真实货币账户上交易的结果 ,看看效果如何 它拥有多年的历史以及 EA 的表现如何。 如果 EA 没有真实账户的统计数据或者只有几个月的时间,那么这个 EA 就不会很好,相信我们,我们确信这一点。 而且这并不重要 它使回测变得多么漂亮或完美,有很多算法和技巧可以让回测生成变得漂亮,但在实际交易中
Bitcoin Wizard
Sugianto
2.33 (3)
Bitcoin Wizard is designed for trading Bitcoin by placing pending orders based on high low at certain periods by taking advantage of strong momentum.   Why Bitcoin Wizard : Bitcoin Wizard is a fully automatic trade system, trade 24/7. Does not use any risky strategies such as hedging, martingale, grid or multiple orders. Every trade is protected by a stoploss of 100 pips. Real Signal | Real Signal 2 | Setfile :  Download here  | MT5 version | Backtest Report   |   Broker Spread Comparison SET U
作者的更多信息
Forex GPT Full
Evgeniy Kuzevanov
Этот советник расширенная версия Forex GPT MA  который самостоятельно создает  сразу 4  нейронных сети  и обучается во время работы или при запуске в тестере стратегий, сеть  создается из значений средней цены (на основе индикатора Moving Average). Другие мои продукты смотрите тут . Советник не использует сторонних библиотек, ни чего не подключает, все расчеты происходят внутри советника, с возможностью сохранения данных нейронной сети и всех его параметров при обучении, перезапуске или переносе
筛选:
无评论
回复评论