• 概要
  • レビュー
  • コメント (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
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: 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
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
購入する前に、デモアカウントMyVolume Profile FV (無料版) を使用してフォワードテストによるテストを数か月間 行ってください。 それを学び、自分に合った最適なセットアップを見つけてください。 MyVolume Profile Scalper EA は、ボリューム プロファイルを使用するように設計された高度な自動プログラムです。 ボリューム   プロファイルは、 指定 された期間中に特定の価格レベルで取引された総量を取得し、その総量を上昇量 (価格を上昇させた取引) のいずれかに分割します。 )またはダウンボリューム(価格を下げる取引)を行い、オープンまたは デア を行います。 このEAのコアエンジンは、インジケーターボリューム、平均足、ADXを使用しています。 カスタマイズ可能な移動平均を使用した追加フィルターにより、移動平均インジケーターによって与えられる傾向を確認し、追跡します。 このフィルタはオプションであり、デフォルトでは TRUE です (このフィルタを使用します)。 MyVolume Profile Scalper EA は、  すべての時間フレーム
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)
シドニーは、人工知能を従来のテクニカル分析と組み合わせて使用し、 GBPUSDと USDJPYの シンボルの将来の市場の動きを予測する複雑で新しいアルゴリズムです。このExpert Advisorは、テクニカル分析指標からのデータを使用して訓練されたリカレントニューラルネットワーク、特にLong-Short-Term-Memoryセルを使用します。この方法によって、EAは将来の値動きに最も関連する指標を学習し、それに基づいて行動することができるのです。さらに、LSTMネットワークは、短期と長期の両方の履歴データを考慮することができるため、時系列分析に特に適しています。 注:本商品は 限定紹介 商品です:このEAを現在の価格で販売するのは、 10本中1本 のみです。次の価格: 499ドル このEAの価格は、このシステムで取引するユーザーを限定するために、着実に値上げされる予定です。 ライブ信号 : https://www.mql5.com/en/signals/2021790 MT5バージョン : https://www.mql5.com/en/market/product/96960
Bfxenterprise RSI
Ricky Romadona Tri Saputra
Bfxenterprise RSI Inspired and optimized RSI indicator is the focus of this Expert Advisor (EA). Designed with the use of RSI to perform optimal transactions. Reading trends and price reversals is done by the RSI whose functions have been sorted. Version of Bfxenterprise The version with the name “Bfxenterprise” focuses on special and thorough sorting of transactions. So this version does not always make transactions, unlike the Expert Advisor version in general. This version relies on accuracy
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/
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
WaveKing EA Live signal https://www.mql5.com/en/signals/2203414 Instructions for use: Usage requirements Instructions  Symbol  GBPCAD, EURSGD  Period  M1  Platform  ICMarkets  RAW  Latency   No requirement, of course it would be better within 50ms  Blance  >50 USD  Martingle NO,1 order max parameter settings: Parameter name Setting instructions Lots= 0.01 default is 0.01, recommended is 0.01 for 100 US dollars, 0.05 for 500 US dollars, and so on SL= 800 stop
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ドル EA を 1 つ無料で入手 (2 取引アカウント用) -> 購入後に連絡してください Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal ゴールドリーパーへようこそ! 非常に成功した Goldtrade Pro を基にして構築されたこの EA は、複数の時間枠で同時に実行できるように設計されており、取引頻度を非常に保守的なものから非常に不安定なものまで設定するオプションがあります。 EA は複数の確認アルゴリズムを使用して最適なエントリー価格を見つけ、内部で複数の戦略を実行して取引のリスクを分散します。 すべての取引にはストップロスとテイクプロフィットがありますが、リスクを最小限に抑え、各取引の可能性を最大化するために、トレーリングストップロスとトレーリングテイプロフィットも使用します。 このシステムは、重要なサポート
FT Gold Robot MT4
Marzena Maria Szmit
5 (18)
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ドル EA を 1 つ無料で入手 (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 の仲間入りですが、大きな違いが 1 つあります。それは、これが本物の取引戦略であるということです。 「実際の取引戦略」とは何を意味しますか?   おそらくお気づきかと思いますが、市場に出回っているほぼすべてのゴールド EA は単純なグリッド/マーチンゲール システムであり、市場が初期ポジションに逆らったときに取引を追加します。  それらは「ニューラル ネットワーク/AI/機械学習」として偽装されることがよくありますが、
Quantum Emperor MT4
Bogdan Ion Puscasu
4.92 (131)
ご紹介     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 Empire EA を購入すると、Quantum StarMan、Quantum Trade EA、または Quantum Gold Empire を無料で入手できる可能性があります!*** 詳細については個別にお問い合わせください。 新しい Live Signal V4:   ここをクリックしてください MT5バージョン:   ここをクリック 量子EAチャネル:       ここをクリック *プロモーション価格: $1199。 10回購入するごとに価格が10
GoldPulse AI
Babak Alamdar
4.29 (14)
バックテストではなく、実際の取引システムを購入してください。 Live Signal 1     Live Signal 2       Live Signal 3   この価格はプロモーション期間中の一時的なもので、間もなく値上げされます EA を 1 つ無料で入手 -> 購入後に連絡してください 現在の価格では残りわずかです。次の価格は -->> 1480 $  Welcome to the GoldPulse AI Hey, I'm GoldPulse AI! これは、XAUUSD、XAUEUR、XAUGBP、XAUAUD、XAUJPY、XAUCHF、XAUSGD、XAUCNH などの完全なペアで金または XAU を取引する最初の最もスマートなロボットです。 私は毎日ニュースをチェックし、技術的、基本的、感情的な裏付けが得られる機会はすべて利用します。せっかちなトレーダーのポケットから患者のポケットにお金が落ちます! この市場では、賢い人々と競争することになります。彼らはあなたのお金を手に入れようとしており、あなたも彼らのお金を手に入れようとしています。最も正確
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
注意事項 EAには最大6つのエントリーポイントが含まれ、各取引のロット数は注文ロット数に6を乗じたものとなるため、ロット数が大き過ぎないようご注意ください。 ロット数のデフォルトの計算方法は資金のパーセンテージではありません。デフォルトの計算方法はレバレッジの影響を受けないため、リスクをより正確に管理できます。  リスク耐性を高めるために、1,000ドル以上の資金のご利用をお勧めします。 複数の通貨ペアを同時に使用するとリスクが蓄積される可能性があるためご注意ください。 こちらはMT5バージョンです。MT5バージョンは市場環境をより正確に再現できます。 MT4バージョンが必要な場合は、後日リリースいたします。 取引にはリスクが伴うため、こうしたリスクを理解し効果的に管理することが非常に重要です。 リアルマネーシグナル: クリックして表示 ライブシグナル: クリックして表示 MT5バージョン: MT5へ移動 現在、ゴールドEAを無料で提供するキャンペーンを行っています。購入後にご連絡いただければ、お受け取りいただけます。このキャンペーンは期間限定です。 実行の推奨事項 推奨通貨ペア
Live signal :   TrendMaster FX The MT4 version : TrendMaster FX MT4   現在、EAの試用キャンペーンを実施中です。購入後にご連絡いただければ、「Gold Garden」または「AI TradingVision GPX」をご利用いただけます。詳細はお問い合わせください。 おすすめの通貨ペア: 英ポンド/米ドル(GBPUSD) 米ドル/カナダドル(USDCAD) ユーロ/米ドル(EURUSD) リスク設定: 積極的なトレーダーのための最大リスク設定は0.15です。 より保守的なトレーダーや、特に資本の大きい人は、0.05以下に設定することをおすすめします。 購入後: ユーザーマニュアルと注意事項を入手するために、私たちに連絡してください。すでに購入された方は、おすすめのユーザーマニュアルを参照してください。 安全で安定したEA: 当社のEAは、グリッドまたはマーチンゲール戦略を使用していません。各注文にはストップロスがあります。 大きな価格変動が発生した場合、ヘッジ保護があり、EAに不必要なリスクを加えることはありません
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
ローンチプロモーション: 現在の価格で入手可能な限定数のコピー 最終価格: 990$ NEW: 無料で EA を 1 つゲット!   (2取引口座の場合) Ultimate Combo Deal   ->   click here LIVE RESULTS:   https://www.mql5.com/en/signals/1949810 JOIN PUBLIC GROUP:   Click here Set Files DayTrade Pro アルゴリズムへようこそ!   何年にもわたって市場を研究し、さまざまな戦略をプログラミングしてきた結果、優れた取引システムに必要なすべてを備えたアルゴリズムを見つけました。 ブローカーに依存しない スプレッド インディペンデント MT4、MT5、TDS2、および複数のブローカーで、実際の変数スプレッドテストを使用して非常に安定したバックテストを簡単に示します 何百もの異なる設定はすべて、テストで有益な結果をもたらします (もちろん、私は最高のものを選択しました!) 非常に堅牢なシステム -> 設定は交換可能であるため、USDJPY
Bitcoin Robot MT4
Marzena Maria Szmit
5 (10)
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
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
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
現在のプロモーション: 残り 1 個 349$ 最終価格: 999$ プロモーション ブログ で「 究極の EA コンボ パッケージ」 をチェックしてください 。   LIVE SIGNAL Bitcoin Scalp Pro は市場で唯一の取引システムです。  サポートとレジスタンスレベルのブレイクアウトを取引することにより、ビットコイン市場のボラティリティを悪用することに完全に焦点を当てています. EA の焦点は安全性にあります。これは、極端に低いドローダウンと取引の非常に優れたリスク/報酬比につながります。 EA は、ビットコインの実際の価格に基づいて、ストップロス、テイクプロフィット、トレーリングSL だけでなく、エントリーとロットサイズも計算する「スマート適応パラメーター システム」を内部で使用します。 つまり、ビットコインが 6000 または 30000 で取引されている場合、すべてのパラメーターの値が異なります。 EA は 2022 年 6 月以降、実際のライブ アカウントでフォワード テストされており、これまでのところ結果は非常に有望です。 ティッククオリ
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
Ai Multi Trend MT4
Mansour Babasafary
5 (2)
45% discount, until 2024.06.14 (for old customers and first buyers >>> Expert final 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
ローンチプロモーション:30%OFF! 現在の価格で購入するために残っている販売は3つだけです。 次回価格: $1033 無料でUS30スキャルパー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の
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 .
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
Boring Pips MT4
Thi Thu Ha Hoang
5 (12)
ほとんどのエキスパートアドバイザーがバックテストのパフォーマンスは完璧でも、実際の取引では効果的でない理由について考えたことはありますか? 最もありそうな答えは過学習です。多くの EA は利用可能な過去のデータに完璧に適応するように作成されていますが、構築されたモデルに一般化能力がないため、将来を予測することができません。 一部の開発者は、過学習の存在を知らないか、知っていても防止する方法を持っていません。他の人はそれをバックテスト結果を美化するためのツールとして利用し、統計的な有意性を考慮せずに数十の入力パラメータを追加し、取引戦略を過去のデータに過度に合わせ、自分の EA が将来において同様のパフォーマンスを達成できると他の人に納得させようとします。 もし興味があって、過学習についてより深く理解したい場合は、こちらの私の記事を参照してください。 Avoiding Over-fitting in Trading Strategy (Part 1): Identifying the Signs and Causes Avoiding Over-fitting in Trading St
One Gold MT4
Stanislav Tomilov
4.67 (12)
Welcome to the world of next-generation investments with our unique trading robot for gold on the MetaTrader platform! Our proprietary developments represent the pinnacle of advanced data analysis computational platforms in the world of trading. One Gold EA is a genuine smart algorithm, operating at a level beyond human traders' reach. Its unique method is based on the principles of a neuroscanner and advanced technologies in neural networks, EA is capable of analyzing historical and current dat
FXMachine
Alexander Kozachuk
4.75 (12)
2020 年以降の実際のアカウントの統計 過去 13 年間のバックテスト 低ドローダウン戦略 複数通貨アルゴリズム あらゆるブローカーと互換性があります 実証済みのドローダウン制御システム 2020 年以降 のリアル口座での取引: ここをクリック USDCAD、EURGBP、GBPUSD、EURUSD での取引: ここをクリック EURGBP での取引: ここをクリック GBPUSD での取引: ここをクリック FXMachine EA の完全なバックテストはここからダウンロードできます: ここをクリック 当社について: FXMachine およびその他のロボットの開発とサポートは、 外国為替 分野で 14 年以上の経験を持つ専門チームによって行われています。 この 14 年間 の間、私たちは開発を改善し、取引に対するより優れた効果的なアプローチを見つけてきました。 もし私たちに 私たちが与えることができる最高のアドバイスは何ですかと尋ねられたら どの EA が優れているか、どの EA がそうでないかを判断するには、次のような答えが得られます。 最も
TopBottomEA's advantage: the first support for small capital work EA, real trading for more than 4 years; this EA based on volatility adaptive mechanism, only one single at a time, each single with a stop-loss, an average of about 4 orders per day, holding a single length of 12 hours or so, with a limit of $ 20 principal challenge backtesting ran through more than 10 years. Every interval of three days to increase the price of $ 100, the price process: 998 --> 1098 --> 1198...... Up to the targ
需要と供給の 原理に基づいた 完全自動アドバイザー 。完全に自動化された 需要と供給のアドバイザー を初めて提供しました 。 取引が 簡単に なり、取引戦略を完全にコントロールできるようになりました 便利なグラフィカル操作パネルを使用。 15,000 行を超えるコードを含む、非常に高品質の アルゴリズム取引 ソフトウェアが手に入ります。 EA ProBot の需要と供給のガイド Prop Firms を取引するための最良の方法は、資格のあるトレーダーになるためのすべての手順に挑戦します。 すべてのトランザクションは自動的に行われ、管理されます。 インプットを選択する だけで、リラックスして利益の成長を観察できます。 パネル入力パラメータ: 取引方向の 選択 (買いまたは売り) 取引したい時間枠 を選択してください 操作したいゾーンのタイプ を選択します (広、中、狭、超狭) 3つの資金管理オプション から選択 利益を得る取引 または 損失を得る 取引の数の後に停止するアドバイザーを選択してください 。 リスクまたは ATR に基づいて TP および SL
Launch promo! Only a few copies left at 499$! Next price: 599$ Final price: 999$ 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は、トレードとコーディングに豊富な経験を持つチームによって開発さ
Golden Pickaxe
Valeriia Mishchenko
4.67 (6)
EA has high-performance live track records of different set files: XAU Risky Vol XAU Balanced Vol XAU Balanced MT5 version can be found here Golden Pickaxe is a mean-reversion grid trading system that uses machine learning technology to place high-profit potential trades on the Gold market. It uses real market inefficiencies to its advantage to have an edge over the market. The EA has 5 predefined set files, which are essentially 5 different trading systems on gold . You may choose the def
1.自動売買アドバイザー 2. EURUSD ペアで最良の結果が得られますが、他の商品の設定を調整することもできます。 3. m1 から m15 までの時間枠を使用します。 4. Expert Advisor は平均法を使用して取引を行い、スムーズかつ安全にボリュームを増やします! 5. 取引を指示するために、EA はローソク足分析を使用します。 6. 最も安全なオプションは、1500 ~ 2000 ドルごとに 0.01 ロットを使用することです 7. リスクを軽減するために、4 回の取引の後に 300 ピップ、6 回の取引の後に 500 ピップずつステップを変更することをお勧めします。 8.14年の経験を持つ保守的なアドバイザー! 9. 希望利回りから推奨入金額を検討! 10. 取引にはドローダウンが発生しますが、これは正常なことであり、ロボットは巧みにそれらを終了します。これには時間がかかります。 実際のアカウントの監視 - https://www.mql5.com/ru/signals/1679839?source=Site +Signals+My \\
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
Luna AI PRO
Profalgo Limited
4.67 (3)
プロモーションを開始: 399ドルで1部のみ入手可能 最終価格: 2000ドル この EA の販売数は限られています 市場で最も先進的な「ミーンリバース」取引ロボットである Luna AI Pro EA を使用して 、人工知能の力を解き放ち、取引を前例のない高みに引き上げましょう。 経験豊富なトレーダーと初心者の両方に対応するように設計されたこの最先端の AI 駆動システムには、取引戦略を最適化し、利益を最大化するための幅広い機能が装備されています。 Luna AI Pro を使用して、取引戦略の可能性を最大限に引き出します。 トレーディングの未来を受け入れ、高度な人工知能があなたの投資の旅に革命を起こしましょう。 今すぐ AI のパワーを体験し、世界中で成功したトレーダーの仲間入りをしましょう。 この EA が他と異なる理由: OneChartSetup -> 1 つの単一チャートからすべてのペアを実行 個別のパフォーマンス モニター: 各ペアのパフォーマンスが良くない場合はリスクが自動的に削減され、再び収益が上がる場合はリスクが再び増加します。 マーチンゲール法、グリッド
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 MA  который самостоятельно создает  сразу 4  нейронных сети  и обучается во время работы или при запуске в тестере стратегий, сеть  создается из значений средней цены (на основе индикатора Moving Average). Другие мои продукты смотрите тут . Советник не использует сторонних библиотек, ни чего не подключает, все расчеты происходят внутри советника, с возможностью сохранения данных нейронной сети и всех его параметров при обучении, перезапуске или переносе
フィルタ:
レビューなし
レビューに返信