Ai Prediction MT5

A free indicator for those who purchase the full version
This indicator is created by this Ai, with your desired settings

Artificial Intelligence at your service
Have a complete artificial intelligence and use it in your codes
This artificial intelligence is trained to tell you on each candle whether the market is moving up or down.


In general, artificial intelligence can be used in all markets, all timeframes and all symbols
However, due to the increasing complexity and decreasing accuracy of artificial intelligence, this Ai includes the following timeframes and currency pairs:
Currency pairs: EURUSD, GBPUSD, AUDUSD, USDCAD, NZDUSD, USDCHF, EURGBP
Time frames: M30, H1, H4, D1
If you want to have Ai for different currency pairs and other timeframes, send us a message before purchasing so that we can create your special Ai.



How to use this Ai:

We have provided you with 3 functions, Which shows you 3 things in each candle:

1- The market is moving up, down, or indifferent.

2- AI Suggested SL

3- AI Suggested TP



1- predictExport()

It shows you a number between -1 and 1:
Number 1: Strong buy signal
Number -1: Strong sell signal
Number 0: No signal


It is enough to call this function. Note that you can pass the candle number as input to this function (default = candle number 1)

Last market candle (candle that has not closed yet)=0
Previous candle=1



2- getSlPrice()

Returns a number that represents the loss limit(point).
The AI ​​can be trained for different SL , this SL represents the SL that the AI ​​has been trained for.
If you need the AI ​​to be trained for other SL , let us know so we can create a custom AI for you.



3- getTpPrice()

Returns a number that represents the loss limit(point).
The AI ​​can be trained for different TP , this TP represents the TP that the AI ​​has been trained for.
If you need the AI ​​to be trained for other TP , let us



For example, using the following code, We comment on the buy or sell signal(-1 , 0 , 1) , TP(point) and SL(point):

#property version "1.00"
#property strict

#import "Ai Prediction.ex5" // Import our library
double predictExport(int ib=1); // A function that represents the Ai ​​signal.
double getTpPrice(); // A function that displays the TP suggested byAi.
double getSlPrice(); // A function that displays the SL suggested by Ai.
#import

int OnInit()
  {

   return(INIT_SUCCEEDED);
  }

void OnTick()
  {
   double res=predictExport(1);

   Comment(res+"\n"+getTpPrice()+"\n"+ getSlPrice());
  }


Another example: With the following code, we easily built a great AI expert:

(The backtest of this expert is like the photos we have posted on the site)

#property version "1.00"
#property strict
#import "Ai Prediction.ex5"// --- Import the AI prediction library ---// This external EX5 file provides AI-based prediction functions
double predictExport(int ib=1);// Predicts trade signal for a given candle index (ib)
// Return value ranges from -1 to +1:
//   +1 => Strong Buy signal   ---  -1 => Strong Sell signal   ---   0 => indicate uncertainty or no clear trend
double getTpPrice();// Returns AI-suggested Take Profit price
double getSlPrice();// Returns AI-suggested Stop Loss price
#import
#include <Trade\Trade.mqh>
CTrade trade;
// Initialization function (runs once when the EA is loaded)
double Ask(){ return SymbolInfoDouble(_Symbol,SYMBOL_ASK);} 
double Bid(){ return SymbolInfoDouble(_Symbol,SYMBOL_BID);} 
int OnInit()
{
   return(INIT_SUCCEEDED);
}
void OnTick()
{
   double tp = getTpPrice();//-- like  0.002
   double sl = getSlPrice();//-- like  0.002
   double lotSize = 0.1;
   double signal = predictExport(1);  // Get AI prediction score for the current candle(signal) --- // Input: 1 = current candle
   if(signal > 0.75)// If the signal is strong positive (> 0.75), it suggests a Buy opportunity
   {
      bool buyResult = trade.Buy(lotSize, _Symbol, Ask(), Ask()-sl, Ask()+tp, "AI Buy");// 🔼 Place Buy order
   }
   if(signal < -0.75)// If the signal is strong negative (< -0.75), it suggests a Sell opportunity
   {
      bool sellResult = trade.Sell(lotSize, _Symbol, Bid(), Bid()+sl, Bid()-tp, "AI Sell");// 🔽 Place Sell order
   }
}// Signals between -0.75 and +0.75 are considered weak or neutral



Applications of this product:

  • An assistant in your manual trades: see the AI ​​opinion on each candle. If your opinion is the same as the AI, trade.

