IndexRaider Library MT4

```text
La bibliothèque IndexRaider met à disposition le moteur IndexRaider sous forme de fonctions directement appelables. Elle comprend la détection des balayages de liquidité (SFP), le biais de tendance H4, la confirmation des Fair Value Gaps ainsi que le calcul de taille de position basé sur le risque utilisé dans toute la gamme de produits IndexRaider.

Vous pouvez ainsi développer votre propre Expert Advisor, indicateur ou panneau de trading en utilisant exactement les mêmes règles. La bibliothèque effectue l’analyse, tandis que votre programme reste entièrement responsable des décisions et de l’exécution.

CE QUE LA BIBLIOTHÈQUE FOURNIT

- IXR_Drive(symbol) — fait progresser la machine d’état propre à chaque symbole à partir des données H1. La fonction peut être appelée à chaque tick ou via un timer, mais chaque bougie H1 clôturée n’est traitée qu’une seule fois. Elle renvoie la phase actuelle :
  0 = inactif
  1 = sweep détecté / en attente de confirmation
  2 = setup activé

- IXR_Setup(symbol, direction, entry, sl, tp) — renvoie les niveaux du setup activé tant que la phase est égale à 2 :
  entrée au bord du gap,
  stop-loss au-delà de la mèche du sweep,
  objectif à l’extrémité opposée de la zone balayée

- IXR_Bias(symbol) — renvoie le biais de tendance H4 basé sur les EMA 20/50 :
  +1, -1 ou 0

- IXR_CalcVolume(symbol, direction, entry, sl, risk_pct) — calcule la taille de position selon le pourcentage de risque choisi, l’ajuste au pas de lot du courtier et vérifie la distance minimale du stop ainsi que la marge disponible. La fonction renvoie 0 lorsque le trade doit être refusé plutôt que d’ouvrir une position surdimensionnée

- IXR_Phase, IXR_Reset, IXR_SetMinRR, IXR_Version — fonctions de gestion de l’état et des paramètres

COMMENT L’UTILISER

#import "IndexRaiderLibrary.ex4"
int    IXR_Drive(string symbol);
bool   IXR_Setup(string symbol, int &direction, double &entry,
                 double &sl, double &tp);
double IXR_CalcVolume(string symbol, int direction, double entry,
                      double sl, double risk_pct);
#import

void OnTick()
  {
   if(IXR_Drive(_Symbol) == 2)
     {
      int dir; double entry, sl, tp;
      if(IXR_Setup(_Symbol, dir, entry, sl, tp))
        {
         double vol = IXR_CalcVolume(_Symbol, dir, entry, sl, 0.25);
         // placez votre ordre ici — la bibliothèque ne trade jamais par elle-même
        }
     }
  }

LES RÈGLES INTERNES

Un niveau de swing établi (fractale de 3 bougies, datant de 9 à 96 bougies) est brièvement dépassé par la mèche, mais la bougie clôture ensuite de nouveau de l’autre côté du niveau. La tendance H4 basée sur les EMA 20/50 doit également confirmer la même direction.

Dans les 12 bougies suivantes, une bougie de displacement d’au moins 1× ATR(14) doit se former et laisser un Fair Value Gap.

Les setups dont le ratio rendement/risque est inférieur au minimum défini sont rejetés. La valeur par défaut est de 1,5 et peut être ajustée.

Un setup activé expire après 16 bougies.

Toutes les décisions sont prises uniquement à partir de bougies entièrement clôturées, selon la même logique strictement causale que l’IndexRaider Expert Advisor et l’IndexRaider Indicator.

La bibliothèque effectue uniquement l’analyse et le calcul de la taille de position. Elle n’ouvre, ne modifie et ne ferme jamais de position par elle-même. L’exécution des ordres reste entièrement sous le contrôle de votre propre code.

COMPATIBILITÉ

MetaTrader 4, Build 600 ou version ultérieure.

VOUS PRÉFÉREZ UNE SOLUTION PRÊTE À L’EMPLOI ?

L’IndexRaider Expert Advisor trade automatiquement ces setups.

L’IndexRaider Indicator affiche les mêmes setups directement sur le graphique.

L’IndexRaider Manager ajoute une exécution manuelle en un clic avec calcul du risque.

Ces trois produits sont vendus séparément.

Le trading comporte un risque important de perte. Les performances passées ne garantissent pas les résultats futurs.
```

