Forex GPT Full

5

Этот советник расширенная версия Forex GPT MA который самостоятельно создает сразу 4 нейронных сети и обучается во время работы или при запуске в тестере стратегий, сеть  создается из значений средней цены (на основе индикатора Moving Average).

Другие мои продукты смотрите тут.

Советник не использует сторонних библиотек, ни чего не подключает, все расчеты происходят внутри советника, с возможностью сохранения данных нейронной сети и всех его параметров при обучении, перезапуске или переносе на другой терминал с помощью файлов создаваемых в процессе его работы!

1. Основной принцип работы.

2. Построение сразу 4 нейронной сети.

3. Проверка вариантов нейронной сети.

4. Блок открытия и расчет виртуальных ордеров.

5. Фильтр для анализа и отбора виртуальных ордеров.

6. Описание входных параметров.


1. Основной принцип работы.

Данный советник в своей работе использует и создает 4 нейронных сети используя значения средней цены. Для значения средней цены используем индикатор Moving Average.  Советник на каждом новом баре строит сетку из ячеек на прошлых данных проверяя есть ли в ячейке средняя цена.  Для построения сети используем координатную ось x и y, при нахождении в ячейке средней цены записывает в нее - 1, если цены нет то - 0. Таким образом формируется вариант сети, и так происходит на каждом новом баре, далее советник проверяет в своей нейронной сети есть ли такой вариант расположения и если нет, то добавляет этот вариант в сеть и дает сигнал на открытие виртуальных ордеров, а если уже есть, то блок расчета виртуальных ордеров начинает открывать виртуальные ордера и отслеживать изменение цены и фиксирует либо прибыль либо убыток по каждому варианту который есть в сети. Таким образом советник просчитывает виртуально каждый вариант и накапливает историю сделок по каждому варианту нейронной сети.

    Дальше виртуальные ордера фильтруются по 3 фильтрам и при достижении критериев и наличия сигналов от сети ставятся в торговлю. При включенной опции советник может сохранять все данные работы в файлы, для обучения на истории или для переноса на другой терминал.


2. Построение нейронной сети.

Для понимания как советник строит свою нейронную сеть обратимся к рисунку picture №1 https://c.mql5.com/31/1112/forex-gpt-ma-screen-2118.jpg

Итак мы видим график цены с индикатором Moving Average со значением period=2 и с разлинованная сетка (красные линии) ячейки сети. По оси Х мы берем бары можно использовать с шагом или каждый бар, на рисунке используется step=4. По оси Y берем значения от цены открытия текущего бара, вверх строим сетку прибавляя delta, а вниз вычитая delta.

Получается так: советник смотрит текущий бар и если в ячейке есть значения индикатора Moving Average то в эту ячейку советник пишет 1, если там нет значения индикатора Moving Average то записывает 0. 

Построение сети идет от левой верхней ячейки слева направо вниз построчно, при включенной опции советника Filesave=true данные нейронной сети записываются в файл построчно, каждая строка в файле это вариант сети выпрямленный в одну строку в порядке ее построения - левой верхней ячейки слева направо вниз picture №2 https://c.mql5.com/31/1112/forex-gpt-ma-screen-3578.png.

 

  На данном рисунке содержимое файла *_neural.csv в нем хранится варианты нейронной сети каждая строчка это 1 вариант нейронной сети со значениями 0 и 1.

В данном случае это формирование сети x=4 y=11 и delta=70, чтобы увидеть визуально надо разбить 1 - ую строку по x=4 y=11 – picture №3: https://c.mql5.com/31/1112/forex-gpt-ma-screen-6086.png

 Это же можно видеть в режиме включенной панели информации Enable panel=true

На данном примере хорошо видно как формируется сеть из x=4 y=11 и step=1 – picture №4: https://c.mql5.com/31/1112/forex-gpt-ma-screen-1840.png 

Бары формируются так справа налево 0,1,2,3 и в сети правый столбик в середине стоит 1, далее второй столбик тоже в середине стоит 1 и в 3 столбике 1 стоит выше 1 которые были до этого, потому что там цена выше них и в левом столбике 1-ца еще ниже тех единиц так как цена там была ниже тех значений.

Вот так происходит формирование нейронной сети, которая хранится в виде массива данных в памяти советника и при включенной опции Filesave=true выгружается в каждый понедельник в файлы MQL4/files/ при торговле и при тестировании в tester/files/.


3. Проверка вариантов нейронной сети.

После того как 1 вариант нейросети сформировался советник на каждом новом баре отслеживает новый вариант сети если он отличается от того что уже есть, то советник добавляет его в свою базу открывая при этом виртуальные ордера в обоих направлениях, таким образом советник отслеживает и sell и buy для каждого варианта сети, уже потом при анализе какой вариант sell или buy будет иметь хорошую оценку тот и будет торговать. На каждом баре советник проверяет строит как бы сеть и смотрит как там расположен индикатор и в соответствии с этим принимает решение, если такого нет варианта то добавляет если есть, то открывает виртуальные ордера. Так продолжается пока работает советник.


4. Блок открытия и расчет виртуальных ордеров.