For example, you think the market is going up and you want to make a "buy" trade: if the AI's opinion is also "1", then it also thinks the market is going up, so trade.
But if your opinion is different from the AI's, then don't trade.

  • A versatile robot: create an expert that will make a "buy" trade if the AI ​​gives the number "1" and a "sell" trade if the number "-1".
The screenshots we have posted on the site are of the expert we have created using the AI. Wherever the AI ​​shows the number "1", it is a "buy signal" and wherever it shows the number "-1", it is a "sell signal".
  • Create an indicator to display signals live: Create an indicator that displays the output of the function "predictExport()". You can see on each candle which way the AI ​​is moving.

This is a great way to display AI signals to understand their power.

  • Combine this AI with another Expert Advisor or Indicator: Combine the signals of this AI with another Expert Advisor/Indicator to increase their power.

Very simple example: Combine this AI with the RSI indicator so that when both give a" buy signal": "Buy trade" and if both give a "sell signal": "Sell trade"




If you need any help on how to use the code, be sure to let me know: https://www.mql5.com/en/users/andreforex20


Рекомендуем также
快速关仓,无需任何操作。 当前版本的一键关仓主要针对的是来不及手动关仓的情况,目前是不分交易标的类别,是对所有的持仓进行关仓。 未来可能升级的方向: 1、分类别、分标的关仓。 适用场景:开了多个标的的仓位,并且波动不一,快速频繁的波动影响了整体的判断。 2、增加只关闭盈利仓位、只关闭亏损仓位。 适用场景:持仓较多,趋势发生变化。 个人建议:一般建议选择一键全部关仓,因为如果行情与持仓方向一致,只关闭盈利仓位无形就是扩大了亏损。如果行情方向与持仓方向相反,只关闭亏损仓位,当前已盈利的后面又会变为亏损,盈利无法变现。 3、按照仓位顺序由大到小关仓、按照仓位顺序由小到大关仓。 适用 场景:行情发生波动,对于未来行情判断把握不确定的,可根据自己需求选择仓位关仓顺序,由大到小关仓的话,可以避免亏损的进一步扩大。 4、减小仓位量,保持绝对的安全距离。 适用 场景:对未来趋势相对确定,不想错过当前行情,但是认为当前持仓体量又有点大,想降低仓位。
Применяя эти методы, мне удалось прийти к тонкому выводу, который имеет решающее значение для понимания важности уникальных стратегий в современной торговле. Хотя нейросетевой советник показал впечатляющую эффективность на начальных этапах, в долгосрочной перспективе он оказался крайне нестабильным. Различные факторы, такие как колебания рынка, изменения тенденций, внешние события и т. д., приводят к хаотичности его работы и в конечном итоге приводят к нестабильности. Получив этот опыт, я принял
Key Features: 200+ Fully Implemented Patterns   across all categories Advanced Market Structure Analysis Smart Money Integration   (Wyckoff, Order Blocks, Liquidity) Professional Risk Management Multi-Timeframe Analysis AI-Powered Confidence Scoring Advanced Visualization Real-time Alerts Pattern Categories: Single Candle Patterns (Hammer, Doji, Marubozu, etc.) Multi-Candle Patterns (Engulfing, Stars, Harami, etc.) Chart Patterns (Head & Shoulders, Cup & Handle, Triangles, etc.) Harmonic Pattern
FREE
The library is used to develop automatic trading on Binance Futures Market from MT5 platform. Support Binance Futures USD-M and COIN-M Support Testnet mode Support all order types: Limit, Market, StopLimit, StopMarket, StopLoss and TakeProfit Automatically display the chart on the screen Usage: 1. Open MQL5 demo account 2. Download Header file and EA sample https://drive.google.com/uc?export=download&id=17fWrZFeMZoSvH9-2iv4WDJhcyxG2eW17 Copy BinanceFutures.mqh to folder \MQL5\Include Copy  Bina
Goliath Mt5
Nicolokondwani Biscaldi
Goliath MT5 - scalper fully automated Expert Advisor for medium-volatile forex markets P roperties: The Library trades 10 currency pairs (USDCHF, EURCHF, EURGBP, AUDUSD, USDCAD, GBPUSD, EURUSD, NZDUSD, CADCHF, EURAUD, EURCAD, AUDJPY) The Library does not use martingale The Library sets a fixed stop loss and take profit for all orders The Library only trades a user input volume The Library can be installed on any currency pair and any timeframe Recommendations: Before using on a real account, t
JB Dow Theory -- Avtomaticheskoe opredelenie trendovykh modelei Dow Theory -- eto osnova vsego tekhnicheskogo analiza: trendy opredelyayutsya posledovatel'nostyami bolee vysokikh maksimumov i minimumov (voskhodayshchii trend) ili bolee nizkikh maksimumov i minimumov (niskhodayshchii trend). No opredelyat' eti modeli vruchnuyu -- medlenno i sub"ektivno. Etot indikator avtomatiziruet opredelenie modelei Dow Theory, otslezhivaya sving-pivoty i soedinyaya ikh trendovymi liniyami pri obnaruzhenii
Pionex API EA Connector для MT5 – Бесшовная интеграция с MT5 Обзор Pionex API EA Connector для MT5 позволяет бесшовно интегрировать MetaTrader 5 (MT5) с Pionex API . Этот мощный инструмент дает возможность трейдерам выполнять и управлять сделками, получать информацию о балансе и отслеживать историю ордеров — всё прямо из MT5 . Основные функции Управление аккаунтом и балансом Get_Balance(); – Получение текущего баланса аккаунта на Pionex . Исполнение и управление ордерами orderLimit(string
King Tools V9
Bayu Kurnia Aris Sandi
KING TOOLS PRO V9 — Premium All-In-One Trading Panel for MT5 The ultimate trading toolkit for serious forex & gold traders. Trusted by 300+ traders worldwide. Verified: TikTok @souueei What is King Tools Pro V9? King Tools Pro V9 is a comprehensive, professional-grade trading panel Expert Advisor for MetaTrader 5. It is not a black-box automated system — it is an intelligent trading assistant that gives you full control over your trades while providing powerful tools, analysis, and risk manageme
New Product Description for MadoCryptoXPro --- MadoCryptoXPro — The Smartest Crypto Warrior ️ Battle-tested on BTC & ETH. Built for real-time chaos. --- MadoCryptoXPro isn’t just another technical bot. It’s a battlefield machine designed to handle the madness of BTCUSD and ETHUSD with surgical precision. Whether the market is flat, trending, or just plain psycho — it stays focused, adapts fast, and protects your capital like a vault guard on Red Bull. --- Core Features: Smart
The Hybrid Metaheuristic Algorithm (HMA) is a cutting-edge optimization approach that combines the strengths of genetic algorithms with the best features of population-based algorithms. Its high-speed computation ensures unparalleled accuracy and efficient search capabilities, significantly reducing the total time required for optimization while identifying optimal solutions in fewer iterations. HMA outperforms all known population optimization algorithms in both speed and accuracy. Use Cases AO
Максимизируйте свой потенциал прибыли с Pullback EMA EA — умным и безопасным торговым алгоритмом Устали от эмоций в трейдинге или непредсказуемых рыночных условий? Представляем Pullback EMA EA — передовой торговый советник (Expert Advisor), разработанный специально для трейдеров, которые ценят стабильность, точность и защиту капитала . Pullback EMA EA — это не просто очередной торговый робот; это ваш профессиональный помощник, который работает 24/5, чтобы находить лучшие рыночные возможности
Exclusive Imperium MT5 — автоматизированная торговая система Exclusive Imperium MT5 — это эксперт-советник для MetaTrader 5, основанный на алгоритмах анализа рынка и управлении рисками. Советник работает в полностью автоматическом режиме и требует минимального вмешательства со стороны трейдера. Внимание! Свяжитесь со мной сразу после покупки , чтобы получить инструкции по настройке! ВАЖНО: Все примеры, скриншоты и тесты приведены исключительно в демонстрационных целях. Если у одного брокера опре
Hello everyone! I am a professional MQL programmer , Making EAs, Indicators and Trading Tools for my clients all over the world. I build 3-7 programs every week but I seldomly sell any ready-made Robots. Because I am fastidious and good strategy is so few...  this EA is the only one so far I think its good enough to be published here.  As we all know, the Ichimoku indicator has become world popular for decades, but still, only few people knows the right way of using it, and if we check the clo
| Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT5 version, click  here  for  Blue CARA MT4  (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 perhaps the most popul
Bober Real MT5
Arnold Bobrinskii
4.76 (17)
Bober Real MT5 — полностью автоматический советник для торговли на рынке Forex. Робот создан в 2014 году и за этот период сделал множество прибыльных сделок, показав более 7000% прироста депозита на моем личном счете. Было выпущено много обновлений, но версия 2019 года считается самой стабильной и прибыльной. Робот можно запускать на любых инструментах, но лучшие результаты достигаются на EURGBP , GBPUSD , таймфрейм M5 . Робот не покажет хорошие результаты в тестере или на реальном счете, если
PHANTOM | LIQUIDITY HUNTER INSTITUTIONAL ALGORITHM [ICT LOGIC] ️ WARNING: NOT FOR GAMBLERS. The marketplace is full of "RNG Robots" and Martingale Gamblers disguised with flashy cartoons. It's time for serious Logic. While others pray to the grid gods during a market crash, Liquidity Hunter executes cold, calculated mathematics based on Institutional Concepts (ICT/SMC). This is not a toy. This is a weapon designed to survive—and profit from—market chaos. THE PHANTOM DIFFERENCE Most EAs on th
HMA TrendPro Experts · AuroraQuantSystems · Version: 1.2 · Activations: 5 AQS-HMA TrendPro Hull Moving Average (HMA) trend-following Expert Advisor for MetaTrader 5 Engineered around trend-cycle confirmation, ATR-defined exits, structured pyramiding, and production-grade safety controls. Overview AQS-HMA TrendPro is a rule-based trend-following EA for MetaTrader 5 that seeks to participate in sustained directional moves by combining: Fast HMA reversal timing (entry trigger) Slow HMA trend conf
Эксперт Richter — это профессиональный рыночный аналитик, работающий с использованием специализированного алгоритма. Анализируя цены за определенный временной промежуток, он определяет силу и амплитуду цен с помощью уникальной индикационной системы на основе реальных данных. При изменении тренда и его направления, эксперт закрывает текущую позицию и открывает новую. В алгоритмах бота учтены сигналы о перекупленности и перепроданности рынка. Покупка происходит, когда сигнал опускается ниже опред
Introducing Your New Go-To Trading EA! Boost your trading performance with this Bollinger Bands-based Expert Advisor, specially designed for XAU (Gold) and various Forex pairs. Why this EA is a must-have: Clean, user-friendly interface – perfect for all trader levels Built-in Hidden Take Profit & Stop Loss for added strategy security Ideal for both beginners and experienced traders Ready to use out of the box – no complex setup required. Trade smarter, not harder!
Magic EA MT5
Kyra Nickaline Watson-gordon
Magic EA is an Expert Advisor based on Scalping, Elliot Waves and with filters such as RSI, Stochastic and 3 other strategies managed and decided with the robot smartly. Large number of inputs and settings are tested and optimized and embedded in the program thus inputs are limited and very simple. Using EA doesn't need any professional information or Forex Trading Knowledge. EA can trade on all symbols and all time frames, using special and unique strategies developed by the author. The EA w
Bookeepr
Marvellous Peace Kiragu
Bookeepr is an advanced MQL5 trading bookkeeping software that automates trade logging, tracks real-time P&L, and integrates a ledger-style financial system for deposits, withdrawals, and expenses. It supports multi-currency assets , generates detailed performance reports , and provides risk management tools to help traders optimize their strategies. With secure cloud storage, exportable reports, and seamless MetaTrader 5 integration , Bookeepr ensures accurate, transparent, and hassle-free fina
AurumAlert
Samuel Yip Jing Han
AurumAlert — CCI Gold Swing EA v6 A fully automated MetaTrader 5 Expert Advisor for swing trading XAUUSD (Gold) on the H1 timeframe . AurumAlert combines a dual-CCI crossover system with divergence detection, an ADX trend filter, and an H1 RSI confirmation layer to identify high-probability trend-following entries on Gold. The ATR trailing stop rides extended moves and locks in profit progressively. Technical support is provided for XAUUSD H1 only. Hedging account required.Full documentation fil
Introduction Our system is more than just a tool—it’s your personal guide in the dynamic trading landscape. Expertly developed and optimized using advanced strategies, this groundbreaking predictor gives traders a powerful edge. It’s not just about the features; it’s about a trading journey that stands out from the crowd. Get ready for an enhanced trading experience like never before! What It Does Next Candle Prediction: Imagine gaining insights into the market’s next move before it happens. Our
Hunt Protocol
Dmitriq Evgenoeviz Ko
Hunt Protocol — это  советник (EA), разработанный для торговли на рынке Золота (XAUUSD) . Он использует уникальную стратегию захвата ценовых импульсов (импульсный скальпинг), возникающих при резких движениях цены в течение коротких временных интервалов (секундный таймфрейм), а также фильтрацию тренда на старших таймфреймах . Советник создан для извлечения прибыли из высокой волатильности драгоценного металла, сочетая точность входа с жестким контролем рисков.  Эксклюзивно для XAUUSD: Алгоритм р
PriceActionToolKit - Professional ICT & Smart Money Concepts Indicator Transform Your Trading with Institutional-Grade Analysis PriceActionToolKit is a comprehensive indicator that brings the power of Inner Circle Trader (ICT) methodology and Smart Money Concepts directly to your MetaTrader 5 platform. This all-in-one solution eliminates the guesswork from your trading decisions by automatically identifying the key market structures that institutional traders use to move the markets. Why This
Premium Risk — это интеллектуальный инструмент управления рисками и открытия сделок, разработанный специально для скальперов. Он автоматически рассчитывает соотношение риск-прибыль (R:R) и сумму риска, основанную на капитале , помогая определить точный объем позиции и лота. С помощью POS-модуля вы можете автоматически отслеживать и управлять сделками. Функция магнит моментально определяет текущую цену и позволяет открывать сделки быстро и точно. Проще говоря, Premium Risk — это профессиональный
AO Core
Andrey Dik
3.67 (3)
AO Core - ядро алгоритма оптимизации, это библиотека, построенная на авторском алгоритме HMA (hybrid metaheuristic algorithm). Обратите внимание на продукт  MT5 Optimization Booster , который позволяет очень просто управлять штатным оптимизатором МТ5. Пример применения AO Core описан в статье: https://www.mql5.com/ru/articles/14183 https://www.mql5.com/ru/blogs/post/756509 Данный гибридный алгоритм основан на генетическом алгоритме и содержит лучшие качества и свойства популяционных алгоритмов
Srfire Hedge Position
Javier Antonio Gomez Miranda
SRFire Hedge Position - Automated Trading Strategy SRFire Hedge Position is an Expert Advisor (EA) designed to ensure trades always close in profit using a hedging and scaling technique. Here’s how it works: How It Works: Trade Initiation: The EA opens a Buy position within a predefined channel. Simultaneously, it places a Sell Stop order below the channel with double the lot size of the Buy position. If the Buy position hits the Take Profit (TP), the Sell Stop order is canceled, and the proces
Финансовый Робот SolarTrade Suite: LaunchPad Market Expert - предназначенный для открытия торговых сделок! Это торговый робот, который использует особые инновационные и передовые алгоритмы для рассчета своих значений, Ваш Помошник в Мире Финансовых Рынков. Испольуйте наш набор индикаторов из серии SolarTrade Suite чтобы лучше выбрать момент для запуска этого робота. Проверьте другие наши продукты из серии SolarTrade Suite внизу описания. Хотите уверенно ориентироваться в мире инвестиций и фи
Running recommendations Recommended currency pairs: XAUUSD, gold Time cycle: H4 Operating capital: recommended above $1000 Account type: No special requirements, better effect of low difference Levers: No special requirements main parameter Typess - open position direction buy many, sell empty Lots - number of open positions Tp_pips stop profit micro points Sl_pops Stop Loss Micropoints Profit_pips profit micro points initiate mobile stop loss Reduced_profiles stepping back on m
С этим продуктом покупают
Библиотека WalkForwardOptimizer позволяет выполнить пошаговую и кластерную форвард-оптимизацию ( walk-forward optimization ) советника в МетаТрейдер 5. Для использования необходимо включить заголовочный файл WalkForwardOptimizer.mqh в код советника и добавить необходимые вызовы функций. Когда библиотека встроена в советник, можно запускать оптимизацию в соответствии с процедурой, описанной в Руководстве пользователя . По окончанию оптимизации промежуточные результаты сохраняются в CSV-файл и наб
Простая в использовании, быстрая, асинхронная библиотека WebSocket для MQL5. Он поддерживает: ws:// и wss:// (защищенный веб-сокет "TLS") текстовые и бинарные данные Он обрабатывает: фрагментированное сообщение автоматически (передача больших объемов данных) кадры пинг-понга автоматически (подтверждение активности) Преимущества: DLL не требуется. Установка OpenSSL не требуется. До 128 соединений Web Socket из одной программы Различные уровни журнала для отслеживания ошибок Возможна синхронизац
Эта библиотека позволит вам управлять сделками с использованием любого вашего советника, и ее очень легко интегрировать в любой советник, что вы можете сделать самостоятельно с помощью кода сценария, упомянутого в описании, а также демонстрационных примеров на видео - Размещайте лимитные ордера, SL-лимитные и тейк-профитные лимитные ордера. - Размещайте ордера Market, SL-Market, TP-Market - Изменить лимитный ордер - Отменить заказ - Запрос заказов - Изменение кредитного плеча, маржи - По
After downloading this service program, it will be used as a service support program for Dom BookHeatMAP Lightning Trading Panel. Dom BookHeatMAP Lightning Trading Panel   download link: https://www.mql5.com/zh/market/product/159414?source=Site+Market+MT5+Search+Rating006%3aDom+BookHeatMAP+Lightning+Trading+Panel Please first drag and drop the downloaded file to the corresponding service folder (` MQL5 \ Services `) in the MT5 data directory, and confirm that the file has been successfully pla
Want to get all events like Previous/Forecast/Actual values for each news to analyze/predict it? By this simple library you can do it easily,Just import/integrate the library into your system,then get all possible values for each news   Even In Strategy Tester   . Note: Please add the address " https://www.forexfactory.com/ " of news feed at your MT5 tab > Tools > Options > Expert Advisors > Check Allow web request for listed URL. Since the WebRequest() function can't be called from indicator ba
突破交易策略:智能风控系统升级版‌ 当价格突破关键阻力位时,往往意味着趋势的质变时刻。我们的突破交易策略通过三重智能系统——‌动态阈值识别‌、‌量能验证机制‌和‌自适应止损算法‌,帮助交易者精准捕捉这些跃迁机会。 ‌核心优势‌: ‌智能预警‌:实时监测200+技术指标,自动标记潜在突破位 ‌风险对冲‌:突破失败时自动触发0.5秒内止损,保护本金安全 ‌多周期验证‌:结合日线/4小时/1小时数据过滤假信号 ‌实战案例‌: 2025年第二季度,该策略在现货黄金市场实现连续23次有效突破,平均持仓周期缩短至4.7小时,收益率达传统趋势策略的3.2倍。 ‌智能风控系统‌: ‌动态止盈‌:根据ATR指标自动调整止盈位,锁定利润的同时保留上行空间 ‌分级止损‌:首次突破失败后自动切换至1:1盈亏比保护模式,二次突破确认后恢复原策略 本EA依下图设置做黄金1小时图线,经长时期实盘验证年利润达到30多倍,修改参数可以用作比特币和纳斯达克指数都有很好的收益。
Here   is   the   English translation   of   your   description   for   the EA   (Expert   Advisor): --- This   is a   time -based   automatic trading   EA . It allows   you   to   set the   exact   time   for trading , down   to   the   second , and   specify the   maximum number   of   orders . You   can choose   to   place   either   buy   or   sell   orders . It   is possible to   set take   profit and   stop   loss   points . Additionally , you can   specify   how   long after   placing  
Эта библиотека предназначена для помощи в управлении сделками, расчета лота, трейлинга, частичного закрытия и других функций. Расчет лота Mode 0: фиксированный лот. Mode 1: Лот по Мартингейлу (1,3,5,8,13) может по-разному использоваться для расчета при убытке=1, при прибыли=0. Mode 2: Лот по Множителю (1,2,4,8,16) может по-разному использоваться для расчета при убытке=1, при прибыли=0. Mode 3: Лот по Инкременту (1,2,3,4,5) может по-разному использоваться для расчета при убытке=1, при прибыли=0.
Друзья, присоединяйтесь к нам! Задать свои вопросы и пообщаться с единомышленниками: MetaCOT Public Group Информационный канал MetaCOT: новости, отчетность CFTC и сигналы: MetaCOT Channel Желаю нам удачной торговли и новых прибыльных сигналов! Внимание! Последнее время, некоторые страны блокируют доступ к сайту cftc.gov . Из-за этого, пользователи из этих стран ставят низкий рейтинг продукту. MetaCOT всегда придерживался самых высоких стандартов качества и не связан с этими блокировками. Пож
Это упрощенная и эффективная версия библиотеки для walk-forward анализа торговых экспертов. Она собирает данные о торговле эксперта во время процесса его оптимизации в тестере MetaTrader и сохраняет их в промежуточные файлы в каталоге MQL5\Files. Затем на основе этих файлов автоматически строится кластерный walk-forward отчет и уточняющие его rolling walk-forward отчеты (все они - в одном HTML-файле). С помощью вспомогательного скрипта WalkForwardBuilder MT5 можно на тех же промежуточных файлах
Order Book, известный также как Market Book, глубина рынка, стакан цен, Level 2, - это предоставляемая брокером динамически обновляемая таблица с данными по текущим объемам торговых заявок на покупку и продажу для различных уровней цен вблизи Bid и Ask конкретного финансового инструмента. MetaTrader 5 предоставляет возможность трансляции стакана цен , но только в реальном времени. Данная библиотека OrderBook History Library позволяет считывать состояния стакана в прошлом из архивов, создаваемых
Cryptocurrency analysis has never been easier with Crypto Charts for MetaTrader 5. Now, trading on BitMEX has never been easier with BitMEX Trading API for MetaTrader 5. BitMEX Trading API library was built to be as easy to use as possible. Just include the library into your Expert Advisor or Script, call the corresponding methods and start trading! Features Trade on BitMEX and BitMEX Testnet. Build and automate your strategies. Concern more with the trading strategy logic and less with the co
Teclado trader, é uma BIBLIOTECA que você pode chamar no OnChartEvent para abrir posição de compra/venda/zerar, os botões padrões são: V = venda C = compra Z = zerar posições a mercado S = zerar posições opostas e depois a mercado X = zerar posições opostas Além da função de teclado, é possível mostrar os estados do ExpertAdvisor usando o MagicId, com informação de: lucro mensal, semanal, diario, e posição aberta, para isto use o OnTick, ou qualquer outro evento (OnTimer / OnTrade / OnBookEven
The library is used to develop automatic trading on Binance Spot Market from MT5 platform. Support all order types: Limit, Market, StopLimit and StopMarket Support Testnet mode Automatically display the chart on the screen Usage: 1. Open MQL5 demo account 2. Download Header   file and EA sample   https://drive.google.com/uc?export=download&id=1kjUX7Hyy02EiwTLgVi8qdaCNvNzazjln Copy Binance.mqh to folder \MQL5\Include Copy  BinanceEA-Sample.mq5 to folder \MQL5\Experts 3. Allow WebRequest from MT5
Gold plucking machine   Золотая выщипывание машины является советником разработан специально для торговли золотом. Операция основана на открытии ордеров с использованием индикатора быстрых и медленных линий, поэтому советник работает в соответствии со стратегией «Trend Follow», что означает следовать тренду. Заказать с помощью политики сетки без операции стоп - лосса, поэтому убедитесь, что счет достаточен. magic number      -  is a special number that the EA assigns to its orders. Lot Multipli
MT4/5通用交易库(  一份代码通用4和5 ) #ifdef __MQL5__      #define KOD_TICKET ulong      #define KOD_MAGIC   long #else        #define KOD_TICKET long      #define KOD_MAGIC   int #endif class ODLIST; #import "K Trade Lib Pro 5.ex5"       //祝有个美好开始,运行首行加入    void StartGood() ;    //简单开单    long OrderOpen( int type, double volume, int magic, string symbol= "" , string comment= "" , double opprice= 0 , double sl= 0 , double tp= 0 , int expiration= 0 , bool slsetmode= false , bool tpsetmode= false );    //复杂开单
Binance Library MetaTrader 5 позволяет использовать его в советниках для торговли и индикаторах для бирж Binance.com и Binance.us напрямую из терминала. Библиотека поддерживает все классы активов на бирже: Spot, USD-M и COIN-M фьючерсы. Доступны все необходимые функции для торговой деятельности: Добавление инструментов с Binance в список символов MetaTrader 5 Получение информации о парах и спецификациях Получение Ask, Bid и времени последней сделки по всем парам Загрузка исторических данных для
1. What is this The MT5 system comes with very few optimization results. Sometimes we need to study more results. This library allows you to output more results during backtest optimization. It also supports printing more strategy results in a single backtest. 2. Product Features The results of the optimized output are quite numerous. CustomMax can be customized. The output is in the Common folder. It is automatically named according to the name of the EA, and the name of the same EA will be au
T5L Library is necessary to use the EAs from TSU Investimentos, IAtrader and others. It contains all the functions framework needed to Expert Advisors working properly.  ツ - The Expert Advisors from  TSU Investimentos does not work without this library,  the T5L library can have updates during the year - At this Library you will find several funcionalities like order sends, buy and sell, trigger entry points check, candlestick analyses, supply and demmand marking and lines, and much more. 
EA Toolkit   is a library that allows any developer to quickly and easily program Advisor experts. It includes many functions and enumerations such as trailing stop, lot, stop loss management, market trading authorisations, price table updates, trading conditions and many more. Installation + Documentation : You will find all the information to install this library and the documentation of its functions on this GitHub : https://github.com/Venon282/Expert-Advisor-Toolkit WARNING : The installat
A Simple Moving Average (SMA) is a statistical indicator used in time series analysis. This indicator represents the arithmetic mean of a sequence of values over a specific period of time. SMA is used to smooth short-term fluctuations in data, helping to highlight the overall trend or direction of changes. This aids analysts and traders in better understanding the general dynamics of the time series and identifying potential trends or changes in direction.  More information you can find in Wiki 
Introducing "TG Risk Service Manager" — your comprehensive toolkit for swift and precise risk management and lot size calculations in the dynamic world of trading. Designed to streamline development processes and enhance trading strategies, this indispensable library equips developers with essential tools for optimizing risk assessment and trade profitability. Metatrader4 Version |  All Products  |  Contact   Key Features: Efficient Lot Size Calculation : Harness the power of precise lot size c
Introducing "TG Trade Service Manager" — your all-in-one solution for seamless trade management in both MQL4 and MQL5 environments. With a focus on speed, reliability, and convenience, this powerful library simplifies the complexities of trade execution and management, empowering developers with a single interface for enhanced efficiency. Metatrader4 Version   |   All Products   |   Contact   Key Features: Unified Interface : TG Trade Service Manager" provides a unified interface for   MQL4   an
Данная библиотека предлагается как средство для использования API OpenAI напрямую в MetaTrader максимально простым способом. Для получения дополнительной информации о возможностях библиотеки прочитайте следующую статью: https://www.mql5.com/en/blogs/post/756106 The files needed to use the library can be found here: Manual ВАЖНО: Для использования EA необходимо добавить следующий URL для доступа к API OpenAI  как показано на приложенных изображениях Для использования библиотеки необходимо включит
This trailing stop application will helping trader to set the trailing stop value for many open positions, that apply a grid or martingale strategy as a solution. So if you apply a grid or martingale strategy (either using an EA or trading manually), and you don't have an application to set a trailing stop, then this application is the solution. For EAs with a single shot strategy, just use the FREE trailing stop application which I have also shared on this forum.
KP TRADE PANEL EA is an EA MT5 facilitates various menus. KP TRADE PANEL EA is an EA skin care in MT5 is an EA that puts the system automatically in download EA MT5 to test with demo account from my profile page while some Trailing Stop Stop Loss require more than 0 features EA determines lot or money management calculates lot from known and Stop loss TS = Trailing stop with separate stop loss order Buy more AVR TS = Trailing stop plus
Простая в использовании библиотека, предоставляющая разработчикам доступ к ключевым торговым статистикам для их MQL5 экспертов. Доступные методы библиотеки: Данные аккаунта и прибыль: GetAccountBalance() : Возвращает текущий баланс аккаунта. GetProfit() : Возвращает чистую прибыль от всех сделок. GetDeposit() : Возвращает общую сумму депозитов. GetWithdrawal() : Возвращает общую сумму снятий. Анализ торговли: GetProfitTrades() : Возвращает количество прибыльных сделок. GetLossTrades() : Возвраща
Molo kumalo
James Ngunyi Githemo
Trading Forex with our platform offers several key advantages and features: Real-time Data : Stay updated with live market data to make informed decisions. User-Friendly Interface : Easy-to-navigate design for both beginners and experienced traders. Advanced Charting Tools : Visualize trends with interactive charts and technical indicators. Risk Management : Set stop-loss and take-profit levels to manage your risk. Multiple Currency Pairs : Access a wide range of forex pairs to diversify your tr
* * * * * Основные транзакции XAUUSD, если во время тестирования рекомендуется настроить на XAUUSD, другие торговые объекты не могут гарантировать рентабельность * * * * * * * * * * * * * * * * Оставьте сообщение, которое нужно протестировать (вы ответите в первый раз после просмотра), чтобы защитить результаты работы, необходимо ввести определенные параметры, параметры по умолчанию системы не могут достичь эффекта, показанного в отзыве скриншота! Оставьте сообщение, которое нужно протестиров
Этот продукт разрабатывался в течение последних 3 лет. Это самая продвинутая кодовая база для работы со всеми видами кода искусственного интеллекта и машинного обучения на языке программирования MQL5. Он использовался для создания множества торговых роботов и индикаторов на основе ИИ в MetaTrader 5. Это премиум-версия бесплатного и открытого проекта по машинному обучению для MQL5, ссылка здесь:  https://github.com/MegaJoctan/MALE5 . Бесплатная версия имеет меньше функций, менее документирована и
Другие продукты этого автора
A free indicator for those who purchase the full version This indicator is created by this Ai, with your desired settings Artificial Intelligence at your service Have a complete artificial intelligence and use it in your codes This artificial intelligence is trained to tell you on each candle whether the market is moving up or down. In general, artificial intelligence can be used in all markets, all timeframes and all symbols However, due to the increasing complexity and decreasing accuracy of
Фильтр:
Нет отзывов
Ответ на отзыв