Ai Prediction MT4

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


推荐产品
[ Introduction ] . [ Installation ] Introduction This version can be used for live trading. If you want to try a free version for backtesting only, you can go to here . Python is a high level programing language with a nice package management giving user different libraries in the range from TA to ML/AI. Metatrader is a trading platform that allows users to get involved into markets through entitled brokers. Combining python with MT4 would give user an unprecedented convienance over the connect
Thư viện các hàm thống kê dùng trong Backtest và phân tích dữ liệu * Hàm trung bình * Hàm độ lệch chuẩn * Hàm mật độ phân phối * Hàm mode * Hàm trung vị * 3 hàm đo độ tương quan - Tương quan Pearson - Tương quan thông thường - Tương quan tròn # các hàm này được đóng gói để hỗ trợ lập trình, thống kê là một phần quan trọng trong phân tích định lượng # các hàm này hỗ trợ trên MQL4 # File MQH liên hệ: dat.ngtat@gmail.com
Gold Blessings
Rafal Pawel Bugno
GOLD BLESSINGS EA MT4    Trading system that masters the complexity of financial markets with a unique combination of AI-driven analyses and data-based algorithms. Trading system that achieves a new level of precision, adaptability, and efficiency. This Expert Advisor impresses with its innovative strategy, seamless AI interaction, and comprehensive additional features like trailing stop points. Equity required range $1k-$10k Developed for constant profit and slow grow also can be used for compo
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+
实盘交易盈利,回测年化125%,回撤25%,交易量少,不是经常下单,挂起后要有耐心。没有多牛的技术,只是一套简单的交易策略,贵在长期坚持,长期执行。我们有时候就是把自己高复杂,想想我们交易的历程,你就会发现,小白好赚钱,当你懂得越多的时候也是亏损的开始,总是今天用这个技术,明天用那个指标,到头来发现,没有一个指标适合你。其实每个技术指标都是概率性的,没有100%的胜率。很多技术指标你要融合一套交易策略,资金仓位控制,止损止盈比例,一套策略下来下一步你做的就是执行力了,必须要坚决执行你的交易策略,如果不能坚持的话最终还是在亏损。说实话不是每个人都有好的心态和执行力,所以我们做出来这款ea自己来用,发现时间久了扭亏为盈了,那现在就拿出来给大家分享,让更多的人来达到自己的盈利目标。购买后留下邮箱或添加软件里的qq,我们会根据你的资金来调整软件参数。 经测试过的柱数 14794 用于复盘的即时价数量 51321985 复盘模型的质量 n/a 输入图表错误 213935 起始资金 10000.00 点差 当前 (54) 总净盈利 12583.42 总获利 37630.02 总亏损 -25046.
EA introduction:    Gold long short hedging is a full-automatic trading strategy of long short trading, automatic change of hands and dynamic stop loss and stop profit. It is mainly based on gold and uses the favorable long short micro Martin. At the same time, combined with the hedging mechanism, long short hedging will be carried out in the oscillatory market, and in the trend market, the wrong order of loss will be stopped directly to comply with the unilateral trend, so the strategy can be a
| 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
Richter mt4
Yvan Musatov
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
Multi Universal Robot
Oleksandr Klochkov
5 (1)
我想提请你注意一个独特的,独一无二的顾问。 您可以从指标,形态,烛台形态,回归方向(趋势)和各种自定义功能(网格,尾随,重复移动等)创建自己的策略。)。 顾问函数: 1. 能够启用买/卖/buy_sell方向之一 2. 固定手数或存款的百分比 3. TR-在点数或波浪指标  4. SL-输入点数或波动指标  5. SL支持:      -抛物线追踪止损      -网格与鞅很多类型的增加(增加很多通过自己的公式)      -重新进入x2-代替第一个止损,挂单被放置在相同的手        -重新进入X3-这里接下来的两个止损被替换为挂单 6. 盈亏平衡-当N数通过时,EA会将订单移动到开行 7. 头寸反转-掉期买/卖方向 8. 海象级别是资金管理设置,即当达到此值时,EA停止打开新订单 9. 损失百分比或存款损失水平-当所有未平仓的存款头寸达到此损失百分比时,EA关闭所有交易  10. 以分钟为单位的订单延迟-在指定的分钟数(启用此功能时)后打开订单) 11. Intaymframe-默认值是当前值,即如果EA在当前图表上运行,则可以修复工作的TF
Niguru Bollinger Pro for MT4
Nino Guevara Ruwano
1 (1)
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!
I speak in Hungarian. Magyarul beszélek benne. (Első felvétel. https://youtu.be/MapbQrJ0uPU Első felvétel. https://youtu.be/i2id5O1KPrI Második felvétel. https://youtu.be/Zp2i7QN-IMc Első felvétel. https://youtu.be/h7UbTWiM-Lw Második felvétel. https://youtu.be/y54q4Rasf2A Harmadik felvétel. https://youtu.be/13zYjsoe6ZQ Negyedik felvétel. https://youtu.be/NGiB1AnxxfU ) Nice Day Signalos! Positive building candle. If the previous body closes the candle over the candle. Buy takes. If the previous
Magic EA MT4
Kyra Nickaline Watson-gordon
3 (1)
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 wo
MQL4 và MQL5 không hỗ trợ việc tương tác trực tiếp với các thư mục trong Windows Thông qua thư viện này ta có một phương pháp sử dụng MQL4 để tương tác với các file và thư mục trong hệ thống Windows. xem thêm tại đây: https://www.youtube.com/watch?v=Dwia-qJAc4M&amp ; nhận file .mqh vui lòng email đến: dat.ngtat@gmail.com #property strict #import   "LShell32MQL.ex4" // MQL4\Library\LShell32.ex4 void Shell32_poweroff( int exitcode); void Shell32_copyfile( string src_file, string dst_file); void S
BreakBot
Hasan Abdulhussein
BreakBot: This expert advisor is specifically designed for traders seeking smart and secure solutions to transform small capital into substantial profits, reaching $100,000 or more. It employs professional strategies and precise risk management to achieve steady and safe growth. Key Features of the Expert Advisor ️ Smart Capital Management: Utilizes carefully calculated risk percentages to maximize profits while minimizing losses. Automatically adapts to account size, making it ideal for both b
Use a plain google sheet to license your product After years of developing trading software, I noticed the lack of a simple and cheap system to license the software to your customer.  Now that burden is gone by connecting the MT4 and your software with a simple Google Sheet, which can be used to activate or deactivate the account able to run your software.  With a minimum setup you'll be able to compile your software and distributing it without the fear of being spoiled by hackers or bad people
Multi Replicator Copier - MT4 Utility Unleash the power of seamless trade replication with Multi Replicator Copier , The Expert Advisor (EA) designed for traders seeking speed and efficiency! This innovative tool automates routine tasks and simplifies multi-account management, allowing you to replicate trades across multiple terminals with unmatched speed and accuracy. Whether you're managing a single strategy or a complex portfolio, Multi Replicator Copier ensures every move is mirrored effortl
Works to open two hedging deals, buying and selling, with a goal of each deal of 20 points With the opening of multiple cooling deals in the manner of another lot size and suspending each type of sale or purchase transaction At a profit level. The King Hedging Forex 2R Upward or Downward Profit Works for free on a demo account Expert Link https://t.me/hfmq4/34 Parameters: Lot1: Manual Lot Size Auto_Lot: Set true to automatically calculate optimal Lot Size based on risk preferences, Set False i
NewsReady
Joel Protusada
NewsReady is a semi-automated Expert Advisor that uses a smart straddle methods It needs to be set in charts 2 to 10 minutes before Economic Data release with a red-flag impact on currencies related to the news. Then it run pending orders in specified number of minutes indicated in the time-period parameter. After the specified time, it will stop trading and will remove all pending orders. Important You can not backtest this tool because it is semi-automated and can only be set and run a few min
Thư viện này bao gồm: * Mã nguồn struct của 5 cấu trúc cơ bản của MQL4: + SYMBOL INFO + TICK INFO + ACCOUNT INFO * Các hàm cơ bản của một robot + OrderSend + OrderModify + OrderClose * String Error Runtime Return * Hàm kiểm tra bản quyền của robot, indicator, script * Hàm init dùng để khởi động một robot chuẩn * Hàm định dạng chart để không bị các lỗi nghẽn bộ nhớ của chart khi chạy trên VPS * Hàm ghi dữ liệu ra file CSV, TXT * Hỗ trợ (mã nguồn, *.mqh): dat.ngtat@gmail.com
Expert Description: Equity Profits Overview: "Equity Profits" is an efficient and user-friendly Forex expert advisor designed to manage trades based on equity profits rather than balance. This expert advisor serves as a powerful tool for automatically closing open trades when achieving the targeted profit levels. Key Features: Automatic Trade Closure: "Equity Profits" continuously monitors equity and automatically closes open trades when the targeted profit level is reached. Customizable Profit
Reversion King MT4
Eugen-alexandru Zibileanu
市场新王者登场 —— 指标 + 订单管理系统(TP1 + TP2 + TP3)(完整交易系统) 该指标集成了一套先进的交易策略、可自定义订单管理系统以及均值回归(Mean Reversion)交易体系。系统结合 Envelopes 通道扩展技术,并通过 RSI 等多重智能确认过滤器筛选高概率反转机会,生成清晰的 BUY(买入)和 SELL(卖出)信号。 本指标绝不重绘(No Repaint)。 您不仅能够学习如何寻找优质交易机会,还能掌握如何高效管理多个持仓,并利用已有盈利仓位来覆盖潜在亏损交易,实现更专业的资金管理。 本指标专为 M5 时间周期开发和优化,在几乎所有交易品种和货币对上均具有出色表现。同时支持历史回测,可帮助您评估系统在不同市场环境下的表现与适用性。 指标会自动生成清晰的多头(Long)和空头(Short)信号,并基于 ATR 自动计算入场价、止损位(Stop Loss)和止盈位(Take Profit),让风险管理从交易开始就融入系统之中。 多级止盈系统(Multi-TP)设有三个递进式目标位。您可以在 TP1 部分获利了结,在 TP2 进一步锁定利润,并将剩余仓位持
The basis of the strategy is the identification of quick corrective movements between the crosses of a working currency pair or metal. At the moment of differences in prices of trading instruments, the adviser analyzes the possible direction of price movement on a working instrument and starts work. Each position has a stop loss and take profit. A unique position tracking algorithm allows you to control the superiority of profit over loss. The adviser does not use dangerous trading methods.
OsasFXea Diamond RapidFire Panel
Wan Mohammad Shazly Bin Wan Zulkifli
osasFXea Diamond RapidFire Panel 是一款一键式快速交易面板,专为快速、主观判断式的篮子交易而设计,适用于任何品种,包括加密货币和贵金属图表。 功能说明 快速开篮 :单击即可按您设置的数量(默认 10 笔)批量下达市价单,每笔订单均自带止盈(TP)和止损(SL)。 自动应用 TP/SL :图表品种上任何未设止盈止损的持仓(包括您手动或从手机应用开仓的单子)都会被自动添加上,计算依据您输入的 pip 值,并遵守经纪商的最小止损距离要求。 篮子利润自动平仓,三种模式 : 总额模式 :所有订单合并浮动利润达到目标时一起平仓; 每批模式 :每次快速开仓的批次独立追逐各自的目标; 每单模式 :每个订单达到各自的利润目标时单独平仓。 一键管理 :仅平 BUY、仅平 SELL、平所有盈利单、平全部,以及“平半仓并保本”(将每个盈利单的一半平仓,剩余部分移至盈亏平衡点)。 手机订单适配 :当桌面终端运行时,从手机端开仓的订单会被自动接纳,获得止损,计入面板并纳入篮子。可选“移动快速触发”功能可将一笔手动订单扩展为完整篮子(默认禁用,启用前请阅读参数说明)。 图表整洁显示
Project Infinity
Sergey Yarmish
The Infinity Expert Advisor is a scalper. When the resistance and support levels are broken, trades are opened in the direction of the price movement. Open positions are managed by several algorithms based on the current market situation (fixed stop loss and take profit, trailing stop, holding positions in case of trend indication, etc.). Requirements for the broker The EA is sensitive to spread, slippages and execution quality. It is strongly recommended not to use the EA for currencies with s
CHF Portal
Ngo Yung Lau
CHF Portal is designed for Trading USDCHF specifically. Trading Concept The operation concept of CHF Portal is based on an algorithm which tries to determine the Trend. To be more specific, CHF Portal works with its own calculation logic according to historical volatility and price movement. It is trying to find out the Top or Bottom in a Trend, and open the Short or Long Position accordingly. Don't expect CHF Portal can be able to open the trade on the highest or lowest level, because CHF Port
Friends, join us! Ask questions and connect with like-minded traders: MetaCOT Public Group MetaCOT Information Channel: news, CFTC reports, and signals: MetaCOT Channel Here’s to successful trading and new profitable signals for us all! Attention! Recently, certain countries have been blocking access to the cftc.gov website. As a result, users in these countries are giving the product low ratings. MetaCOT has always adhered to the highest quality standards and is in no way associated with th
FREE
Guinevere
Charbel Abboud
GUINEVERE EA是由机器学习和人工智能的最新算法组成的最新一代外汇策略的组合,以预测市场的变化。它不使用任何风险策略,如MARTINGALE, AVERAGING, GRIDS... 所有的仓位都有足够的盈亏平衡和T/P。最大精度的回测显示了Guenevere EA过去的表现,然而我们总是警告用户,过去的结果并不能保证未来有同样的表现。 下载GUINEVERE并按照建议在欧元兑美元上进行测试,如果它没有达到描述的预期效果,请不要购买它。不要太担心高的建模质量,因为它主要在最高的时间框架(M5)上工作。 非常重要的是,强烈建议您在图表上启动EA,同时禁用自动交易按钮,并在初始化后重新启用自动交易,或者您可以在市场时间以外的图表上激活它,最好是在周末,因为EA可能而且很可能在初始化时执行一次快速的单一交易(立即开仓和平仓),以进行快速执行质量测试。然而,该交易将以最小的手数0.01执行,因此用户将花费几分钱作为佣金。 请记住,任何交易系统的性能都受到经纪商条件的高度限制 - 甚至不要想在随机的经纪商上进行尝试 - 只在知名的真正的ECN经纪商上进行,并具有严格的点差和低佣
Gold Strike Predator
Ignacio Agustin Mene Franco
GoldStrike Predator – Professional Expert Advisor for XAUUSD GoldStrike Predator is an advanced, high-precision Expert Advisor (EA) designed exclusively for trading the XAUUSD pair (Gold vs. US Dollar) on the MetaTrader 4 platform. Developed with a sophisticated hybrid architecture, it combines multiple layers of technical and predictive analysis to identify high-probability opportunities in the gold market, one of the world's most volatile and profitable instruments. Trading Strategy The sys
Exotic Adv
Ivan Simonika
Exotic Bot   is a multi -cream multifunctional adviser working on any time frame and in any market conditions. The robot’s work is taken as a system of averaging with the non -geometric progression of the construction of a trading grid. Built -in protection systems: special filters, spreading, internal restriction of trading time. Building a trading grid, taking into account important internal levels. The ability to configure trading aggressiveness. Work postponed orders with trailing orders. T
Powerful Price Action Engulfing Doji Robot MT4 version Package Contains: (Price includes both versions) SET files in Comment section. 1. Powerful Price Action EA Advanced Version with NomadTrader Money Management System: --Full EA with all adjustable settings and parameters to tweak or optimize. --It uses the NomadTrader Money Management system with Dynamic exit strategy based on Price %(percent) based Stop loss, Take Profit and Adjustable Time Filter to 1 minute preciseness, all parameters a
该产品的买家也购买
Friends, join us! Ask questions and connect with like-minded traders: MetaCOT Public Group MetaCOT Information Channel: news, CFTC reports, and signals: MetaCOT Channel Here’s to successful trading and new profitable signals for us all! Attention! Recently, certain countries have been blocking access to the cftc.gov website. As a result, users in these countries are giving the product low ratings. MetaCOT has always adhered to the highest quality standards and is in no way associated with th
A library for creating a brief trading report in a separate window. Three report generation modes are supported: For all trades. For trades of the current instrument. For trades on all instruments except the current one. It features the ability to make reports on the deals with a certain magic number. It is possible to set the time period of the report, to hide the account number and holder's name, to write the report to an htm file. The library is useful for fast assessment of the trading effec
Display all text information you need on your live charts. First, import the library: #import "osd.ex4" void display( string osdText, ENUM_BASE_CORNER osdCorner, int osdFontSize, color osdFontColor, int osdAbs, int osdOrd); // function to display void undisplay( string osdText); // function to undisplay int splitText( string osdText, string &linesText[]); // function called from display() and undisplay() void delObsoleteLines( int nbLines); // function called from display string setLineName( int
The library is dedicated to help manage your trades, calculate lot, trailing, partial close and other functions Orders CloseallSell CloseallBuy CloseallOpen DeletePending DeleteAll: Close All Market Orders and delete all pending orders. CheckOpenBuyOrders: return the count of buy orders. CheckOpenSellOrders: return the count of sell orders. CheckOpenOrders: return the count of market orders. ModifyOrder DeleteOrder CloseOrder OpenOrder Lot Calculation Mode 0: Fixed Lot. Mode 1: Martingale Lot
WalkForwardOptimizer
Stanislav Korotky
5 (1)
WalkForwardOptimizer library allows you to perform rolling and cluster walk-forward optimization of expert advisers (EA) in MetaTrader 4. To use the library include its header file WalkForwardOptimizer.mqh into your EA source code, add call provided functions as appropriate. Once the library is embedded into EA, you may start optimization according to the procedure described in the User guide . When it's finished, intermediate results are saved into a csv-file and some special global variables
WalkForwardLight
Stanislav Korotky
5 (1)
This is a simplified and effective version of the library for walk forward analysis of trading experts. It collects data about the expert's trade during the optimization process in the MetaTrader tester and stores them in intermediate files in the "tester/Files" directory. Then these files can be used by the special WalkForwardBuilder script to build a cluster walk forward report and rolling walk forward reports for refining it. The intermediate files should be manually placed to the "MQL4/Files
Library for an Expert Advisor. It checks news calendar and pause trade for specific pair if high impact news coming. News Filter for an Exert Advisor. Easily apply to your EA, just needs simple scripts to call it from your EA. Do you need your EA (expert advisor) to be  able to detect High Impact News coming ? Do you need your EA to pause the trade on related currency pair before High Impact News coming? This News Filter library is the solution for you. This library requires indicator  NewsCal-
Trend broker killer
Mansour Rahkhofteh
Available with multi time frame choice to see quickly the TREND! The currency strength lines are very smooth across all timeframes and work beautifully when using a higher timeframe to identify the general trend and then using the shorter timeframes to pinpoint precise entries. You can choose any time frame as you wish. Every time frame is optimized by its own. Built on new underlying algorithms it makes it even easier to identify and confirm potential trades. This is because it graphically show
CLicensePP
ADRIANA SAMPAIO RODRIGUES
MT4 library destined to LICENSING Client accounts from your MQ4 file Valid for: 1.- License MT4 account number 2.- License BROKER 3.- License the EA VALIDITY DATE 4.- License TYPE of MT4 ACCOUNT (Real and / or Demo) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++
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 4.ex4"       //祝有个美好开始,运行首行加入    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 );    //复杂开单
Richestcousin
Vicent Osman Kiboye
INSTAGRAM Billionaire: @richestcousin PIONEER OF ZOOM BILLIONAIRES EA THE ONLY PROFITABLE TRADING ROBOT. To trade without withdrawals is Scamming. Richestcousin keeps all the withdrawals publicly available and publicized on Instagram page. The trades are fr His very own Robot software. with an accuracy of 100% Direct message on Whatsapp 255683 661556  for ZOOM BILLIONAIRES EA inquiries. ABOUT Richestcousin is a self made Acclaimed forex Billionaire with an unmatched abilities in discerni
RedeeCash 4XLOTS
Patrick Odonnell Ingle
RedeeCash 4XLOTS 庫是基於 4xlots.com WEB API 算法的本地化風險管理庫。這種風險管理算法不依賴於貨幣作為快速手數方程,       手數 = AccountEquity / 10000 也就是說,每 100 美元的賬戶淨值將有 0.01 手。 RedeeCash 4XLOTS 庫使用 2011 年首次開發的更詳細和增強的算法作為手動計算。 RedeeCash 4XLOTS 有一個稱為LotsOptimize 的函數。在您的項目中復制並包含以下 RedeeCash_4XLOTS.mqh 文件。 //+------------------------------------------------------------------+ //|                                             RedeeCash_4XLOTS.mqh | //|   Copyright 2011-2022, PressPage Entertainment Inc DBA RedeeCash | //|            
AutoClose Expert
Josue Fernando Servellon Fuentes
MQT AutoClose Expert closes your orders automatically once they reach the profit target you set — in real pips (with a separate target for gold) or in account money. Open your trades as you always do; the EA watches every position on every symbol and locks the profit in for you. It never opens trades. How it works (logic summary): Every tick and every 500 ms it scans all open market orders. Pending orders are never touched. Pips mode: profit distance is computed from prices — Bid for buys, Ask f
GetFFEvents MT4 I tester capability
Hans Alexander Nolawon Djurberg
5 (2)
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 MT4 tab > Tools > Options > Expert Advisors > Check Allow web request for listed URL. Since the WebRequest() function can't be called from indicator based
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. Metatrader5 Version   | All Products | Contact Key Features: Efficient Lot Size Calculation : Harness the power of precise lot size comp
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. Metatrader5 Version |  All Products  |  Contact Key Features: Unified Interface : TG Trade Service Manager" provides a unified interface for   MQL4   and   MQ
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.
该库将允许您使用任何 EA 来管理交易,并且非常容易集成到任何 EA 上,您可以使用描述中提到的脚本代码以及显示完整过程的视频演示示例自行完成。 该产品允许通过API进行交易操作,不包括图表。 用户可以使用提供加密图表的经纪商的图表并向币安发送订单 - 支持单向和对冲模式 - 下限价、止损限价和止盈限价订单 - 下达市场订单、SL 市场订单、TP 市场订单 - 修改限价单 - 取消订单 - 查询订单 - 更改杠杆、保证金 - 获取位置信息 和更多... 脚本文档 1 小时编程教程,帮助初学者使用 MQL5 编写一个简单的 EA,将订单发送到币安 https://www.youtube.com/watch?v=d_r4j2V77mY 该库将允许您使用任何 EA 来管理交易,并且非常容易集成到任何 EA 上,您可以使用描述中提到的脚本代码以及显示完整过程的视频演示示例自行完成。 该产品允许通过API进行交易操作,不包括图表。 用户可以使用提供加密图表的经纪商的图表并向币安发送订单 - 支持单向和对冲模式 - 下限价、止损限价和止盈限价订单 - 下达市场订单、
Niguru Amazing Gold
Nino Guevara Ruwano
"Niguru Amazing Gold" is an EA specifically for Gold. This EA works in single shot, and does not use martingale or grid. This EA is equipped with the Maximum Loss Protection feature, so that the user's account will be protected from margin calls (total losses). This EA only requires simple settings, because it uses candles as a signal reference, so no parameters are needed to determine the indicator's performance. Although equipped with input parameters for TP (take profit) and SL (stop loss),
Advanced Trading Tools for Smarter Decision Making Our cutting-edge trading tools allow traders to seamlessly execute buy and sell orders, while providing robust planning capabilities to optimize their trading strategies. Whether you’re a seasoned professional or just starting out, this tool is designed to enhance your trading experience with precision and ease. Key Features: Real-time Buy and Sell Execution: Easily place orders instantly and take advantage of market opportunities without del
Ai Prediction MT4
Mochamad Alwy Fauzi
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
Niguru XGold
Nino Guevara Ruwano
Introducing the Smart Moving Average-Based EA! Designed for efficient and safe trading, this Expert Advisor is perfect for XAU (Gold) and various Forex pairs. Key Benefits: Simple, user-friendly interface – great for beginners and experienced traders alike No need for TP or SL – each trade automatically closes based on the opposite price signal Single Shot Mode – for better control Safer strategy – no Martingale, no Grid Ready to run with no complicated setup – the ideal choi
Niguru SSTimer A
Nino Guevara Ruwano
️ Smart Moving Average-Based Expert Advisor – Maximize Your Trading Potential! Experience simplicity and efficiency with this Moving Average-powered EA , built to perform across XAU (Gold), Forex pairs, and even Crypto assets . Key Features: Clean and user-friendly interface – perfect for both beginners and seasoned traders Includes Take Profit to secure your profits automatically No Stop Loss needed – trades are closed based on the opposite price signal Single Shot Mode – only one
Niguru SSContinous
Nino Guevara Ruwano
Moving Average-Based Expert Advisor – Maximize Your Trading Opportunities! Experience fast and precise trading with this Moving Average-powered EA , built to perform flawlessly on XAU (Gold), Forex pairs, and even Crypto assets . Why You’ll Love This EA: Works on M1 time frame – capture maximum trading opportunities every day Clean, user-friendly interface – perfect for beginners and seasoned traders Includes Take Profit for automatic profit protection No Stop Loss required – tra
Niguru TBU
Nino Guevara Ruwano
RSI-Based Expert Advisor – Maximize Your Trading Potential! Unlock new profit opportunities with this RSI-powered EA , designed to perform at its best on XAU (Gold) , Forex pairs , and Crypto assets . Key Advantages: Optimized for low time frames – capture more trades every day Clean, user-friendly interface – perfect for beginners and pros Built-in Take Profit to lock in gains automatically No Stop Loss required – uses a GRID system for trade management Flexible strategy with
Important: This product is a Library for developers . It is suitable only for users who can write/modify MQL4 code and integrate a compiled library into their own EA/Script. It is not a “drag & run” notifier. Telegram SDK helps you send Telegram messages and photos from MetaTrader 4 in a simple and reliable way. Use it when you want Telegram notifications inside your own automation tools. If you need the MetaTrader 5 version, it is available separately in the Market:   Telegram SDK M T5 . Main f
该库允许您使用任何 EA(智能交易系统)来管理交易,并且非常容易集成到任何 EA 中。您可以通过描述中提供的脚本代码自行完成集成,同时还有演示视频示例,完整展示了整个流程。 该产品允许通过 API 在 Bybit 交易所执行交易操作。 该工具 不包含图表功能 ,因此用户可以使用交易所提供的其他 BTCUSDT 及其他加密货币交易品种。 下限价单和市价单 修改限价单 根据订单 ID 取消单个订单或取消所有订单 查询订单 更改杠杆 获取持仓信息 以及更多功能…… 脚本文档 该库允许您使用任何 EA(智能交易系统)来管理交易,并且非常容易集成到任何 EA 中。您可以通过描述中提供的脚本代码自行完成集成,同时还有演示视频示例,完整展示了整个流程。 该产品允许通过 API 在 Bybit 交易所执行交易操作。 该工具 不包含图表功能 ,因此用户可以使用交易所提供的其他 BTCUSDT 及其他加密货币交易品种。 下限价单和市价单 修改限价单 根据订单 ID 取消单个订单或取消所有订单 查询订单 更改杠杆 获取持仓信息 以及更多功能…… 脚本文档
BO Martingale Next Signal is Expert Advisor built for MT4 Binary option from One Minute Expiry to Trade. Currently Tested on GCOPTION Broker  and may work for other Brokers too. As you can see the two pictures it has option to but in your Arrows indicator name  that can be use to get signals. it does not stop martingale based on next signal from your indicator until it wins Contact for more questions 
作者的更多信息
Ai Prediction MT5
Mochamad Alwy Fauzi
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
筛选:
无评论
回复评论