Produits recommandés
We present you the indicator "Candle closing counter", which will become your indispensable assistant in the world of trading. That’s why knowing when the candle will close can help: If you like to trade using candle patterns, you will know when the candle will be closed. This indicator will allow you to check if a known pattern has formed and if there is a possibility of trading. The indicator will help you to prepare for market opening and market closure. You can set a timer to create a pre
This indicator presents an alternative approach to identify Market Structure. The logic used is derived from learning material created by   DaveTeaches (on X) Upgrade v1.10: add option to put protected high/low value to buffer (figure 11, 12) When quantifying Market Structure, it is common to use fractal highs and lows to identify "significant" swing pivots. When price closes through these pivots, we may identify a Market Structure Shift (MSS) for reversals or a Break of Structure (BOS) for co
Volume Profile Sniper v11. 1-un outil Complet pour l'analyse du marché Approche professionnelle du commerce Volume Profile Sniper V11.1 combine plus de 15 filtres clés dans un seul indicateur, fournissant des signaux clairs basés sur une évaluation complète de la situation du marché. Principales caractéristiques Analyse du déséquilibre volumétrique-l'algorithme calcule la proportion d'acheteurs et de vendeurs dans chaque bougie, signalant la prédominance de l'une des parties (seuil configurabl
Noize Absorption Index MT4
Ekaterina Saltykova
5 (1)
Noize Absorption Index - is the manual trading system that measures the difference of pressure between bears forces and bulls forces. Green line - is a noize free index that showing curent situation. Zero value of index shows totally choppy/flat market.Values above zero level shows how powerfull bullish wave is and values below zero measures bearish forces.Up arrow appears on bearish market when it's ready to reverse, dn arrow appears on weak bullish market, as a result of reverse expectation. S
Here   our more valuable tools SMC Trend Trading   ,  Easy SMC Trading  ,  Institutional SMC Architect Volume Analysis Tools  ,  Volume flow Profile  ,  Market volume profile  , FVG with Volume  , Liquidity Heatmap Profile  ,  Volume Spread Analysis       MT5 VERSION   TRADE COPIER Select Role: On the account sending trades, choose Sender (Master Account) . On the account receiving trades, choose Copier (Receiver Account) . Lot Size Mode: Same Lot Size as Master: Ignores multipliers, copies ex
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 );    //复杂开单
Daily Candle Predictor est un indicateur qui prédit le cours de clôture d'une bougie. L'indicateur est principalement destiné à être utilisé sur les graphiques D1. Cet indicateur convient à la fois au trading forex traditionnel et au trading d'options binaires. L'indicateur peut être utilisé comme un système de trading autonome, ou il peut servir de complément à votre système de trading existant. Cet indicateur analyse la bougie actuelle, calcule certains facteurs de force à l'intérieur du corps
Chart Patterns Detect 15 patterns (Ascending Triangle, Descending Triangle, Rising Wedge, Falling Wedge, Bullish Flag, Bearish Flag, Bullish Rectangle, Bearish Rectangle Symmetrical triangle, Head and Shoulders, Inverted Head and Shoulders, Triple top, Triple Bottom, Double Top, Double Bottom) Use historical data to calculate the probability of each pattern to succeed (possibility to filter notification according to the chance of success) gives graphic indication about the invalidation level and
Precision Scalper Pro Precision Scalper Pro — Streamlined Algorithmic Trading with Robust Risk Management Precision Scalper Pro is a cutting-edge trading algorithm designed to streamline trading with pinpoint accuracy and efficiency. No fancy buttons or displays — just straight-up trading with optimized logic and profit in mind. It does the work so you don't have to. STRATEGY OVERVIEW The EA employs a multi-indicator confluence engine using: • Bollinger Bands — Volatility envelope f
The Super Arrow Indicator provides non-repainting buy and sell signals with exceptional accuracy. Key Features No repainting – confirmed signals remain fixed Clear visual arrows: green for buy, red for sell Real-time alerts via pop-up, sound, and optional email Clean chart view with no unnecessary clutter Works on all markets: Forex, gold, oil, indices, crypto Adjustable Parameters TimeFrame Default: "current time frame" Function: Sets the time frame for indicator calculation Options: Can be set
Welcome to S3S Trade Manager MT4, the best risk management tool available, created to improve the efficiency, accuracy, and intuitiveness of trading. This is a complete solution for smooth trade planning, position management, and improved risk control, not just a tool for placing orders. With flexibility across all markets, from forex and indices to commodities and cryptocurrency, S3S Trade Manager MT4 can accommodate your needs whether you're a novice making your first moves, an experienced tra
Color Stochastic Enhanced Stochastic Oscillator with Cross Detection and Visual Signal Support Overview Color Stochastic is a customized version of the classic Stochastic Oscillator designed for momentum analysis and crossover visualization. The indicator provides color-based signal marking and configurable crossover detection at user-defined overbought and oversold levels. It can be used as part of: Momentum analysis Mean reversion workflows DCA-based strategies Multi-indicator confirmation sys
Introduction It is common practice for professional trades to hide their stop loss / take profit from their brokers. Either from keeping their strategy to the themselves or from the fear that their broker works against them. Using this indicator, the stop loss / take profit points will be drawn on the product chart using the bid price. So, you can see exactly when the price is hit and close it manually.  Usage Once attached to the chart, the indicator scans the open orders to attach lines for t
️ PROTOCOLE ORION 2P : L’Architecture du Profit Inévitable Cessez de poursuivre le marché. Commencez à dicter les règles. Le trading conventionnel est une bataille perdue d’avance contre le chaos. Le PROTOCOLE ORION 2P n'est ni un indicateur, ni un conseil : c'est un Protocole Algorithmique à Logique Binaire conçu pour une mission unique : l'extraction systématique de valeur. Tandis que les autres tentent de deviner la direction, nous avons construit une cage mathématique. L'Anatomie de la
L'indicateur construit les cotations actuelles, qui peuvent être comparées aux cotations historiques et, sur cette base, faire une prévision de l'évolution des prix. L'indicateur dispose d'un champ de texte pour une navigation rapide jusqu'à la date souhaitée. Option : Symbole - sélection du symbole que l'indicateur affichera ; SymbolPeriod - sélection de la période à partir de laquelle l'indicateur prendra des données ; IndicatorColor - couleur de l'indicateur ; HorisontalShift - décalage
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
Trend Bilio - an arrow indicator without redrawing shows potential market entry points in the form of arrows of the corresponding color: upward red arrows suggest opening a buy, green down arrows - selling. The entrance is supposed to be at the next bar after the pointer. The arrow indicator Trend Bilio visually "unloads" the price chart and saves time for analysis: no signal - no deal, if an opposite signal appears, then the current deal should be closed. It is Trend Bilio that is considered
Mobile LotSize Trade on the go with confidence Have you ever spotted the perfect trade opportunity on your phone, only to enter with the wrong lot size and end up risking more than you intended? With Mobile LotSize , that’s no longer a problem. Leave this EA running on your trading platform, and it will automatically monitor your pending orders set at 0.01 lots. If you’ve placed a stop loss or take profit from your phone, Mobile LotSize will calculate and adjust the trade size to match your ris
Blahtech Market Profile
Blahtech Limited
4.53 (15)
Was: $249  Now: $99   Market Profile defines a number of day types that can help the trader to determine market behaviour. A key feature is the Value Area, representing the range of price action where 70% of trading took place. Understanding the Value Area can give traders valuable insight into market direction and establish the higher odds trade. It is an excellent addition to any system you may be using. Blahtech Limited presents their Market Profile indicator for the MetaTrader community. Ins
Un indicateur technique qui calcule ses lectures sur les volumes de transactions. Sous forme d'histogramme, il montre l'accumulation de la force de mouvement de l'instrument de trading. Il dispose de systèmes de calcul indépendants pour les directions haussières et baissières. Fonctionne sur tous les instruments de trading et délais. Peut compléter n’importe quel système commercial. L'indicateur ne redessine pas ses valeurs, les signaux apparaissent sur la bougie actuelle. Il est facile à utilis
Money Flow Profile MT5 HERE   Here   our more valuable tools SMC Trend Trading   ,  Easy SMC Trading  ,  Institutional SMC Architect Volume Analysis Tools  ,  Volume flow Profile  ,  Market volume profile  , FVG with Volume  , Liquidity Heatmap Profile  ,  Volume Spread Analysis This Master Edition is engineered for clarity and speed, featuring a unique Auto-Theme Sync system that instantly beautifies your chart layout upon loading. Key Features: True Money Flow Calculation: Goes beyond stand
Forex Gump
Andrey Kozak
2.4 (5)
Forex Gump is a fully finished semi-automatic trading system. In the form of arrows, signals are displayed on the screen for opening and closing deals. All you need is to follow the instructions of the indicator. When the indicator shows a blue arrow, you need to open a buy order. When the indicator shows a red arrow, you need to open a sell order. Close orders when the indicator draws a yellow cross. In order to get the most effective result, we recommend using the timeframes H1, H4, D1. There
CoPilot dashboard MT4
Frederic Jacques Collomb
CoPilot — Tableau de bord de trading journalier Connaissez vos chiffres. Tradez avec clarté. MT5 version Qu'est-ce que CoPilot ? CoPilot est un assistant de trading de niveau professionnel qui affiche en temps réel toutes vos statistiques de performance journalière directement sur le graphique — avec une courbe d'équité live qui se met à jour trade par trade. Conçu pour les traders actifs qui ont besoin d'une visibilité instantanée sur leur session sans quitter le graphique, CoPilot agrège chaqu
"Impulses and Corrections 4" is created to help traders navigate the market situation. The indicator shows multi-time frame upward and downward "Impulses" of price movements. These impulses are the basis for determining the "Base" , which is composed of zones of corrections of price movements, as well as "Potential" zones for possible scenarios of price movement. Up and down impulses are determined based on a modified formula of Bill Williams' "Fractals" indicator. The last impulse is always "U
Fibonacci retracement and extension line drawing tool Fibonacci retracement and extended line drawing tool for MT4 platform is suitable for traders who use  golden section trading Advantages: There is no extra line, no too long line, and it is easy to observe and find trading opportunities Trial version: https://www.mql5.com/zh/market/product/35884 Main functions: 1. Multiple groups of Fibonacci turns can be drawn directly, and the relationship between important turning points can be seen
The "MR Volume Profile 4" indicator is a charting tool that displays trading volume at different price levels rather than time intervals. A key concept in volume profile is the point of control (POC)—the price level with the highest volume traded during the session or time range. While tools like VWAP or OBV provide volume trends, the "MR Volume Profile 4" indicator offers granular detail about where the most market activity occurs at specific price levels. This makes it a more precise tool for
Time Life
Ilia Dorofeev
Time Life est un expert facile à utiliser qu'il est recommandé d'utiliser pendant une courte période - de un à trois mois. Il fonctionne sur le principe de la détection de tendance, dans une fourchette de prix étroite, sur la base de données historiques et d'une moyenne de prix. L'utilisation d'un couloir étroit dans lequel les transactions peuvent être ouvertes exclut la possibilité d'ouvrir des transactions aux valeurs maximales et minimales des prix du marché, et réduit donc la possibilité de
Easy Copier Limited  is utility tool to copy trade /  Trade copier   form one account (master) to other account (slave) .  It works only with a single forex ( EURUSD ) .You can use this tool as local copier ( Terminals have to be in same PC / VPS ) as well as Remote Copier ( Terminals can be in different PC / VPS ). For remote copy you can use my server or it can be configured to your server. Trades are possible to copy from    MT4 => MT4     MT4 => MT5         MT5 => MT5       MT5 =>
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
Meta Sniper
Samir Tabarcia
Requirements Optimized to work with   EURUSD-EURCHF-USDJPY, AUDUSD-CADJPY-AUDNZD, CHFJPY-NZDJPY-NZDUSD For timeframe 4H. *(Minimum recommended deposit is $300 for each Pair) for initial lot set to 0.10, My favorite Pair are (CHFJPY-NZDJPY-EURUSD-AUDNZD-USDJPY) Warning it will be SALE only 5 Copys at 60$ Then it will be update up to 200$  You can use it the way it is, For new Set Files will be add on (Comments) ECN broker with low spread is recommended to get better results. Setup is very e
Les acheteurs de ce produit ont également acheté
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
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-
实盘交易盈利,回测年化125%,回撤25%,交易量少,不是经常下单,挂起后要有耐心。没有多牛的技术,只是一套简单的交易策略,贵在长期坚持,长期执行。我们有时候就是把自己高复杂,想想我们交易的历程,你就会发现,小白好赚钱,当你懂得越多的时候也是亏损的开始,总是今天用这个技术,明天用那个指标,到头来发现,没有一个指标适合你。其实每个技术指标都是概率性的,没有100%的胜率。很多技术指标你要融合一套交易策略,资金仓位控制,止损止盈比例,一套策略下来下一步你做的就是执行力了,必须要坚决执行你的交易策略,如果不能坚持的话最终还是在亏损。说实话不是每个人都有好的心态和执行力,所以我们做出来这款ea自己来用,发现时间久了扭亏为盈了,那现在就拿出来给大家分享,让更多的人来达到自己的盈利目标。购买后留下邮箱或添加软件里的qq,我们会根据你的资金来调整软件参数。 经测试过的柱数 14794 用于复盘的即时价数量 51321985 复盘模型的质量 n/a 输入图表错误 213935 起始资金 10000.00 点差 当前 (54) 总净盈利 12583.42 总获利 37630.02 总亏损 -25046.
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) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++
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
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
La bibliothèque RedeeCash 4XLOTS est une bibliothèque de gestion des risques localisée basée sur l'algorithme de l'API WEB 4xlots.com. Cet algorithme de gestion des risques ne dépend pas de la devise car l'équation rapide de la taille du lot de,       lots = CompteEquity / 10000 qui est pour chaque 100 $ de capitaux propres du compte aura 0,01 lot. La bibliothèque RedeeCash 4XLOTS utilise un algorithme plus détaillé et amélioré développé pour la première fois en 2011 sous forme de calcul man
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
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
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
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
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
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 
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
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-
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
实盘交易盈利,回测年化125%,回撤25%,交易量少,不是经常下单,挂起后要有耐心。没有多牛的技术,只是一套简单的交易策略,贵在长期坚持,长期执行。我们有时候就是把自己高复杂,想想我们交易的历程,你就会发现,小白好赚钱,当你懂得越多的时候也是亏损的开始,总是今天用这个技术,明天用那个指标,到头来发现,没有一个指标适合你。其实每个技术指标都是概率性的,没有100%的胜率。很多技术指标你要融合一套交易策略,资金仓位控制,止损止盈比例,一套策略下来下一步你做的就是执行力了,必须要坚决执行你的交易策略,如果不能坚持的话最终还是在亏损。说实话不是每个人都有好的心态和执行力,所以我们做出来这款ea自己来用,发现时间久了扭亏为盈了,那现在就拿出来给大家分享,让更多的人来达到自己的盈利目标。购买后留下邮箱或添加软件里的qq,我们会根据你的资金来调整软件参数。 经测试过的柱数 14794 用于复盘的即时价数量 51321985 复盘模型的质量 n/a 输入图表错误 213935 起始资金 10000.00 点差 当前 (54) 总净盈利 12583.42 总获利 37630.02 总亏损 -25046.
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) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++
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
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
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
Plus de l'auteur
IndexRaider MT4 est un Expert Advisor (EA) entièrement automatisé qui détecte et exploite les **balayages de liquidité (Liquidity Sweeps / Swing Failure Patterns)** sur le timeframe H1, confirmés par un **déplacement avec Fair Value Gap (FVG)**. Il s’agit de la version **MetaTrader 4 d’IndexRaider**. **COMMENT IL TRADE** 1. **Filtre de tendance :** les EMA 20/50 sur H4 déterminent le biais directionnel. 2. **Balayage de liquidité :** un niveau de swing H1 déjà établi (fractale datant de 9 à 9
IndexRaider Manager est un panneau de calcul de taille de position basé sur le risque et d’exécution d’ordres destiné au trading manuel. Il utilise le même moteur de gestion du risque que l’Expert Advisor IndexRaider : vous saisissez votre prix de stop-loss, le panneau calcule la taille exacte de la position selon le pourcentage de risque choisi, puis un seul clic permet de placer l’ordre avec le stop-loss et le take-profit déjà attachés. Remarque : les flèches de balayage de liquidité et les
L’indicateur IndexRaider identifie les configurations de retournement basées sur les balayages de liquidité sur les CFD d’indices. Il s’agit de la version graphique de l’Expert Advisor IndexRaider et il utilise les mêmes règles de détection. Il affiche les signaux et envoie des alertes, mais il n’exécute pas de trades. CE QU’IL AFFICHE (GRAPHIQUE H1) * Flèches de balayage de liquidité : un niveau de swing établi (fractale de 3 bougies, datant de 9 à 96 bougies) est brièvement dépassé par la m
IndexRaider est un Expert Advisor entièrement mécanique qui exploite les balayages de liquidité (Swing Failure Patterns), confirmés par un déplacement avec Fair Value Gap sur l’unité de temps H1. COMMENT IL TRADE 1. Filtre de tendance :    Les EMA 20/50 sur H4 définissent le biais directionnel. 2. Balayage de liquidité :    Un niveau de swing H1 établi (fractale datant de 9 à 96 bougies) est brièvement dépassé lors d’une chasse aux stops, mais la bougie clôture ensuite de nouveau de l’autre
IndexRaider Manager est un panneau de calcul de taille de position basé sur le risque et d’exécution d’ordres pour le trading manuel. Il utilise le même moteur de gestion du risque que l’Expert Advisor IndexRaider : vous saisissez votre prix de stop-loss, le panneau calcule la taille exacte de la position en fonction du pourcentage de risque choisi, puis un simple clic permet de placer l’ordre avec le stop-loss et le take-profit déjà configurés. Remarque : les flèches de balayage de liquidité
L’indicateur IndexRaider identifie les configurations de retournement basées sur les balayages de liquidité sur les CFD d’indices. Il s’agit de la version graphique de l’Expert Advisor IndexRaider et il utilise les mêmes règles de détection. Il affiche les signaux et envoie des alertes, mais il n’exécute pas de trades. CE QU’IL AFFICHE (GRAPHIQUE H1) * Flèches de balayage de liquidité : un niveau de swing établi (fractale de 3 bougies, datant de 9 à 96 bougies) est brièvement dépassé lors d’u
```text La bibliothèque IndexRaider expose le moteur IndexRaider sous forme de fonctions appelables : détection des balayages de liquidité (SFP), biais de tendance H4, confirmation du Fair Value Gap et calcul de la taille de position basé sur le risque, utilisés dans toute la gamme de produits IndexRaider. Vous pouvez créer votre propre Expert Advisor, indicateur ou panneau en utilisant les mêmes règles — la bibliothèque effectue l’analyse et votre programme prend les décisions. CE QU’ELLE EX
Filtrer:
Aucun avis
Répondre à l'avis