• 概要
  • レビュー
  • コメント (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.


おすすめのプロダクト
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
This is an expert advisor for operations on the   Ethereum   / USD pair in 1H, with one operation at a time with SL and TP, following   Fibonacci patterns . Ether Fibe Welcome!   We are excited to present our   Expert Advisor , an innovative tool designed to optimize your operations in the financial market. This system particularly focuses on two crucial areas: The Power of   Fibonacci Fibonacci : Utilizes   Fibonacci   sequences to identify support and resistance levels, allowing for a more a
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 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 beginn
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. Atta
Gold Angel
Dmitriq Evgenoeviz Ko
The Gold Angel MT4 Expert Advisor is designed for automated gold trading on the MetaTrader 4 platform, providing traders with unique tools and strategies to achieve maximum profit. Using complex algorithms for analyzing market data, this advisor is able to identify profitable entry and exit points, which significantly reduces risks and increases the chances of successful trading. Gold Angel MT4 offers an intuitive interface that allows both experienced traders and beginners to easily customize
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: 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 trad
My Birthday Special Promo! All Expert Advisors Only $52 Until the End of February 2025. Grab Yours Now! Only $52 for unlimited use purchase. (Promo ENDED) Zero Version of Alwinson Gold EA Looking for better trading results without relying on complex candlestick analysis? Our Trading Robot uses accurate candlestick pattern signals to help you achieve consistent and stable profits with relatively low risk. Key Features: Safety mechanisms for investment stability Backtest Result Default: Back-
The Expert Advisor's strategy is based on proactive forecasting of the most likely price movement. The method for determining this movement is the calculation and ratio of such factors as: short-term OHLC candlestick patterns, the direction of the microtrend, the rate of price change. Only 1 deal on one trading instrument can be opened at a time. Support:   https://www.mql5.com/en/channels/TrendHunter No hazardous trading methods are used. The Expert Advisor has minimal settings, which allow
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 p
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+
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
Beidou Trend EA is a trend EA with a large profit-loss ratio.   Breakout trading is a very old method. It has been widely used since Livermore in the 1900s. It has been more than 120 years. This method is always effective, especially for XAUUSD and Gold with high volatility. I have been using the breakout method to make profits on XAUUSD since the beginning of my investment career. I am familiar with this method. It is old, simple and effective. Beidou Trend EA is improved based on Rising Sun Go
XtremeGold – 金 (XAUUSD) 自動売買ロボット XtremeGold は、リスクを最小限に抑えながら金市場で利益を得るために設計された高度なトレーディングロボットです。サポートラインとレジスタンスライン、そして単純移動平均線 (SMA) と指数移動平均線 (EMA) を活用した戦略を用いて、複数のタイムフレームを分析し、正確なシグナルを捉えて利益を狙います。 アジアからアメリカ市場までの継続的な市場監視: ロボットはアジア市場の取引時間からシグナルを探し始め、アメリカ市場の終わりまで分析を継続します。これにより、24時間体制で市場を監視し、取引の機会を逃しません。 ダイナミックなポジション管理: XtremeGold は、最適なパフォーマンスを実現するために、エントリーとエグジットを自動管理します。損失ポジションは、資金を守るために当日中に自動でカットされます。一方、利益が出ているポジションは、トレンドが有利な場合、数日間保持されることがあります。 調整可能なテイクプロフィット (利確) 設定: テイクプロフィットのレベルは自由に調整でき
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
AERO EA based on Adaptive Engine Range Over (AERO) trade Single Possiton with TP SL and close by signal No Marti No Grid No Hitory Reader Real Backtesting Refult strategy has backtested since 2020 - 2024 EA work on various market condition Recommendations: Minimum Deposit :$100 Pair : GBPCAD Timeframe : M1 For Better Results USE ECN/RAW/LOW SPREAD ACCOUNT Risk Warning: Before you buy AERO EA please be aware of the risks involved. Past performance is no guarantee of future profitabilit
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 - O
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 は反復的で独自のパターンに従いますが、人間の脳はそれらを捉えることができません。 ここでの意思決定者は、特定の取引を行うべきかどうかについて合意する必要がある 2 つのニューラル ネットワークです。 取引が行われる前に、パターンを繰り返す確率が 85% 以上である必要があります。 この Expert Advisor は常にチャートをスキャンして収益性の高い取引を探しているため、適切な品質の VPS を使用して 24 時間年中無休で取引することをお勧めします。 EAについて: しばしば繰り返されるパターンに従う 独自に開発した独自のインジケーターを内蔵 2 つのニューラル ネットワークで動作 EURJPY H1チャートで実行 ライブ信号: https://www.mql5.com/en/signals/1
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 su
AI Gen XII MT4
Denis Kurnev
3.56 (45)
The   AI Gen ProX   Expert Advisor is a powerful solution based on advanced market analysis and data processing technologies. Utilizing cutting-edge algorithms for time series analysis and complex mathematical models, it ensures high accuracy in forecasts and automates trading processes. The EA is designed to combine performance and reliability, making it an effective tool for trading.   Real Time Signal GEN PRoX:  https://www.mql5.com/ru/signals/2283186 The price of the advisor will increase si
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:
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 Ma
このプロダクトを購入した人は以下も購入しています
10 部中 3 部のみ残り 399 ドルです! その後、価格は 499 ドルに引き上げられます。 - REAL SIGNAL(6 か月以上アクティブな Real Signal): デフォルト設定: https://www.mql5.com/en/signals/2276213 Gold Scalping AI は人工知能を使用する EA です多くの指標のデータを分析する技術。そこから、EA は注文を入力するための最適なオプションを持つことになります。Gold Scalping AI の最大の違いは、EA が他の EA よりもはるかに優れたリスク/報酬比を制御できることです。これは、エントリ ポイントを制御し、オープン オーダーを管理するための一連のツールのおかげで可能になりました。EA はすべての注文にストップ ロスを使用し、危険な取引方法は使用しません。グリッド、マーチンゲールなどはありません... Gold Scalping AI は私が使用している EA の 1 つです。長年にわたってファンド管理アカウントを使用して取引しています。EA の最も最適化されたバージョンを正式にリリ
Scalping Robot MT4
Marzena Maria Szmit
4.63 (8)
Introducing our advanced Scalping Forex Robot. The scalping algorithm is built to spot high-probability entry and exit points, ensuring that every trade is executed with the highest chance of success within the   M1 timeframe . The best pair to use with the Scalping Robot is   XAUUSD .  This robot is perfect for traders who prefer the   scalping method   and want to take advantage of rapid price movements without having to manually monitor the charts. It is suitable for both beginners looking fo
GbpUsd Robot MT4
Marzena Maria Szmit
5 (44)
The GBPUSD Robot MT4 is an advanced automated trading system meticulously designed for the specific dynamics of the  GBP/USD  currency pair. Utilizing advanced technical analysis, the robot assesses historical and real-time data to  identify potential trends , key support and resistance levels, and other relevant market signals specific to GBP/USD. The Robot opens positions  every day,  from Monday to Friday, and  all positions are secured  with Take Profit, Stop Loss, Trailing Stop, Break-Even
Quantum Emperor MT4
Bogdan Ion Puscasu
4.84 (154)
ご紹介     Quantum Empire EA は 、有名な GBPUSD ペアの取引方法を変革する画期的な MQL5 エキスパート アドバイザーです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発されました。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Quantum Emperor EA を購入すると、Quantum Wizard、Quantum StarMan、または Quantum Gold Emperor を無料で手に入れることができます!*** 詳細については個別にお問い合わせください。 新しい Live Signal V5:   ここをクリック MT5バージョン:  ここをクリック 量子EAチャネル:       ここをクリック 10 回購入するごとに価格が 50 ドル上がります。最終価格 1999 ドル クォンタムエ
Bitcoin Robot MT4
Marzena Maria Szmit
4.81 (43)
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
43% off for 48 hours only (Original price: $1,595) 50% bonus by purchasing this Robot, Contact us "after purchase" to receive the bonus A fully automatic expert Designed and produced 100% by artificial intelligence, with the world's most advanced technology All trades have profit and loss limits, with the best and least risky market strategy, without using dangerous strategies such as Martingale and hedges, etc. A specialist who has been trained by artificial intelligence for years to correctl
AI Golden Jet Fighter GTX     MT4 は、Meta Trader 4 プラットフォームでの金取引用のシンプルで効率的なエキスパート アドバイザー (EA) です。ニューラル ネットワークを利用して、この EA は金市場 (XAU/USD) でのスキャルピング用に設計されています。AI Golden Jet Fighter GTX の主な戦略は、小さな価格変動を特定し、ポジションを開いて短期間で利益を獲得することに重点を置いています。EA は市場の状況をリアルタイムで分析し、事前に定義されたストップロス レベルとテイクプロフィット レベルで取引を自動的に実行します。また、トレーリング ストップ機能もサポートしているため、市場が有利に動いたときにトレーダーは利益を確定できます。正確性を確保するために、EA はスプレッド フィルターを使用して不利な条件での取引を回避し、スリッページ保護メカニズムを使用して正確な注文を実行します。AI Golden Jet Fighter GTX にはリスク管理機能が含まれており、トレーダーはリスク レベルをアカウント残高のパー
EvoTrade EA MT4
Dolores Martin Munoz
5 (1)
EvoTrade: 市場初の自己学習型トレーディングシステム EvoTradeをご紹介します。これは、最新のコンピュータービジョンとデータ分析技術を駆使して開発されたユニークなトレーディングアドバイザーです。市場初の自己学習型トレーディングシステムであり、リアルタイムで稼働します。EvoTradeは市場状況を分析し、戦略を調整し、変化にダイナミックに適応することで、あらゆる環境で卓越した精度を実現します。 EvoTradeは、Long Short-Term Memory(LSTM)やGated Recurrent Units(GRU)といった高度なニューラルネットワークを活用して時間的依存性を分析し、畳み込みニューラルネットワーク(CNN)を使用して複雑な市場パターンを検出します。また、Proximal Policy Optimization(PPO)やDeep Q-Learningなどの強化学習アルゴリズムを使って、リアルタイムで戦略を適応させます。これらの技術により、EvoTradeは市場の隠れたシグナルを見つけ出し、現在の市場ダイナミクスに正確に対応します。 各トレード後、Evo
総合的なアプローチのエッセンスであり、その主要な目標は、トレーダーにとってリスクを最小限に抑えながら長期的かつ現実的な収益を得ることです。基盤は、先進的なトレーディングの概念と機械学習を組み合わせたもので、これらが効果的に相互に強化し合います。もう一つのユニークな特徴は、システムを最適化する必要がないという点で、これは私のサーバーが担当しています。最新の設定は毎日私たちのTelegramチャンネルで公開されており、常にシステムの関連性を最高レベルに維持しています。 私たちの Telegram コミュニティ 貿易監視 !!! MetaTrader 5 用バージョン !!! MetaTrader 4 用の無料(ライト)バージョン   設置と操作のマニュアル なぜこのアドバイザーを購入する必要があるのか、 特に触れたいと思います 。無料版がオリジナルとほぼ同じものと思われがちですが、そうではありません。無料版では、デモ機能のみが組み込まれており、すべての設定は自分で選び出す必要があります。それは私が時折公開するものから選ぶものです。静的な設定はすぐに陳腐化します。つまり、有料版では、さまざ
The Infinity EA MT4
Abhimanyu Hans
3.54 (26)
ChatGPT TurboによるAI駆動テクノロジー Infinity EA は、GBPUSD および XAUUSD 向けに設計された高度な取引エキスパート アドバイザーです。安全性、一貫したリターン、無限の収益性に重点を置いています。マーチンゲールやグリッド取引などの高リスク戦略に依存する他の多くの EA とは異なり、Infinity EA は、機械学習に組み込まれたニューラル ネットワーク、ChatGPT の最新バージョンによって提供されるデータ分析 AI ベースのテクノロジーに基づく、規律ある収益性の高いスキャルピング戦略を採用し、全体的な取引体験を卓越したものにします。 6,000 人を超えるメンバーが参加する MQL5 コミュニティ に参加して、他のトレーダーとつながりましょう。最新の製品アップデート、ヒント、独占コンテンツを常に入手しましょう。 MT5バージョン Infinity EAの設定方法 特徴 Infinity EA は AI 主導のスキャルピング戦略を活用します。 EA はリアルタイムのデータ分析のために ChatGPT-4 Turbo と統合されています。 I
Supply Demand EA ProBot
Georgios Kalomoiropoulos
5 (8)
需要と供給の 原理に基づいた 完全自動アドバイザー 。完全に自動化された 需要と供給のアドバイザー を初めて提供しました 。 取引が 簡単に なり、取引戦略を完全にコントロールできるようになりました 便利なグラフィカル操作パネルを使用。 15,000 行を超えるコードを含む、非常に高品質の アルゴリズム取引 ソフトウェアが手に入ります。 EA ProBot の需要と供給のガイド Prop Firms を取引するための最良の方法は、資格のあるトレーダーになるためのすべての手順に挑戦します。 すべてのトランザクションは自動的に行われ、管理されます。 インプットを選択する だけで、リラックスして利益の成長を観察できます。 パネル入力パラメータ: 取引方向の 選択 (買いまたは売り) 取引したい時間枠 を選択してください 操作したいゾーンのタイプ を選択します (広、中、狭、超狭) 3つの資金管理オプション から選択 利益を得る取引 または 損失を得る 取引の数の後に停止するアドバイザーを選択してください 。 リスクまたは ATR に基づいて TP および SL オッズを選択しま
Aura Neuron MT4
Stanislav Tomilov
5 (3)
Aura Neuron は、Aura シリーズのトレーディング システムを引き継ぐ独特のエキスパート アドバイザーです。高度なニューラル ネットワークと最先端のクラシック トレーディング戦略を活用することで、Aura Neuron は優れた潜在的パフォーマンスを備えた革新的なアプローチを提供します。完全に自動化されたこのエキスパート アドバイザーは、EURUSD や XAUUSD (GOLD) などの通貨ペアを取引するように設計されています。1999 年から 2023 年まで、これらのペアで一貫した安定性が実証されています。このシステムは、マーチンゲール、グリッド、スキャルピングなどの危険な資金管理手法を回避しているため、あらゆるブローカーの条件に適しています。Aura Neuron は、多層パーセプトロン (MLP) ニューラル ネットワークを搭載しており、これを利用して市場のトレンドと動きを予測します。MLP はフィードフォワード人工ニューラル ネットワーク (ANN) の一種で、特に単一の隠し層で構成されている場合は「バニラ」ニューラル ネットワークと呼ばれることがよくあります。
CyNera MT4
Svetlana Pawlowna Grosshans
2.8 (15)
CyNera:あなたの取引、私たちの技術 シグナル >400%:  CyNera シグナル >500%: CyNera Turbo マニュアルとセットファイル: 購入後にご連絡いただければ、マニュアルとセットファイルをお送りします 価格: 価格は販売されたライセンスの数に応じて上昇します 利用可能なコピー: 4 金取引は、市場で最も変動の激しい金融商品であり、精密さ、徹底した分析、そして強力なリスク管理が求められます。CyNeraエキスパートアドバイザーは、これらの要素を巧みに組み合わせ、最適な金取引を実現するために設計された高度なシステムです。CyNeraの高度な戦略と技術は、経験豊富なトレーダーだけでなく、初心者にも、金取引がもたらす独自の課題やチャンスを乗り越えるための支援を提供します。 CyNeraは、金市場の複雑さに対応した信頼できるソリューションを提供します。適応性に優れたインテリジェントな戦略と、多時間枠分析、自動取引調整、そして正確なリスク管理などの高度な機能を組み合わせています。この柔軟性により、CyNeraは市場の急速な変化に即座に対応しつつ、長期的に資本を守る
CoreX G MT4
Arseny Potyekhin
5 (8)
概要 CoreX G EAは、外国為替市場の複雑さに対応するために特別に設計された高度な取引システムです。最先端のニューラルネットワーク、高度な機械学習技術、および統合されたビッグデータ戦略を活用することで、CoreX Gは取引において卓越した精度とセキュリティを提供します。このエキスパートアドバイザー(EA)は、技術的な優秀さとプレミアムなカスタマーサポートにより際立ち、ユーザーが質問や懸念に常に対応できるようサポートします。 信号:   Live Signal Live Signal 2 Blog: CoreX G EA この戦略は非常にユニークなので、ライセンスの数を制限して販売したいと考えています。そのため、販売を制限するために価格は着実に上昇します。 次の価格は 790米ドル です 。 ブローカー 任意のブローカー、 ECN / ZERO スプレッドを推奨 レバレッジ 1:20 から 入金 最低 200 ドル      シンボル XAUUSD タイムフレーム H1 ビッグデータ統合と取引戦略 ビッグデータはCoreX Gの戦略の基盤です。膨大な量の過去およびリアルタイム
Boring Pips MT4
Thi Thu Ha Hoang
4.73 (15)
ほとんどのエキスパートアドバイザーがバックテストのパフォーマンスは完璧でも、実際の取引では効果的でない理由について考えたことはありますか? 最もありそうな答えは過学習です。多くの EA は利用可能な過去のデータに完璧に適応するように作成されていますが、構築されたモデルに一般化能力がないため、将来を予測することができません。 一部の開発者は、過学習の存在を知らないか、知っていても防止する方法を持っていません。他の人はそれをバックテスト結果を美化するためのツールとして利用し、統計的な有意性を考慮せずに数十の入力パラメータを追加し、取引戦略を過去のデータに過度に合わせ、自分の EA が将来において同様のパフォーマンスを達成できると他の人に納得させようとします。 もし興味があって、過学習についてより深く理解したい場合は、こちらの私の記事を参照してください。 Avoiding Over-fitting in Trading Strategy (Part 1): Identifying the Signs and Causes Avoiding Over-fitting in Trading S
Alpha Flow EA: 新たな高みへと導くトレーディングアドバイザー Alpha Flow EA は、戦略的な精度、適応力、そして高度な市場分析を通じて、あなたのトレーディング体験を変革するために設計された最新のトレーディングアドバイザーです。独自のトレーディングアルゴリズムと深い市場インサイトを駆使して、あらゆる市場環境で優れたパフォーマンスを発揮し、市場のトレンドを先取りするサポートをします。 Alpha Flow EA のリアルシグナル XAUUSD シグナル:   ライブシグナルを表示 EURUSD シグナル:   ライブシグナルを表示 US 500 シグナル:   ライブシグナルを表示 Alpha Flow EA の特徴とは? 洗練された市場分析 Alpha Flow EA   は、従来のテクニカル分析と最新のクオンツ戦略を融合した多次元分析アプローチを採用しています。高度なパターン認識機能により、新たなトレンドを見抜き、戦略的かつタイムリーな取引チャンスを提供します。 多様なトレーディング戦略 幅広い事前設定された戦略を搭載しており、 Alpha Flow EA  
FX EurUsd Robot MT4
Marzena Maria Szmit
5 (13)
The EUR/USD Multi-Strategy Trading Robot MT4 is an advanced tool designed to optimize trading by combining 3 key systems:   daily trading, volume analysis, and Fibonacci   retracement levels. This robot works by integrating these different approaches to create a more dynamic and adaptable strategy for trading the   EUR/USD pair . EA adapts to different market conditions, this makes it an ideal solution for traders looking to enhance their trading strategy with a powerful, multi-faceted approach.
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
Exp4 AI Sniper for MT4
Vladislav Andruschenko
5 (2)
私たちのチームは、MetaTrader ターミナル向けの最先端のスマート トレーディング エキスパート アドバイザーである Trading Robot をご紹介できることを嬉しく思っています。 AI Sniper は、   MT4     の両方の端末向けに設計された、インテリジェントな自己最適化取引ロボットです。 洗練されたアルゴリズムと最先端の取引手法を活用した AI Sniper は 、取引の最適化における卓越性を体現しています。 当社のチームは、取引所と株式市場の両方で 15 年を超える豊富な経験を活かし、革新的な戦略管理機能、インテリジェントな機能、直感的なグラフィカル インターフェイスを組み込んだこのエキスパート アドバイザーを作成しました。 AI Sniper の各側面は細心の注意を払って設計され、厳密にテストされたプログラム コードによってサポートされています。 高度な計算インテリジェンスは複雑なテクニカル分析を通じて機能し、あらゆる価格変動に対して何千もの数学的計算を実行します。 これにより、   AI Sniper は 、強気市場トレンドでも弱気市場トレンドでも、
Quantum Gold Emperor MT4
Bogdan Ion Puscasu
4.82 (11)
ご紹介     Quantum Gold Empire EA は 、有名な XAUUSD (GOLD) ペアの取引方法を変革する画期的な MQL5 エキスパート アドバイザーです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発されました。 重要!購入後、インストールマニュアルとセットアップ手順を受け取るためにプライベートメッセージを送ってください。 ***Quantum Gold Empire EA を購入すると、Quantum Trade EA を無料で入手できます!*** 詳細については個別にお問い合わせください。 ライブ信号:   ここをクリックしてください MT5バージョン:   ここをクリック 量子EAチャネル:       ここをクリック 高度なアルゴリズムを活用したエキスパートアドバイザーは、あらゆる一瞬の機会を活用し、最適なエントリーとエグジットを保証します。 リアルタイムの適応性:     金市場はダイナミックな性質を持っているため、迅速な調整が必要です。当社のアドバイザーは、変化する市場状況にシームレスに適応し、お客様が常に
AW Scalping Dynamics EA
AW Trading Software Limited
4.67 (12)
トレンドの反転に基づいて動作する完全自動の高度な取引ロボット。必要に応じて、グリッド戦略を使用することができます。カート最大積載量に達した場合の3種類の通知と位置ロックを内蔵。 M15タイムフレームのEURUSDには、デフォルト設定が推奨されます。 機能と利点: 同時に2つの方向で作業する能力 いくつかの段階で時間通りに作業する組み込み機能 ブローカーには見えない仮想StopLossを使用します 現在のトレンドの活動に基づく作業のアルゴリズム 内蔵の自動ロット計算 すべてのタイプの通知を使用します 位置を自動的にロックし、アドバイザーを無効にする機能 バスケット内の後続の注文のTakeProfitを減らす 現在のトレンドを考慮した、または段階的な開始注文の調整 MT5 version ->   HERE  / Problem solving ->  HERE       入力変数の詳細な説明と説明   -> ここに アドバイザーの取引方法: -まず、取引時に、現在のトレンドアクティビティが考慮されます(「メイントレンドフィルター」変数)。小さいほど、反転の可能性が高くなり、EAが開
Gold ISIS MT4
Lo Thi Mai Loan
5 (2)
EA Gold Isis – 安全で効果的な金取引ソリューション  \ ローンチプロモーション  現在の価格で残りわずか3本  次回価格:$458   最終価格:$1998  ライブシグナル  MT5バージョン   こんにちは。私はEA Gold Isis、Diamond Forex Groupファミリーの2番目のEAで、金(XAU/USD)取引専用に設計されています。優れた機能と安全性を重視した設計で、トレーダーの皆様に持続可能で効果的な金取引体験を提供します。   EA Gold Isisの特徴   - 動的ストップロス(SL):EAは、最近のローソク足の価格範囲に基づいてストップロスを設定します。これにより、SLが市場の状況に柔軟に対応し、変動する市場でも効果的に口座を保護します。   - 多様な取引戦略:EAには3つの取引戦略が搭載され、それぞれ最大3つのポジションを同時に開くことができます。合計で最大9つの取引が可能です。   - 柔軟なトレーリングストップ:トレーリングストップによる利益確保機能が含まれています。この機能は、個々の好みに応じてカスタマイズ可能です
Dark Algo
Marco Solito
4.77 (56)
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 . T
EA(エキスパートアドバイザー)は、ニューヨークセッション中に市場が動き始めたとき(取引量の増加)にポジションを開きます。このようにして、取引量によってモメンタムが維持され、高い確率で即座に利益確定(Take Profit)を達成できます。 シグナル (292%, 10% DD):   https ://www .mql5 .com /en /signals /2274145 ニューヨークセッション中のモメンタムに基づくエントリー EAは、低タイムフレーム上のFVG(フェアバリューギャップ)を使用して隠れたインパルスを検出します。インパルスがニューヨークセッション直前またはセッション中に検出されると、EAはポジションを開きます。 市場の動向に応じたポジション管理 モメンタムがすぐに消失した場合、EAは次の3つの戦略のいずれかを適用します: 特定の価格レベルでストップロスを発動し、取引を停止します。 ストップロスを発動し、逆方向に新しいポジションを開きます。 最初のポジションを追加や削除を行いながら管理し、利益が出るまで取引を続けます。 使用方法 購入後、設定手順の詳細について連絡してく
Gold One MT4
Habib Gholamali Heidari
3.3 (10)
Gold One  MT4 Forexのゴールドトレード愛好者の皆さん、こんにちは。 私たちのロボットへようこそ。ここでは、トップゴールドトレーダーの仲間となることができます。20年以上の精密なForex市場の経験を持つ私たちは、最新世代のトレーディングロボットを誇りを持ってご紹介します。 特徴:  プロップファームチャレンジに最適です。 すべての口座サイズに対応しており、少額の資本でも使用可能です。 NO   グリッドと   NO   マーチンゲール 100% 完全自動化 このロボットは、ゴールド専用の最新かつ最先端のインジケーターを使用しており、売買ポイントの特定において比類なき精度を誇ります。これは、Forex市場におけるゴールド取引の革命的な突破口を示しています。この革新は、10年以上にわたる研究、試行錯誤、および広範なテストの結果であり、トップゴールド取引専門家の洞察を取り入れています。複雑なゴールド取引パターンを活用することで、ロボットは完全に自動化された取引をストレスなく監視できるようにし、心の平穏を確保します。長年のテスト結果は、私たちのロボットの優れたパフォーマン
CyNeron MT4
Svetlana Pawlowna Grosshans
3 (5)
CyNeron: 精密な取引とAIイノベーションの融合 シグナル :   CyNeron マニュアルと設定ファイル : 購入後にお問い合わせいただければ、マニュアルと設定ファイルをお送りします 価格 : 販売されたコピー数に応じて価格が上昇します 利用可能なコピー : 5 AI駆動のスナップショット分析:市場初 CyNeronは、市場で初めて高度なAIを革命的な取引アプローチに統合したEAであり、 市場状況の詳細なスナップショットをキャプチャして処理します。 最先端のAI対応ニューラルネットワークを利用して価格データと技術指標を評価し、 市場の動きを高精度に予測して、正確かつ戦略的な取引決定を可能にします。 このAI駆動技術はCyNeronを際立たせ、リアルタイムで進化する市場動向に動的に適応し、 これまで得られなかった洞察をトレーダーに提供します。 シンボル XAUUSD (ゴールド) 時間枠 M15またはM30   資本 最低 $100 ブローカー 任意のブローカー 口座タイプ 任意、スプレッドが低いものが推奨 レバレッジ 1:20以上 VPS 推奨されますが必須ではありません
The Matrix Mind AI MT4
Pool Quintal Carlos Alejandro
The Matrix Mind AI: 外国為替取引の新基準 The Matrix Mind AIは、外国為替市場での可能性を拡大するために設計された革新的な取引アドバイザーです。行列分解モデルに基づいて、市場データを深く分析し、隠れたパターンを発見し、戦略開発のためのユニークな機会を提供します。 リアルシグナル: https ://www .mql5 .com /en /signals /2277247 価格オファー: 最初の7コピー:   $399 次の価格:   $499 The Matrix Mind AIの主な特徴 行列分解を基盤とする分析 特異値分解(SVD)や主成分分析(PCA)などの高度なアルゴリズムを活用し、大規模なデータセットを分解して、通貨ペア、時系列、市場動向間の重要な相関関係を特定します。 テキストおよびグラフィックAIとの明確な違い テキスト分析やデータの可視化に限定されるプラットフォームとは異なり、The Matrix Mind AIは実際の市場条件に合わせて設計されています。そのアルゴリズムは複数の要因を考慮し、より正確で関連性の高い洞察を提供します。
XG Gold Robot MT4
Marzena Maria Szmit
4.52 (27)
The XG Gold Robot MT4 is specially designed for Gold. We decided to include this EA in our offering after   extensive testing . XG Gold Robot and works perfectly with the   XAUUSD, GOLD, XAUEUR   pairs. XG Gold Robot has been created for all traders who like to   Trade in Gold   and includes additional a function that displays   weekly Gold levels   with the minimum and maximum displayed in the panel as well as on the chart, which will help you in manual trading. It’s a strategy based on  Price
Synapse Trader: トレードの新たな可能性を開くニューラルネットワーク 市場を分析するだけでなく、日々学習し、変化する市場環境に適応するインテリジェントなアシスタントとなるアドバイザーを想像してください。Synapse Traderは、先進的なニューラルネットワーク技術を基にしたユニークなツールで、市場の微細なシグナルを捉えることができます。ただのアドバイザーではなく、思考し、予測し、進化する「生きたニューラルネットワーク」です。 限定特別価格として、ホリデー期間中にSynapse Trader EAを399ドルで提供します。その後、価格は大幅に上昇します。この機会をお見逃しなく! 残り5つのコピーが399ドルで購入可能です。 プライベートチャンネルに加入するには、ダイレクトメッセージでお問い合わせください。 購入後に必ずご連絡ください。アドバイザーの設定をサポートいたします。 リアルタイムシグナル : スト ラ テ ジ ー モジュール 1 スト ラ テ ジ ー モジュール 2 スト ラ テ ジ ー モジュール 3 Synapse Trader は、トレーディングにおけるニ
Робот Wolf Stream имеет в своей основе особенность "видеть" график так, как его видит человек. Именно поэтому он точно считывает настроение игроков. Страхи и надежды у толпы формируются в текущей момент, в текущих ситуациях. Робот реагирует на них и действует оптимальным образом для каждой из ситуаций.  Торговля в реальном времени принесла 103% прирост с 26 июля 2021 года (3.5 месяца) На рынке есть множество фаз, которые по характеру своему в корне отличаются друг от друга. Поэтому необходим инд
作者のその他のプロダクト
Forex GPT Full
Evgeniy Kuzevanov
5 (1)
Этот советник расширенная версия Forex GPT MA  который самостоятельно создает сразу 4 нейронных сети и обучается во время работы или при запуске в тестере стратегий, сеть  создается из значений средней цены (на основе индикатора Moving Average). Другие мои продукты смотрите тут . Советник не использует сторонних библиотек, ни чего не подключает, все расчеты происходят внутри советника, с возможностью сохранения данных нейронной сети и всех его параметров при обучении, перезапуске или переносе на
フィルタ:
レビューなし
レビューに返信