В советнике реализован механизм открытия и анализ уже открытых виртуальных ордеров. Используя массивы переменных, советник отслеживает сигналы от блока нейронной сети и при поступлении начинает следить с каждым баром как меняется цена, используя значения 1 – го бара open, high, low, close. Учитывая направление торговли блок считает прибыль у каждого ордера и ведет расчет каждого варианта сети. В расчетах используются значения максимальной прибыли и минимальной для просадки, профит фактор, прибыль и убытки, количество ордеров для каждого варианта сети. Таким образом если в нейронной сети будет 20 вариантов, то в блоке виртуальных ордеров будет 20 вариантов переменных SL, TP, PF, DD, ordercount для sell и такие же значения для buy. Все эти значения хранятся в памяти советника в виде массива данных, при включенной опции Filesave=true советник выгружает эти значения в файлы: MQL4/files/ при торговле и при тестировании в tester/files/:  

*_buy_d1_v1.csv, *_buy_d1_v2.csv и их же копии на всякий случай.

*_sell_d1_v1.csv, *_ sell _d1_v2.csv и их же копии на всякий случай.

Каждая строка это значения SL, TP, PF, DD, ordercount для одного варианта сети.(см рисунок picture №5: https://c.mql5.com/31/1112/forex-gpt-ma-screen-3958.png )

 *_data.csv – сюда пишет информацию о дате выгрузки, количество вариантов сети и сколько профита по фильтрам, баланс  общий.  По этому  файлу  ориентируемся с какой даты по какую советник накопил историю для перезапуска или при переносе после обучения на истории.


5. Фильтр для анализа и отбора виртуальных ордеров.

Все варианты сети считаются виртуальными ордерами. При том что каждый вариант сети ведет статистику сразу по двум направлениям торговли и в buy и в sell. Все значения могут быть хорошими и плохими убыточными и положительными, для поиска наилучших вариантов сделан фильтр, который отбирает из всех значений лучшие по определенному критерию. Реализовано 3 вида фильтрации:

Для фильтров используются расчеты: 

Filtr1 -   По максимальной прибыли.

Filtr2 -   По максимальной прибыли*профит фактор.

Filtr3 -   По максимальной прибыли*профит фактор*количество ордеров.

Каждый фильтр включается и выключается, при включенных фильтрах возможно открытие сразу 3 ордеров одновременно.


6. Входные параметры

Magicnumber - номер для идентификации своих ордеров; 

Lot - Размер лота;

On/off ММ - включение или выключения мани менеджмента; 

Risk % - Процент от депозита для ММ;

Enable Panel - Включение панели информации;

panel fon Color - Цвет фона панели информации;

panel text Color - Цвет текста  панели информации;

breakeven on/off -  включение безубытка;

breakeven distance -  дистанция для включения для переноса SL в+;

breakeven pips -  на какое количество пунктов выставлять  SL в+;

ON or OFF Trailing -  включение трейлинг стопа;

MinProfit for Trailing   -  дистанция для включения переноса SL в+;

TrailingStop -  на какое количество пунктов выставлять  SL в+;

TrailingStep -  на какое количество пунктов двигать  SL в+;

Filesave - При включении советник будет сохранять все параметры в файлы в формате *.scv - при тестировании в папке терминала tester/files/папка с параметрами советника/filename*.scv. При торговле  в папке терминала MQL4/Files/ папка с параметрами советника/filename*.scv

Filename - названия файлов для сохранения информации:  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 - минимальное значения профит фактора для фильтрации виртуальных ордеров;

MA - период индикатора  Moving Average для определения нейронной сети;

SL* - значение Stop Loss - 16 вариантов расчета;

TP* -  значение Take Profit - 16 вариантов расчета ;

k_sl_tp - коэффициент для умножений значений SL TP;

delta - диапазон значений цены в пунктах, для формирования сети по оси Y;

step -  шаг в барах, для формирования сети по оси Х;

Input net_x - количество ячеек по оси Х;

Input net_y -  количество ячеек по оси Y;

profittestmax - минимальный профит для виртуальных ордеров для начала открытия реальных ордеров;

dd_max - максимальная просадка для виртуальных ордеров больше которой не будут фильтроваться для отбора к реальной торговле;

NumberOfTry - количество попыток открытия, модификации ордеров;

Slippage - проскальзывание;


   Итог:

После того как виртуальные ордера от фильтровались есть еще опция:  profittestmax, где указывается профит в валюте депозита , например там стоит 50, значит реальная торговля начнется только тогда, когда профит виртуальных ордеров по вариантам сети превысит эти значения. 

Получается что советник как буд то сам проводит оптимизацию параметров просчитывая все 16 вариантов SL TP по каждой нейронной сети с разными значениями delta и выбирает из них лучшие варианты и торугет уже по ним.

При включенной опции Filesave=true  файлы пишутся раз в неделю – с утра в понедельник.

Если вы спросите почему сеть состоит только из максимально  х=4 и y=13, то ответ такой: чем больше размер сети тем больше в ней вариантов которые будут меньше повторяться на истории и следовательно по ним будет мало статистики, еще это увеличивает ресурсы и время работы компьютера для поиска и обучения сети, и есть еще не маловажный параметр возможности хранения переменных то же не безграничны и ограничена возможностями языка программирования MQL4. При огромных количествах тестирования и оптимизации оставлены максимальные параметры именно х=4 и y=13.



レビュー 1
Phil
647
Phil 2024.06.23 12:31 
 

I tested this EA more by chance and was surprised that it is the first EA where you can already see in the tester that the neural network is visible and can already learn from the test results and all this within the terminal. I currently have the EA in the live test and give this brilliant product 5 stars. However, I will provide further feedback to hopefully confirm the 5 stars.

And I would like to see an MT5 version of this EA in the future, as MT5 is simply faster and offers more possibilities and resources.

おすすめのプロダクト
The MelBar HedgeScalper FinTech RoboTrader MAXIMUM LOTSIZE : 100 Lots (US$10,000,000) per TRADE/POSITION FULLY TRIED, TESTED, PROVEN & VERIFIED ON A REAL LIVE TRADING ACCOUNT! TRY OUT THE DEMO! The Experienced Trader & Global Money Manager Version. 89% Trade Winning Percentage. 32.679% Profit Gain or ROI in 2 Trading Days. Profit Factor 3.59 Average Trade Length 1h 22m. The MelBar HedgeScalper FinTech RoboTrader is easy to use. Has the Advantage of Retiring Unnecessary "Debt" Positi
Magic Grid
Aliaksandr Charkes
4.54 (28)
Magic Grid is an indicator-free advisor that uses a grid strategy. The strategy is based on automatic reopening of grid pending orders, after closing their market positions (by Take-Profit, Stop-Loss or manually). Pending orders are placed with a specified step from the initial prices, which can be entered manually or generated automatically ( one time at the beginning of the trade ). The robot can trade on any time frame, on any currency pair, on several currency pairs, and on any number of di
FREE
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+
Forest
Vadim Podoprigora
Forest is a Trend Expert Advisor based on the analysis of a unique mathematical model of trend lines, which allows you to determine the trend movement. The Expert Advisor is most suitable for the currency pair "USDCHF" on period "H1". The EA can work on any type of accounts, and with any brokers. The EA uses mathematical analysis to open trades and applies loss control to open trades. At its core, the EA does not use any risky systems with the increase in the volume or increase in the number of
How the EA works (simple explanation) Trades on   M5   timeframe Uses   H1 timeframe   to analyze global market context Analyzes   2 or 3 timeframes simultaneously On each timeframe: Checks price position relative to one or two Moving Averages Evaluates MA angle and distance between price and MA Entry logic is based on   trend + volatility conditions , not on random signals The full algorithm is illustrated in the screenshots. Recommended usage Symbol:   EURUSD Timeframe:   M5 Trading
Gyroscope        professional forex expert   (for EURUSD, GBPUSD, USDJPY, AUDUSD, USDCHF, EURGBP, EURJPY, NZDUSD, USDCAD, EURCHF, AUDJPY, CADJPY pairs)   alyzing the market using the Elliot Wave Index. Elliott wave theory is the interpretation of processes in financial markets through a system of visual models (waves) on price charts. The author of the theory, Ralph Elliott, identified eight variants of alternating waves (of which five are in the trend and three are against the trend). The mov
| Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT4 version, click  here  for  Blue CARA MT5  (settings and logics are same in both versions)     Real monitoring signal  -->  Cara Gold Intro Blue CARA EA   ('CARA') - short for  C omprehensive  A lgorithmic R esponsive A dvisor is a next-gen  multi-currency    multi-timeframe  EA base on the widely known (and perhapse most popular) Inn
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:
Thank you for visiting us. We would like to introduce our new BLACK OUT EA which comes along with a moving average indicator for better trading This EA open and closes trades for you, no need to stress yourself. You can trade on any broker using any time frame . there are no restrictions!! You can easily increase your Lot size on the EA settings Backtest was done for two months. stay tuned for more !!!
GMMA Trade X is an EA based on GMMA. GMMA parameters such as MovingAveragePeriod1-24, MovingAverageMAShift1-24, MovingAverageShift1-24 and CandlestickShift1-24 can be adjusted. GMMA Trade X applies BTN TECHNOLOGY's state-of-the-art intelligent technology to help you create optimal results for your trades. May your dreams come true through GMMA Trade X. Good luck. = == == Inquiries = == == E-Mail:support@btntechfx.com
EA MAGIC WIN is the advanced trading system which was tested for long on different market conditions with heavy load tests. Based on our custom indicator which is backed with mean reversion concept along with few other algorithm this products fits itself into the current market conditions and act accordingly.  Supported currency pairs: EURUSD, GBPUSD, AUDCAD, AUDNZD, NZDCAD Recommended TF: M15. Setfile can be downloaded from here : Click Here Features Easy Setup: You just need to drag the EA
MACDインジケーターのトレーディングロボット これはトレーディングロボットの簡易バージョンであり、1つのエントリー戦略のみを使用します(高度なバージョンには10を超える戦略があります) 専門家のメリット: スキャルピング、マーチンゲール、グリッド取引。 1つの注文または注文のグリッドのみで取引を設定できます。動的、固定、または乗数のステップと取引ロットを備えた高度にカスタマイズ可能な注文グリッドにより、エキスパートアドバイザーをほぼすべての取引手段に適合させることができます。 ドローダウン回復システム、重複する損失注文とバランス保護 グリッド取引がリバウンドしない価格変動に対して脆弱であることは周知の事実ですが、注文回収システムのおかげで、アドバイザーはほとんどのドローダウンから抜け出すことができます。ドローダウンからの脱出は、最も遠い不採算の注文を、利益のある市場に最も近い注文とオーバーラップさせることによって実行されます。取引ロボットは、手動取引または他の専門家によって開かれた取引のために、アカウントの負けたポジションを回復するために使用できます。マジックナンバ
Indicement MT4
Profalgo Limited
5 (2)
Indicementへようこそ! プロップファーム準備完了! -> セットファイルを ここからダウンロード ローンチプロモーション: 現在の価格で残りわずかです! 最終価格: 990ドル NEW: Choose 1 EA for FREE! (limited to 2 trading account numbers) 究極のコンボディール   ->   こちらをクリック 公開グループに参加する: ここをクリック   VERSION 4.0 LIVE RESULTS OLD VERSION FINAL RESULTS INDICEMENT は、 専門的な取引アルゴリズムの作成における私の 15 年間の経験をインデックス市場にもたらします。 EA は、最適なエントリー価格を見つけるために非常によく考えられたアルゴリズムを使用し、取引のリスクを分散するために内部で複数の戦略を実行します。 すべての取引にはストップロスとテイクプロフィットがありますが、リスクを最小限に抑え、各取引の可能性を最大化するために、トレーリング ストップロスとトレーリング テイクプロフィットも使用します。 このシス
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
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
Desbot
Luke Joel Desmaris
Join our Newsletter to also get a copy of our Optimization Settings: https://desbot.ai/#Newsletter  Input Parameters Below are all the input options (aka: Parameters) for Desbot and how to use them. You can find the best Parameters through optimization. RiskPercentage: Enter the number that represents the percent of your account balance you want Desbot to risk per trade. For example, entering 1.5 would risk 1.5% of your Account Balance. SLTicks: Enter the number of ticks you want for your stop
торговая система с риском 1% чем больше денег на счете тем больше лот но риск 1% Начальный депозит 50.00 Спред 10 Чистая прибыль 6.71 Общая прибыль 51.97 Общий убыток -45.26 Прибыльность 1.15 Матожидание выигрыша 0.02 Абсолютная просадка 26.79 Максимальная просадка 29.21 (55.47%) Относительная просадка 55.47% (29.21) Всего сделок 427 Короткие позиции (% выигравших) 219 (72.60%) Длинные позиции (% выигравших) 208 (72.12%) Прибыльные сделки (% от всех) 309 (72.37%) Убыточные сделки (% от все
Gold Label  is an Expert Advisor designed specifically for trading gold.  This EA is specifically designed for   XAUUSD  with low risk and can grow your account from small capital. 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 XAU in 2011-2020 period. No dangerous methods of money managment used. Suitable for any broker conditi
EA KOGORO TREND PROFITABLE HIGHER, FLEXIBLE AND SAFER EA KOGORO is a robot that operates on the most basic principle of the market: "Trend is Friend" combined with the improved Martingale principle with many times more safety than conventional Martingale. - EA KOGORO is a fully automatic EA robot for established pairs. - The principle of order balancing, low DD protects accounts better for high profits. - Opening and closing orders is really flexible. - Safer, high profit. - Manage b
The Official Automated Version of the Reliable Indicator PipFinite Breakout EDGE EA Breakout EDGE takes the signal of PipFinite Breakout EDGE indicator and manages the trade for you. Because of numerous financial instruments to consider, many traders want the signals to be fully automated. The EA will make sure all your trades are executed from entry to exit. Saving you time and effort while maximizing your profits. The Edge of Automation Effortless price action trading is now possible acros
Pirate
Anatoliy Lukanin
3.9 (20)
Deposit :   from 100 deposit units Trading pairs: I recommend currency pairs: EURAUD, CHFJPY, EURCHF, EURGBP, AUDCHF, CADCHF, USDCHF. Trading period :  Any Account: You should use ECN-ECN.Pro accounts with five-digit quotes with a moderate size (spread). Parameters: USING - Choice, trading risk or fixed lot RISK/LOT - Lot Risk Value RESTORING_THE_BALANCE - Restoring balance* HOW_THE_RESET_WINDOW - Reset the Global Variable TAKE_PROFIT - Set profit STOP_LOSS - Set loss COUNT_BUY - The number of s
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
Reversepro Smartsma ea mt4
AL MOOSAWI ABDULLAH JAFFER BAQER
ReversePro SmartSMA EA – A Fully Customizable Moving Average Strategy ReversePro SmartSMA EA is an advanced yet fully customizable trading tool designed for traders who prefer to fine-tune their strategies. This Expert Advisor (EA) is not pre-optimized, allowing you the flexibility to adjust its settings to fit your trading style, risk management preferences, and market conditions. How It Works This EA is based on the well-known Simple Moving Average (SMA) crossover strategy, enhanced with addi
Golden Cheetah
Dmitriq Evgenoeviz Ko
Golden Cheetah is not just a trading robot, but an expert in short-term trading, created to work in volatile markets with low spreads. It is based on a complex multi-component algorithm that instantly analyzes market information in real time.  Next price 1399 : The price increases depending on the number of sold licenses  the full list for your convenience is available https://www.mql5.com/ru/users/pants-dmi/seller This scalper, like a hunter, opens trades according to the Price Action strate
Ilan Spirit Советник  Ilan Spirit -это аналог советника, с добавлением множества дополнительных логик и возможностей для торговли, с оставленными настройками советника . Советник торгует по системе Мартингейл с увеличением последующих лотов в серии ордеров, с целью их усреднения. Первый ордер робот выставляет по сигналам встроенного индикатора. Так же советник имеет возможность прекращать торговлю в зависимости от новостей от сигналов новостного индикатора. Ilan Spirit можно использовать либо на
Fundamental Robot MT4
Kyra Nickaline Watson-gordon
Fundamental Robot is an Expert Advisor based on Fundamental Signals Indicator. The Fundamental Signals Indicator has a powerful calculation engine that can predict market movement over 30000 points. The indicator is named fundamental because it can predict trends with large movements, no complicated inputs and low risk.  The EA works with low margin levels and thus has low risk. Using EA : The EA is very simple and without complicated input parameters. These are main parameters must be set
EA211 Reversal Scalp
Jose Francisco Flores Rojas
Clear Reversal Scalper EA This Expert Advisor is designed to identify sharp market reversal opportunities by detecting a predefined number of consecutive bullish or bearish candles, signaling potential exhaustion of the current trend. Once the reversal pattern is detected, the EA enters a trade in the direction of the large reversal candle, capitalizing on momentum for a quick scalp. This strategy works best in volatile sessions. Key Features: Reversal Pattern Detection: Customizable setting to
VolnaFX
Roman Meskhidze
4.67 (15)
LAUNCH PROMO Next price:        $349 The price will be rise to limit the number of users for this strategy The "Volna FX" Expert Advisor is a representative of robots trading from levels. Levels can be built automatically, or they can be rigidly set in the parameters of the Expert Advisor. CHECK REAL SIGNAL :  https://www.mql5.com/en/signals/847709 The uniqueness of the advisor is that it can work both with averaging and using the martingale principle, or without it, i.e. use a clear take profi
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
This EA is only sold on MQL5.  If you are purchasing it somewhere else, it is   fake , it won't work like the real thing, and you won't get any support as well. Some of the features of the EA: 1. Use on Pair Gold TF M15 with minimun Balance 2000 cent/standard 2. use broker with low spread like Justforex/Exness 3. This EA Logic Price Action with TPMoney/SLMoney so can reduce cheat broker who chase SL Check out the live results here: https://www.mql5.com/en/signals/1145836?source=Site +Signals+My
このプロダクトを購入した人は以下も購入しています
Vortex Gold MT4
Stanislav Tomilov
5 (30)
Vortex - 未来への投資 Vortex Gold EAはメタトレーダープラットフォーム上で金(XAU/USD)を取引するために特別に作られたエキスパートアドバイザーです。独自の指標と作者の秘密のアルゴリズムを用いて構築されたこのEAは、金市場の有益な動きを捉えるように設計された包括的な取引戦略を採用しています。その戦略の主要な構成要素には、CCIやパラボリックインジケーターなどの古典的なインジケーターが含まれており、これらは理想的なエントリーポイントとエグジットポイントを正確に知らせるために連動します。Vortex Gold EAの核心は、高度なニューラルネットワークと機械学習テクノロジーです。これらのアルゴリズムは、過去のデータとリアルタイムのデータの両方を継続的に分析し、EAがより高い精度で進化する市場トレンドに適応し対応することを可能にします。ディープラーニングを活用することで、Vortex Gold EAはパターンを認識し、指標パラメーターを自動的に調整し、時間の経過とともにパフォーマンスを向上させます。Vortex Gold EAは、独自の指標、機械学習、適応可能な取
Quantum Emperor MT4
Bogdan Ion Puscasu
4.85 (171)
ご紹介     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 StarMan が無料で手に入る可能性があります!*** 詳細についてはプライベートでお問い合わせください 検証済み信号:   こちらをクリック MT5バージョン:  ここをクリック 量子EAチャネル:       ここをクリック 10 回購入するごとに価格が 50 ドル上がります。最終価格 1999 ドル 量子皇帝EA       EAは、1つの取引を5つの小さな取引に継続的に分割する独自の戦略を採用していま
The Gold Reaper MT4
Profalgo Limited
4.59 (32)
プロップしっかり準備完了!   (   SETFILEをダウンロード ) ローンチプロモーション: 現在の価格で残りわずかです! 最終価格: 990ドル EA を 1 つ無料で入手 (2 取引アカウント用) -> 購入後に連絡してください Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal ゴールドリーパーへようこそ! 非常に成功した Goldtrade Pro を基にして構築されたこの EA は、複数の時間枠で同時に実行できるように設計されており、取引頻度を非常に保守的なものから非常に不安定なものまで設定するオプションがあります。 EA は複数の確認アルゴリズムを使用して最適なエントリー価格を見つけ、内部で複数の戦略を実行して取引のリスクを分散します。 すべての取引にはストップロスとテイクプロフィットがありますが、リスクを最小限に抑え、各取引の可能性を最大化するために、トレーリングストップロスとトレーリングテイプロフィットも使用します。 このシステムは、重要なサポート
Gold Trade Pro
Profalgo Limited
4.61 (23)
プロモーションを開始します! 449ドルで残りわずかです! 次の価格: 599ドル 最終価格: 999ドル EA を 1 つ無料で入手 (2 取引アカウント用) -> 購入後に連絡してください Ultimate Combo Deal   ->   click here New live signal:   https://www.mql5.com/en/signals/2084890 Live Signal high risk :  https://www.mql5.com/en/signals/2242498 Live Signal Set Prop Firm Set JOIN PUBLIC GROUP:   Click here Parameter overview Gold Trade Pro はゴールド取引 EA の仲間入りですが、大きな違いが 1 つあります。それは、これが本物の取引戦略であるということです。 「実際の取引戦略」とは何を意味しますか?   おそらくお気づきかと思いますが、市場に出回っているほぼすべてのゴールド EA は単純なグリッド/マーチンゲール
Aura Black Edition
Stanislav Tomilov
4.6 (20)
Aura Black Edition は、GOLD のみを取引するように設計された完全自動化 EA です。エキスパートは、2011 年から 2020 年の期間に XAUUSD で安定した結果を示しました。危険な資金管理方法は使用されていません。マーチンゲール、グリッド、スキャルプも使用されていません。あらゆるブローカーの条件に適しています。多層パーセプトロンでトレーニングされた EA ニューラル ネットワーク (MLP) は、フィードフォワード人工ニューラル ネットワーク (ANN) のクラスです。MLP という用語は、曖昧に使用され、フィードフォワード ANN に緩く使用される場合もあれば、複数のパーセプトロン層 (しきい値アクティベーション付き) で構成されるネットワークを厳密に指す場合もあります。多層パーセプトロンは、特に単一の隠し層がある場合、口語的に「バニラ」ニューラル ネットワークと呼ばれることがあります。MLP は、入力層、隠し層、出力層の少なくとも 3 つのノード層で構成されます。入力ノードを除き、各ノードは非線形アクティベーション関数を使用するニューロンです。MLP
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  (positions are sent from our database t
Aura Neuron MT4
Stanislav Tomilov
4.62 (13)
Aura Neuron は、Aura シリーズのトレーディング システムを引き継ぐ独特のエキスパート アドバイザーです。高度なニューラル ネットワークと最先端のクラシック トレーディング戦略を活用することで、Aura Neuron は優れた潜在的パフォーマンスを備えた革新的なアプローチを提供します。完全に自動化されたこのエキスパート アドバイザーは XAUUSD (GOLD) などの通貨ペアを取引するように設計されています。1999 年から 2023 年まで、これらのペアで一貫した安定性が実証されています。このシステムは、マーチンゲール、グリッド、スキャルピングなどの危険な資金管理手法を回避しているため、あらゆるブローカーの条件に適しています。Aura Neuron は、多層パーセプトロン (MLP) ニューラル ネットワークを搭載しており、これを利用して市場のトレンドと動きを予測します。MLP はフィードフォワード人工ニューラル ネットワーク (ANN) の一種で、特に単一の隠し層で構成されている場合は「バニラ」ニューラル ネットワークと呼ばれることがよくあります。MLP には、入力
AI   Forex Robot - The Future of Automated Trading. AI Forex Robot is powered by a next-generation   Artificial Intelligence   system based on a hybrid LSTM Transformer neural network, specifically designed for analyzing XAUUSD, EURUSD   and BTCUSD price movements on the Forex market. The system analyzes complex market structures, adapts its strategy in   real time   and makes data-driven decisions with a high level of precision. AI Forex Robot is a modern, fully automated system powered by   ar
XIRO Robot is a   professional trading system   created to operate on two of the most popular and liquid instruments on the market:   XAUUSD and GBPUSD . We combined two proven and well tested systems, enhanced them with multiple new improvements, optimizations and additional protective mechanisms, and integrated everything into one advanced and unified solution. As a result of this development process, XIRO Robot was created. Robot was designed for traders who are looking for a reliable and str
Introducing the AI Neural Nexus EA A state-of-the-art Expert Advisor tailored for trading Gold (XAUUSD) and GBPUSD. This advanced system leverages the power of artificial intelligence and neural networks to identify profitable trading opportunities with a focus on safety and consistency. Unlike traditional high-risk methods, AI Neural Nexus prioritizes low-risk strategies that adapt to market fluctuations in real time, ensuring a smart trading experience. Important Information Contact us immedia
FlipDamonHFT
Allistair Kabelo Mandow
Ask in private for more details after purchase FlipDemonHFT Flipdemon vX: The Next-Level Forex Trading Robot Flip your capital fast with Flipdemon vX — a powerful trading robot designed for rapid growth, sniper entries, and consistent profits. Built for serious traders who want results in days, not months.. Discounted   price .  The price will increase by $500 with every 10 purchases. ***Buy FLIPDEMON HFT MT4 and you could get TINGA TINGA or  FLIPDEMON HFT MT5 for free !*** Ask in privat
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
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
The Infinity EA MT4
Abhimanyu Hans
3.68 (31)
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
AI Prop Firms - Intelligent Automation Built for   Prop Trading Firms . AI Prop Firms is an advanced fully automated Forex trading system powered by   Artificial Intelligence , developed specifically to operate within the strict rules and evaluation models of prop trading firms. The system is designed to trade under controlled risk conditions while   maintaining consistency , stability, and compliance with prop firm requirements. AI Prop Firms uses intelligent market analysis logic that continu
ローンチプロモーション: 現在の価格で入手可能な限定数のコピー 最終価格: 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 か
Greedy Golden MT4
Mihails Babuskins
4.8 (5)
Recommended:  it's better to  use in accounts with lower swap or swap-free accounts. SEE AND COMPARE WITH OTHER EA's , Real monitoring signals link on my profile. 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
Bitcoin Robot Grid MT4 is an intelligent trading system designed to automate BTCUSD trading using the grid trading strategy. This method takes advantage of market fluctuations by placing a structured series of buy and sell orders at predefined price levels. The robot   continuously monitors market   conditions and executes trades according to its preset parameters, allowing for consistent market engagement without the need for manual intervention. Bitcoin Robot Grid is the   perfect solution  
Exorcist Bot   is a multi-currency, multi-functional advisor that works on any time frame and in any market conditions. - The robot’s operation is based on an averaging system with a non-geometric progression of constructing a trading grid. - Built-in protection systems: special filters, spread control, internal trading time limitation. - Construction of a trading network taking into account important internal levels. - Ability to customize the aggressiveness of trading. - Working with pending
Jesko
Cence Jk Oizeijoozzisa
5 (2)
Jesko EA – Jesko は、 長年にわたり検証され最適化された戦略 に基づいて構築された特別なエキスパートアドバイザー(EA)です。 すでに 実際の口座でテストされており 、一貫して 利益性と低リスク を示しています。 今回、ついに一般公開することにしました。 Signal live    ライブアカウントの4ヶ月 こちらはMetaTrader 5のバージョン です 。 ----------------------------------------- MT5 ログイン 23982567 ————— MT5 パスワード Aa123123! ————— サーバー UltimaMarkets-Live 1 ---------------------------------------------- 購入後は、MetaTrader 4とMetaTrader 5の両方のバージョンをご利用いただけます。 簡単インストール  すべてのブローカーで利用可能(ECN口座推奨)  最低入金額: 100 USD  24時間365日サポート  Jesko を一度購入すると、他の製品を無料で入手可能
その   オープニングレンジブレイクアウトマスター は、次のような機関投資家の取引コンセプトを活用するために設計されたプロフェッショナルなアルゴリズム取引システムです。       ICT(インナーサークルトレーダー)、スマートマネーコンセプト(SMC)、流動性ベースの戦略など 。このエキスパートアドバイザーは、以下の取引の検出と実行を自動化します。     オープニングレンジブレイクアウト(ORB)     主要な世界為替セッションでは、     ロンドン、ニューヨーク、東京、そして深夜のキルゾーン でトレーダーが   マーケットメーカーの動き、流動性ハンティング、セッション主導のボラティリティ 。 トレーダーのために構築された   時間ベースの価格アクション、注文フローダイナミクス、および機関取引手法に基づいて 、このEAは価格がブレイクしたときに体系的に取引を開始することで感情的な意思決定を排除します。     初期残高が高いか低いか   セッションの焦点は   きれいな吹き出物   調整可能なリスクパラメータを組み込むことで、     セッションの選択、ブレイクアウトの確認フィ
After a thorough work and search for the optimal values of each of the Expert Advisor's parameters, the most stable settings of the algorithms have been selected, which do not require over large history periods. The robot uses a universal trading strategy, allowing the use of the currency pairs EURUSD, GBPUSD, USDCHF, USDJPY and other pairs with low spread. The EA trades on a 5-minute timeframe , it uses levels defined automatically on the bases of multiple parallel price movement calculation me
The Best Oil Trading Robot in the World.   Crude Oil Robot   is the undisputed, top-tier trading robot designed for the   XTIUSD or any crude instrument   offered by your broker. This is not a generic algorithm, but it's a   highly specialized system   built exclusively for the crude oil market,   utilizing unique technologies   not available in any other trading bot. Crude Oil Robot is equipped with   exclusive features tailored specifically for the OIL market , such as: Volatility Anomaly Fil
Exp4 AI Sniper for MT4
Vladislav Andruschenko
2.33 (3)
私たちのチームは、MetaTrader ターミナル向けの最先端のスマート トレーディング エキスパート アドバイザーである Trading Robot をご紹介できることを嬉しく思っています。 AI Sniper は、   MT4     の両方の端末向けに設計された、インテリジェントな自己最適化取引ロボットです。 洗練されたアルゴリズムと最先端の取引手法を活用した AI Sniper は 、取引の最適化における卓越性を体現しています。 当社のチームは、取引所と株式市場の両方で 15 年を超える豊富な経験を活かし、革新的な戦略管理機能、インテリジェントな機能、直感的なグラフィカル インターフェイスを組み込んだこのエキスパート アドバイザーを作成しました。 AI Sniper の各側面は細心の注意を払って設計され、厳密にテストされたプログラム コードによってサポートされています。 高度な計算インテリジェンスは複雑なテクニカル分析を通じて機能し、あらゆる価格変動に対して何千もの数学的計算を実行します。 これにより、   AI Sniper は 、強気市場トレンドでも弱気市場トレンドでも、
KT Gold Nexus EA MT4
KEENBASE SOFTWARE SOLUTIONS
5 (2)
ICMarkets ライブシグナル: こちらをクリック KT Gold Nexus EAで成功するために必要なこと 忍耐。規律。時間。 KT Gold Nexus EAは、プロのトレーダーやプライベートファンドマネージャーが実際に採用している、現実的なトレーディング手法を基に構築されています。短期的な派手さや一時的な利益ではなく、長期にわたる安定性と一貫性を重視した設計となっています。 本EAは長期運用を前提として設計されています。その本来のポテンシャルを体感するためには、最低でも1年間の継続運用を推奨します。プロのトレーディングと同様に、損失が発生する週や、場合によっては数か月間のドローダウン期間が生じることもありますが、これは正常なプロセスです。重要なのは、より長い期間における累積パフォーマンスです。 多くのグリッド型やマーチンゲール型システムは、初期段階では急速な利益を示しますが、最終的に口座破綻へと至るケースがほとんどです。本EAはそのようなリスクを回避し、安定的かつコントロールされた成長を目的として開発されています。 イントロダクション KT Gold Nexus EAは、
Blox
Cence Jk Oizeijoozzisa
5 (2)
2025年を代表する最強クラスの自動売買戦 略の一つ 私たちは、2025年における最も強力な裁量トレード戦略の一つを、 TMA(トライアングル移動平均)とCGロジック に基づいた **完全自動化エキスパートアドバイザー(EA)**へと変換しました。 550ドルで購入できるのは残り1本のみです。その後、価格は650ドル、750ドルへと上がり、最終価格は1200ドルになります ライブシグナル  本EAは、 高精度なエントリー、スマートな指値注文、厳格なリスク管理 を目的として設計されており、 **すべてのFX通貨ペアおよびゴールド(XAUUSD)**に対応しています。 最適なパフォーマンスを得るため、 スプレッドが10ポイント未満のECN口座 での使用を推奨します。 これにより、正確な注文執行と最小限のスリッページが実現されます。 チャートに適用し、リスクに応じて設定を調整するだけで、 プロレベルの自動売買を体験できます。  主な特徴 **全てのFX通貨ペアおよびゴールド(XAUUSD)**に対応 5 min   SET FILE 指値注文(Buy Stop / Sell Stop)による
HFT Fast M1 Gold Scalper V8 EA
Martin Alejandro Bamonte
2.33 (3)
超最適化バージョン – MT4 HFT FAST M1 GOLD SCALPER V8.2 (MT4バージョン)は、これまでで最も強力で、安定性が高く、洗練されたリリースです。 HFTは高頻度スキャルピングEAであり、ゴールド(XAUUSD)のM1タイムフレームのみで取引を行います。毎日多数の取引を実行し、 非常に現実的なロットサイズ でスキャルピング戦略を実現します。そのため、専用のスキャルピング口座(RAWまたはECN)が必要です。 ICMarkets のRAW口座が特に推奨されており、低スプレッドかつ他社よりもスリッページが少ないのが特長です。 安定したインターネット接続またはVPSが必要です。 ご注意ください:ターミナルが停止すると、 FAST M1 は口座の制御を失います 。 公式チャンネル:  https://www.mql5.com/en/channels/binaryforexea 主な改善点 エントリーロジックの改善 EAは主要トレンド方向のみでエントリーします。逆張りは一切行いません。 勝率の向上 内部ロジックが調整され、トレードの成功率が上昇しました。 口
Btcusd Grid
Ahmad Aan Isnain Shofwan
1 (1)
BTCUSD GRID EA は、グリッド取引戦略を使用するように設計された自動プログラムです。 BTCUSD GRID EA は、初心者にも経験豊富なトレーダーにも同様に非常に役立ちます。 使用できる他のタイプの取引ボットもありますが、グリッド取引戦略の論理的性質により、暗号グリッド取引ボットは問題なく自動取引を簡単に実行できます。 BTCUSD GRID EA は、グリッド取引ボットを試してみたい場合に使用するのに最適なプラットフォームです。 BTCUSD GRID EA は、通貨が不安定な場合でも理想的な価格ポイントで自動取引を実行できるため、暗号通貨業界にとって非常に効果的です。 この自動取引戦略の主な目的は、EA 内で事前に設定された値動きで多数の売買注文を行うことです。 この特定の戦略は自動化が容易であるため、暗号通貨取引によく使用されます。 グリッド取引戦略を正しく使用すると、資産の価格が変化したときに利益を得ることができます。 グリッド取引戦略が最も効果的であることが証明されています 。 暗号通貨の価格が変動するため。   -------------------
Algo Capital Trader
Jimitkumar Narhari Patel
Algo Capital Advanced Market Intelligence Trader: Empowering Traders with Integrity and Insight Algo Capital proudly introduces its inaugural state-of-the-art Advanced Market Intelligence Trader - engineered to transform your trading experience through precision, adaptability, and advanced market intelligence. Powered by proprietary algorithms and deep market research, this solution is designed to deliver consistent, high-quality performance across diverse market conditions. Why Algo Capital?
Gold Medalist
Dmitriq Evgenoeviz Ko
Gold Medalist is an intelligent system focused on volatile trading on the XAUUSD market. It aims to identify and effectively exploit short-term price impulses, providing traders with new profit opportunities. The full list is available for your convenience at https://www.mql5.com/ru/users/pants-dmi/seller The Gold Medalist's key advantage lies in its unique price action analysis system. By accurately measuring price movement, it can identify true market momentum signals while avoiding false si
作者のその他のプロダクト
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
フィルタ:
Phil
647
Phil 2024.06.23 12:31 
 

I tested this EA more by chance and was surprised that it is the first EA where you can already see in the tester that the neural network is visible and can already learn from the test results and all this within the terminal. I currently have the EA in the live test and give this brilliant product 5 stars. However, I will provide further feedback to hopefully confirm the 5 stars.

And I would like to see an MT5 version of this EA in the future, as MT5 is simply faster and offers more possibilities and resources.

レビューに返信