• 概要
  • レビュー
  • コメント (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 Rebate
Mr Panjapol Kanka
1 (1)
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
Harmonizer EA
Amir Hossein Moharreri
5 (1)
このEAは、各個別のトレードのエントリーポジションを計算するために洗練されたアルゴリズムを使用するパワフルなグリッドトレードツールです。過去のデータにフィットさせるのではなく、市場の変動性を利用して最適化を行います。市場の変動性を利用することで、アルゴリズムは市場の変化に素早くかつ効率的に適応することができます。これにより、市場の機会を活用すると同時に、事前に定義されたパラメータ内でリスクを最小限に抑えることができます。 ただし、このEAを使用する際には注意して、自分が快適な金額でリスクを取るようにしましょう。EAのバックテストを行い、設定を試して最適なものを見つけることをお勧めします。 対応シンボル:AUDCAD、AUDNZD、NZDCAD 推奨タイムフレーム:M15(15分足チャート) 特徴 類似のEAよりも安価 複数のシンボルで動作する 1つのチャート設定 ニュースフィルター ライブパフォーマンスモニタリング 過去のデータにフィットしすぎない 開発者サポート 要件 ヘッジングアカウント このEAはスプレッドに敏感ではありませんが、ECNアカウントが推奨されます
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
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
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 Gold
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 Future of Automated Trading is Here – Gold Grove System Welcome to next-level smart trading. Gold Grove System is a fully automated Expert Advisor (EA) designed to unlock your full trading potential with powerful AI-driven strategies. Whether you're trading for yourself or aiming to pass prop firm challenges, this EA delivers a blend of performance and protection that few can match. With 5 years of rigorous backtesting on XAUUSD H1 , Gold Grove System has proven its ability to navigate marke
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
TREND CRUSHER DEFAULT SETTING - ATTACH TO H4 TIMEFRAME These are the BEST SYMBOLS TESTED: CADCHF,CADJPY,CHFJPY,EURAUD,USDJPY,EURNZD AUDNZD,USDCAD,GBPCAD,AUDCAD,GBPNZD,GBPAUD Trend Crusher has a dynamic entry and a dynamic grid system. It is dynamic to avoid opening grids when you do not need them. Why open a grid in normal market conditions? The EA will detect high volatility and only open a grid at a distance that matches the volatility. You can trade against the Trend or Follow the Trend.
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
GOLD MASTERY EA 1. OVERVIEW  The Gold Mastery EA is a sophisticated Expert Advisor (EA) specially designed for trading Gold (XAUUSD) based on Double Top/Bottom patterns with Neckline confirmation. This EA integrates ATR-based stop loss and takes profit levels, ensuring an optimal risk-reward ratio.  2. Unique Features   Double Top/Bottom Pattern Detection: Uses historical price action to identify strong reversal signals. Neckline Confirmation (Optional): Ensures pattern validity before placin
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.53 (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
このプロダクトを購入した人は以下も購入しています
HiJack
Cence Jk Oizeijoozzisa
1 (1)
HiJack Expert Advisor – 高度なAIを活用した取引  市場でのクラック版の流通を防ぐため ライブシグナル:   https://www.mql5.com/en/signals/2293194 https://www.mql5.com/en/signals/2296874 https://www.mql5.com/en/signals/2305314 HiJack Expert Advisorは、長年にわたって非公開で使用されてきましたが、今回、その強力な機能を多くの人々に利用してもらうため、一般公開することを決定しました。 HiJackは、主要な銀行や機関の取引行動を分析するために、最先端の人工知能を利用しています。大量の買い注文や売り注文を検出し、最大の速度、最適な利益の可能性、そして最小のリスクで取引を実行します。 主な機能:           マーチンゲール、ネットワークトレーディング、その他の危険な取引は禁止           自動ロット機能付き 専用プライベートサーバー:   EAは、正しく機能するために専用サーバーへの接続が必要です。この接続がな
Bitcoin Robot MT4
Marzena Maria Szmit
4.84 (51)
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
GbpUsd Robot MT4
Marzena Maria Szmit
4.87 (61)
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
Aura Neuron MT4
Stanislav Tomilov
4.33 (6)
Aura Neuron は、Aura シリーズのトレーディング システムを引き継ぐ独特のエキスパート アドバイザーです。高度なニューラル ネットワークと最先端のクラシック トレーディング戦略を活用することで、Aura Neuron は優れた潜在的パフォーマンスを備えた革新的なアプローチを提供します。完全に自動化されたこのエキスパート アドバイザーは XAUUSD (GOLD) などの通貨ペアを取引するように設計されています。1999 年から 2023 年まで、これらのペアで一貫した安定性が実証されています。このシステムは、マーチンゲール、グリッド、スキャルピングなどの危険な資金管理手法を回避しているため、あらゆるブローカーの条件に適しています。Aura Neuron は、多層パーセプトロン (MLP) ニューラル ネットワークを搭載しており、これを利用して市場のトレンドと動きを予測します。MLP はフィードフォワード人工ニューラル ネットワーク (ANN) の一種で、特に単一の隠し層で構成されている場合は「バニラ」ニューラル ネットワークと呼ばれることがよくあります。MLP には、入力
Quantum Emperor MT4
Bogdan Ion Puscasu
4.85 (160)
ご紹介     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 ドル クォンタムエ
Scalping Robot MT4
Marzena Maria Szmit
4.4 (15)
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
Big Forex Players MT4
Marzena Maria Szmit
4.76 (34)
We proudly present our cutting-edge robot, the  Big Forex Players EA  designed to maximize your trading potential, minimize emotional trading, and make smarter decisions powered by cutting-edge technology. The whole system in this EA took us many months to build, and then we spent a lot of time testing it. This unique EA includes three distinct strategies that can be used independently or in together. The robot receives the positions of the   biggest Banks   (p ositions are sent from our databa
Forex EA Trading Channel on MQL5:  Join my MQL5 channel to update the latest news from me.  My community of over 14,000 members on MQL5 . ONLY 3 COPIES OUT OF 10 LEFT AT $299! After that, the price will be raised to $399. - REAL SIGNAL  Default Setting:  https://www.mql5.com/en/signals/2302784 Full installation instructions for EA AI Gold Scalper to work properly are updated at comment #3 AI Gold Scalper applies the latest GPT-4o model (GPT-4o by OpenAI) in XAU/USD trading designed based o
LENA Scalp
Cence Jk Oizeijoozzisa
4.4 (5)
LENA Scalp 高度なストップロステクノロジーと人工知能を活用したLena Expert Advisorは、革新的なトレーディング体験を提供します。 Lenaのロボットは、大きなストップロス、マーチンゲール、またはグリッドトレーディングを使用しません。代わりに、市場の状況に適応する動的なストップロスシステムを採用しています。 人工知能による分析は、戦略に基づいた市場の重要な機会を特定するのに役立ちます。 この自動化されたトレーディングソリューションは、経験豊富なトレーダーによって設計された堅実で実証済みのアプローチに基づいており、信頼性と効率性を提供します。 大きな損失制限は使用せず、アクティブ化が無効であることを検出すると、可能な限り最小限の損失で終了し、ライブ口座での取引 (これは人工知能の検出です) を終了します。 完全版を購入すると、 Hijack の無料コピーが送られます。       HiJack: https://www.mql5.com/en/market/product/133565      1ヶ月未満で150%の利益        HiJackシグナル:
Alpha Flow EA: 新たな高みへと導くトレーディングアドバイザー Alpha Flow EA は、戦略的な精度、適応力、そして高度な市場分析を通じて、あなたのトレーディング体験を変革するために設計された最新のトレーディングアドバイザーです。独自のトレーディングアルゴリズムと深い市場インサイトを駆使して、あらゆる市場環境で優れたパフォーマンスを発揮し、市場のトレンドを先取りするサポートをします。 Alpha Flow EA の特徴とは? 洗練された市場分析 Alpha Flow EA   は、従来のテクニカル分析と最新のクオンツ戦略を融合した多次元分析アプローチを採用しています。高度なパターン認識機能により、新たなトレンドを見抜き、戦略的かつタイムリーな取引チャンスを提供します。 多様なトレーディング戦略 幅広い事前設定された戦略を搭載しており、 Alpha Flow EA   は市場の状況にシームレスに適応します。固定化されたルールに頼ることなく、最適な戦略を動的に選択し、さまざまな市場シナリオでパフォーマンスを最大化します。 高速かつ正確な注文実行 高頻度取引(HFT)技術
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
A Richter Expert is a professional market analyst working using a specialized algorithm. By analyzing prices over a specific time period, it determines the strength and amplitude of prices using a unique indicator system based on real data. When the trend and its direction change, the expert closes the current position and opens a new one. The bot's algorithms take into account signals about overbought and oversold markets. Buying occurs when the signal falls below a certain level and then rise
CoreX G MT4
Arseny Potyekhin
5 (7)
概要 CoreX G EAは、外国為替市場の複雑さに対応するために特別に設計された高度な取引システムです。最先端のニューラルネットワーク、高度な機械学習技術、および統合されたビッグデータ戦略を活用することで、CoreX Gは取引において卓越した精度とセキュリティを提供します。このエキスパートアドバイザー(EA)は、技術的な優秀さとプレミアムなカスタマーサポートにより際立ち、ユーザーが質問や懸念に常に対応できるようサポートします。 ブローカー 任意のブローカー、 ECN / ZERO スプレッドを推奨 レバレッジ 1:20 から 入金 最低 200 ドル      シンボル XAUUSD タイムフレーム H1 ビッグデータ統合と取引戦略 ビッグデータはCoreX Gの戦略の基盤です。膨大な量の過去およびリアルタイムの市場データを処理し、十分な情報に基づいた取引決定を行います。ビッグデータの使用により、このシステムは外国為替市場でのパターンやトレンドをより効果的に特定し、より正確な予測と取引機会の向上につながります。機械学習とビッグデータを組み合わせることで、EAは常に新しいデータを
Greedy Golden MT4
Mihails Babuskins
4.67 (3)
Important: Please use in accounts with lower swap or swap-free accounts. Real monitoring signals: Signal 1 Contact me after payment to send you the user manual PDF file See the real monitoring signal in my profile. Use only on gold and on the  BUY direction. Trading gold is attractive to many traders due to the high volatility and depth of the market. Should we invest in gold or just scalp it? Answering this question is a big challenge for many traders. X trading robot is the answer to this cha
発売プロモーション: 現在の価格で残っているのはわずか数コピーです! 最終価格:1,700ドル 1 EAを無料で取得(2つの取引口座用)-> 購入後に連絡してください Instruction Blog Link to Channel ZenFlowへようこそ! ZenFlowは、変化する市場トレンドに正確かつ迅速に適応するよう設計された高度なEAです。XAUUSD( or GOLD)シンボルの取引に最適化されており、1つのチャートでのみ実行するべきです。このEAは、偽のシグナルをフィルタリングしながら最適なエントリーポイントを特定するモメンタムベースのインジケーターと組み合わせた洗練されたトレンドフォロー戦略を使用しています。トレーリングストップロス機能は、リスクを有効に管理しながら利益を確保するのに役立ちます。 最先端の技術で構築されたこの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.
Supply Demand EA ProBot
Georgios Kalomoiropoulos
5 (8)
需要と供給の 原理に基づいた 完全に自動化された EA 。 完全に自動化された 需給アドバイザー を提供する 最初の企業。 取引 がさらに簡単になりました: 使いやすいグラフィカルな取引ダッシュボードを使用して、取引戦略を完全に制御します。 手動、半自動、完全自動など、あらゆる取引スタイルをカバーする高品質の アルゴリズム 取引ソフトウェアを入手できます。多種多様な設定とカスタマイズ オプションにより、すべてのトレーダーが自分のニーズと個人の取引スタイルに合った戦略を作成できます。無限の可能性を提供するのが、このユニークなエキスパート アドバイザーの魔法です。 ProBot 供給と需要 EA ガイド || 取引パネルの使い方 || 自動操舵 購入後にメッセージを送ってください。 方向 指示器をお送りします。価格は 199 ドルですが、 購入後は完全に 無料で 受け取ることができます。 需要と供給における取引モード EA ProBot 手動取引: 供給エリアと需要エリアの横にあるエリア ラベルをクリックして、マーク/制限取引を手動で行うことができます。これを行うには、入力パラメ
Exp4 AI Sniper for MT4
Vladislav Andruschenko
3.67 (3)
私たちのチームは、MetaTrader ターミナル向けの最先端のスマート トレーディング エキスパート アドバイザーである Trading Robot をご紹介できることを嬉しく思っています。 AI Sniper は、   MT4     の両方の端末向けに設計された、インテリジェントな自己最適化取引ロボットです。 洗練されたアルゴリズムと最先端の取引手法を活用した AI Sniper は 、取引の最適化における卓越性を体現しています。 当社のチームは、取引所と株式市場の両方で 15 年を超える豊富な経験を活かし、革新的な戦略管理機能、インテリジェントな機能、直感的なグラフィカル インターフェイスを組み込んだこのエキスパート アドバイザーを作成しました。 AI Sniper の各側面は細心の注意を払って設計され、厳密にテストされたプログラム コードによってサポートされています。 高度な計算インテリジェンスは複雑なテクニカル分析を通じて機能し、あらゆる価格変動に対して何千もの数学的計算を実行します。 これにより、   AI Sniper は 、強気市場トレンドでも弱気市場トレンドでも、
Gold ISIS MT4
Lo Thi Mai Loan
5 (2)
EA Gold Isis – 安全で効果的な金取引ソリューション  \ ローンチプロモーション  現在の価格で残りわずか1本  次回価格:$598   最終価格:$1998  ライブシグナル  MT5バージョン   こんにちは。私はEA Gold Isis、Diamond Forex Groupファミリーの2番目のEAで、金(XAU/USD)取引専用に設計されています。優れた機能と安全性を重視した設計で、トレーダーの皆様に持続可能で効果的な金取引体験を提供します。   EA Gold Isisの特徴   - 動的ストップロス(SL):EAは、最近のローソク足の価格範囲に基づいてストップロスを設定します。これにより、SLが市場の状況に柔軟に対応し、変動する市場でも効果的に口座を保護します。   - 多様な取引戦略:EAには3つの取引戦略が搭載され、それぞれ最大3つのポジションを同時に開くことができます。合計で最大9つの取引が可能です。   - 柔軟なトレーリングストップ:トレーリングストップによる利益確保機能が含まれています。この機能は、個々の好みに応じてカスタマイズ可能です
One Gold MT4
Stanislav Tomilov
4.64 (11)
One Gold EA をご紹介します。これは、Meta Trader プラットフォーム上の洗練された金取引ロボットで、高度な市場分析でトレーダーを支援するために開発されました。当社の独自のテクノロジーは、ニューラル ネットワークとデータ駆動型アルゴリズムを活用して、過去およびリアルタイムの金市場データを分析し、意思決定に役立つ洞察を提供します。従来の手動戦略とは異なり、One Gold EA は最小限の介入で動作し、取引プロセスを合理化し、関連するリスクの削減を目指しています。高度なニューラル プラグインの使用によりロボットの分析機能が強化されますが、他の取引ツールと同様に、One Gold EA は利益を保証するものではないことに留意することが重要です。ただし、より情報に基づいたデータに裏打ちされた洞察を提供することで、取引パフォーマンスを向上させる可能性を考慮して設計されています。One Gold EA は、金市場を継続的に監視して、人間のトレーダーが見つけるのが難しいパターンや傾向を検出します。このシステムはさまざまな市場状況に適応できるため、特に金取引のような非常に不安定な環
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
現在のプロモーション: 残り 1 個 549$ 最終価格: 999$ NEW: Choose 1 EA for free! (for 2 trade account numbers) プロモーション ブログ で「 究極の EA コンボ パッケージ」 をチェックしてください 。   LIVE SIGNAL Bitcoin Scalp Pro は市場で唯一の取引システムです。  サポートとレジスタンスレベルのブレイクアウトを取引することにより、ビットコイン市場のボラティリティを悪用することに完全に焦点を当てています. EA の焦点は安全性にあります。これは、極端に低いドローダウンと取引の非常に優れたリスク/報酬比につながります。 EA は、ビットコインの実際の価格に基づいて、ストップロス、テイクプロフィット、トレーリングSL だけでなく、エントリーとロットサイズも計算する「スマート適応パラメーター システム」を内部で使用します。 つまり、ビットコインが 6000 または 30000 で取引されている場合、すべてのパラメーターの値が異なります。 EA は 2022 年 6 月以降、実
Gold Fighter MT4
Thi Ngoc Tram Le
5 (3)
Gold Fighter専用の取引アカウント 期間限定オファー: 残り3枠、価格は$ 324 。その後、価格は$424に上昇します。 購入後、セットアップガイドや技術サポートが必要な場合は、お問い合わせください。 説明: Gold Fighter MT4は、ゴールド(XAU/USD)取引専用に設計されたエキスパートアドバイザーで、トレンドフィルタ機能によりエントリーを最適化します。 安定性に重点を置いて設計されており、高リスクな戦略を避け、実用的なゴールド市場へのアプローチを提供します。 すべてのレベルのトレーダーに適しています。 主な特徴: ゴールド取引に特化: XAU/USDに最適化され、ゴールド市場の動きを活かします。 低リスク設計: リペイントなし、ヘッジなし、グリッドなし、マーチンゲールなし。 カスタマイズ可能なリスクオプション: リスクレベルは1〜10の間で調整可能。
Dear traders, after having voluntarily removed the HFT FAST M1 GOLD SCAPER V6 EA a couple of months ago, and receiving hundreds of messages—having listened to both “camps”: those who asked me to tame the beast, and those who got very upset when I actually did limit it—I realized that both sides were right, but it’s impossible to please different types of traders with different styles and levels of aggressiveness in trading. After running tons of tests with this beastly EA, I concluded that the i
Dark Algo
Marco Solito
4.71 (58)
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
Stock Indexes EA MT4
Marzena Maria Szmit
5 (2)
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
DS Gold Robot MT4
Marzena Maria Szmit
4 (4)
Introducing the DS Gold Robot, your ultimate companion in navigating the intricate world of XAUUSD trading. Developed with precision and powered by cutting-edge algorithms, DS Gold is a forex robot meticulously crafted to optimize your trading performance with  XAUUSD pairs . With its advanced analytical capabilities,  DS Gold  Robot   constantly monitors the gold market, identifying key trends , patterns, and price movements with lightning speed. The DS Gold Robot opens positions every day from
購入する前に、デモアカウントMyVolume Profile FV (無料版) を使用してフォワードテストによるテストを数か月間 行ってください。 それを学び、自分に合った最適なセットアップを見つけてください。 MyVolume Profile Scalper EA は、ボリューム プロファイルを使用するように設計された高度な自動プログラムです。 ボリューム   プロファイルは、 指定 された期間中に特定の価格レベルで取引された総量を取得し、その総量を上昇量 (価格を上昇させた取引) のいずれかに分割します。 )またはダウンボリューム(価格を下げる取引)を行い、オープンまたは デア を行います。 このEAのコアエンジンは、インジケーターボリューム、平均足、ADXを使用しています。 カスタマイズ可能な移動平均を使用した追加フィルターにより、移動平均インジケーターによって与えられる傾向を確認し、追跡します。 このフィルタはオプションであり、デフォルトでは TRUE です (このフィルタを使用します)。 MyVolume Profile Scalper EA は、  すべての時間フレーム
CyNera MT4
Svetlana Pawlowna Grosshans
2.8 (15)
CyNera:あなたの取引、私たちの技術 シグナル >400%:  CyNera シグナル >500%: CyNera Turbo マニュアルとセットファイル: 購入後にご連絡いただければ、マニュアルとセットファイルをお送りします 価格: 価格は販売されたライセンスの数に応じて上昇します 利用可能なコピー: 4 金取引は、市場で最も変動の激しい金融商品であり、精密さ、徹底した分析、そして強力なリスク管理が求められます。CyNeraエキスパートアドバイザーは、これらの要素を巧みに組み合わせ、最適な金取引を実現するために設計された高度なシステムです。CyNeraの高度な戦略と技術は、経験豊富なトレーダーだけでなく、初心者にも、金取引がもたらす独自の課題やチャンスを乗り越えるための支援を提供します。 CyNeraは、金市場の複雑さに対応した信頼できるソリューションを提供します。適応性に優れたインテリジェントな戦略と、多時間枠分析、自動取引調整、そして正確なリスク管理などの高度な機能を組み合わせています。この柔軟性により、CyNeraは市場の急速な変化に即座に対応しつつ、長期的に資本を守る
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 にはリスク管理機能が含まれており、トレーダーはリスク レベルをアカウント残高のパー
作者のその他のプロダクト
Forex GPT Full
Evgeniy Kuzevanov
5 (1)
Этот советник расширенная версия Forex GPT MA  который самостоятельно создает сразу 4 нейронных сети и обучается во время работы или при запуске в тестере стратегий, сеть  создается из значений средней цены (на основе индикатора Moving Average). Другие мои продукты смотрите тут . Советник не использует сторонних библиотек, ни чего не подключает, все расчеты происходят внутри советника, с возможностью сохранения данных нейронной сети и всех его параметров при обучении, перезапуске или переносе на
フィルタ:
レビューなし
レビューに返信