IndexRaider Library

```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 EXPORTE

- IXR_Drive(symbol) — fait progresser la machine d’état propre à chaque symbole à partir des données H1 ; peut être appelée à chaque tick ou via un timer. Elle agit une seule fois par bougie H1 clôturée et renvoie la phase :
  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 2 :
  entrée au bord du gap,
  stop 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 votre pourcentage de risque, l’ajuste au pas de volume du courtier et vérifie la distance minimale du stop, la marge disponible ainsi que les limites de volume ; 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 d’état et de configuration

COMMENT L’UTILISER

#import "IndexRaiderLibrary.ex5"
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 de nouveau de l’autre côté du niveau, tandis que la tendance H4 basée sur les EMA 20/50 confirme la même direction.

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

Les setups dont le ratio rendement/risque est inférieur au minimum requis 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 complètement 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.

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

L’IndexRaider Expert Advisor trade automatiquement ces setups.

L’IndexRaider Indicator les affiche directement sur le graphique.

L’IndexRaider Manager ajoute une exécution manuelle en un clic basée sur le risque.

Tous sont des produits séparés.

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

Produits recommandés
Bibliothèque ModernUI pour MetaTrader 5 ModernUI est une bibliothèque d’interface utilisateur hébergée sur le graphique pour MetaTrader 5. Elle aide les développeurs MQL5 à créer des panneaux d’EA plus propres, des tableaux de bord, des fenêtres de paramètres, des formulaires, des tableaux, des boîtes de dialogue, des drawers et des interfaces compactes de style trading directement dans l’environnement graphique de MT5. Elle est conçue pour les développeurs qui veulent une couche d’interface plu
Order Book, known also as Market Book, market depth, Level 2, - is a dynamically updated table with current volumes of orders to buy and to sell specific financial instument at price levels near Bid and Ask. MetaTrader 5 provides the means for receiving market book from your broker, but in real time only, without access to its history. The library OrderBook History Library reads market book state in the past from archive files, created by OrderBook Recorder . The library can be embedded into you
Mine Farm
Maryna Kauzova
Mine Farm is one of the most classic and time-tested scalping strategies based on the breakdown of strong price levels. Mine Farm is the author's modification of the system for determining entry and exit points into the market... Mine Farm - is the combination of great potential with reliability and safety. Why Mine Farm?! - each order has a short dynamic Stop Loss - the advisor does not use any risky methods (averaging, martingale, grid, locking, etc.) - the advisor tries to get the most
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) + add  Retracements  value to buffer when Show Retracements 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 S
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
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.
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 );    //复杂开单
AVIS IMPORTANT – LICENCE ET ACTIVATION REQUISES =============================================== Instructions d'activation : Après avoir finalisé votre achat, veuillez nous contacter immédiatement pour recevoir votre clé de licence, votre mot de passe ou vos informations d'activation. Sans ces éléments, le logiciel ne fonctionnera pas. Nous sommes là pour garantir un processus d'activation fluide et vous assister pour toute question. --- Volume Delta Profile V2 Enhanced =================
Bastion is a monitor-and-close-only risk manager for prop-firm traders. It watches your account against your firm's daily-loss and maximum-drawdown limits in real time and force-closes your open positions BEFORE you cross a line. It never opens a trade of its own, so it stays fully within the tools allowed by FTMO, FundedNext, The5ers, FTUK and FXIFY. Why traders fail challenges A large share of failed evaluations end on a single daily-loss breach: a moment of inattention, a news spike, one tra
Passband Filter Pro Passband Filter Pro is a trend and cycle oscillator for MetaTrader 5. It is built on the Ehlers Super Passband Filter, a band pass filter that removes long term trend drift and short term noise so that only the dominant market cycle remains. The result is a clean oscillator with a color cloud that shows overbought and oversold conditions, cycle turns, and momentum on forex, gold, indices, stocks and crypto. Most traders enter too early or too late. Simple moving averages la
Volume Profile V6
Andrey Kolesnik
4.8 (5)
Market Volume Profile indicator + Smart Oscillator. Fonctionne sur presque tous les instruments — paires de devises, actions, futures, криптовалюта — en utilisant à la fois les volumes réels et les volumes tick. Vous pouvez définir la plage du profil automatiquement (par exemple, une semaine, un mois, etc.) ou manuellement en déplaçant les limites (deux lignes verticales : rouge et bleue). Il est affiché sous forme d’histogramme. La largeur de l’histogramme à un niveau donné représente, de maniè
Delta Profile Volume
Teresinha Moraes Correia
Technical Description of the Indicator – Delta Profile for MetaTrader 5 The Delta Profile is an indicator developed for MetaTrader 5 focused on detailed analysis of volume flow within a defined range of candles. It organizes and displays information about the imbalance of positive volumes (associated with upward movements) and negative volumes (associated with downward movements) at different price levels. The result is a clear view of the chart points where the highest concentration of trades o
Chimera Volume
Marko Milenkovic
Chimera Volume pour MetaTrader 5 Analyse avancée du volume et visualisation de l'activité du marché Chimera Volume est un indicateur personnalisé pour MetaTrader 5, conçu pour analyser l'activité des volumes normalisés et afficher les changements dans la participation au marché via un cadre visuel dynamique. L'indicateur traite les données de volume de ticks en utilisant des algorithmes de normalisation adaptative et génère une représentation structurée de l'intensité du volume, des phases d'acc
INTRODUCING MML Data Bridge The demand for bridging external data and machine learning with trading platforms is higher than ever. MetaTrader 5 is a powerful environment for trading and back testing, but without a data bridge, MT5 is largely isolated from using any external data. MML Bridge is a developer tool that allows users to bridge external data into MT5 for back testing, live trading, and optimization. It's built for ease of use, providing users with a simple function API that drip-feeds
FREE
Le niveau Premium est un indicateur unique avec une précision de plus de 80 % des prédictions correctes ! Cet indicateur a été testé par les meilleurs Trading Specialists depuis plus de deux mois ! L'indicateur de l'auteur que vous ne trouverez nulle part ailleurs ! À partir des captures d'écran, vous pouvez constater par vous-même la précision de cet outil ! 1 est idéal pour le trading d'options binaires avec un délai d'expiration de 1 bougie. 2 fonctionne sur toutes les paires de devises
Scan a fixed list of assets (Ibovespa) in the chosen timeframe (TimeFrame). For each pair and for various periods. Calculate a regression model between the two assets (and, if desired, using the bova11 index as a normalizer). Generate the spread of this relationship, its mean, standard deviation, speculative deviation, and betas (B1 and B2). Apply an ADF test without exclusion (cointegration/stationarity). Calculate the Z-score of the current exclusion (how many standard deviations are away from
FREE
Mean Volume indicator for MT5
Renaud Herve Francois Candel
Mean Volume Most indicators are based on price analysis. This indicator is based on volume. Volume is overlooked piece of information in most trading systems. And this is a big mistake since volume gives important information about market participants. Mean Volume is an indicator that can be used to spot when volume is above average. It usually means that institutional traders are active. Peak in volume can be used to confirm an entry since increased volume can sustain the move in one or anot
Volume Profile Utility
AL MOOSAWI ABDULLAH JAFFER BAQER
Volume Profile Discover where the market really trades. Make decisions based on volume, not guesswork. Volume Profile is a professional MetaTrader utility that analyzes trading activity across different price levels, allowing traders to identify where the highest concentration of market participation has occurred. Instead of focusing only on price movement over time, Volume Profile reveals the price levels where buyers and sellers have been most active, providing valuable insight into market str
AVIS IMPORTANT – LICENCE ET ACTIVATION REQUISES Instructions d’Activation : Après avoir finalisé votre achat, veuillez nous contacter immédiatement pour recevoir votre clé de licence, mot de passe ou détails d’activation. Sans ces éléments, le logiciel ne fonctionnera pas. Nous sommes là pour garantir un processus d’activation fluide et répondre à toutes vos questions. Personnalisation Multilingue Pour améliorer votre expérience de trading, nous proposons une personnalisation complète du
Elliott Wave EA
Vladimir Shumikhin
5 (1)
Conseiller Elliott Wave EA Description Elliott Wave EA  est une solution de trading professionnelle basée sur les motifs d'ondes M & W décrits par A. Merrill. Cet Expert Advisor puissant identifie et négocie les formations d'ondes avec une haute précision, offrant aux traders une solution automatisée fiable pour utiliser la théorie des ondes d'Elliott. Caractéristiques clés Reconnaissance intelligente des motifs - L'algorithme avancé identifie les motifs d'ondes M & W avec une précision exceptio
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 Key Features 1.  Total Immersion UI (The "Blackout") Chart Masking:   Upon loading, the tool turns the background, grid, and candles pitch black. This hides the noise of the market ticks, allowing you to focus purely on your performance data withou
CvdDeltaVolumes
Parasbhai N Patel
Delta + CVD & CVD Candles Order-flow indicator combining Delta (Ask–Bid), Cumulative Volume Delta (CVD), and a unique CVD-based synthetic candle system. Shows buy/sell pressure, volume aggressiveness, and momentum shifts with optional Delta histogram, CVD line, and CVD+Delta combined candles. Useful for scalping, intraday trading, divergence detection, and understanding buyer/seller dominance. Overview The Delta + CVD & CVD Candles Indicator combines multiple order-flow tools into one clean
PipsPro Scalper Gold
Hayyu Imam Muhammad
3 (2)
*This product special for XAUUSD* pair. Therefore, all additional features and strategies in future updates will be included in this product . Published at 2026.04.18 |   --> NEXT PRICE $499 USD. Please to send a private message after you make a purchase !!! PipsPro Scalper Gold (MT5) is an Expert Advisor developed exclusively for XAUUSD trading. It is compatible with both 2-digit and 3-digit brokers for the XAUUSD symbol. Before opening any position, the EA applies multiple filters to identif
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
Avant d'installer l'indicateur HeatMap assurez vous d'utiliser un broker qui vous donne accès au Depth of market (DOM) !! Cet indicateur crée sur votre graphiques une heatmap vous permettant de voir les ordres limites d'achat ou de vente facilement et en temps réel. Vous avez la possibilité de changer de réglage et les couleurs de la HeatMap afin de s'adapter à  tous les marchés et à tous les graphiques. Voici un exemple de réglage que vous pouvez utiliser  avec le SPX500 sur le broker AMPGloba
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. Inspired by Jim Dalton’s book “Mind Over Markets”, this indicator is designed to suit the
What Is Trend Master Pro? Trend Master Pro   is a professional-grade trend trading indicator built for MetaTrader 5. It was designed with one goal in mind — to keep you on the right side of the market at all times by combining three powerful technical tools into a single, clean, easy-to-read display directly on your price chart. Instead of cluttering your screen with multiple separate indicators, Trend Master Pro fuses an   EMA Ribbon trend filter , a   ZigZag swing point engine , and a   breako
Exp5 Duplicator
Vladislav Andruschenko
4.78 (9)
Duplicator pour MetaTrader 5 — système professionnel de duplication de positions dans un seul terminal Un Expert Advisor fiable conçu pour les traders qui veulent dupliquer automatiquement des positions déjà ouvertes dans MetaTrader 5, augmenter le volume global, appliquer leurs propres règles de lot et gérer les duplicatas avec une logique précise. C’est un outil pratique pour le trading manuel, les systèmes automatisés et la gestion plus flexible de positions déjà existantes dans un seul term
Sigma PROP
Piotr Stepien
Sigma PROP – Advanced Multi-Pair Prop Trading EA After years of in-depth research, development, and rigorous testing, Sigma PROP was created – an advanced Expert Advisor (EA) written in MQL5 and specifically designed for both prop firm challenges and professional trading accounts. Unlike conventional EAs that require manual setup on each symbol, Sigma PROP only needs to be attached to EUR/USD . From there, it automatically manages trading across AUD/CAD, AUD/NZD, and NZD/CAD , applying its stra
RSI Currency Strength Meter is a powerful and elegant multi-currency indicator that measures the real-time relative strength of the 8 major currencies using RSI logic. By calculating the smoothed performance of each currency across its major pairs and applying the RSI formula, it delivers clean and responsive strength lines that make it easy to spot which currencies are truly strong or weak at any moment. This indicator is particularly useful for visualizing currency correlations and divergence
Les acheteurs de ce produit ont également acheté
WalkForwardOptimizer MT5
Stanislav Korotky
3.78 (9)
WalkForwardOptimizer library allows you to perform rolling and cluster walk-forward optimization of expert advisers (EA) in MetaTrader 5. 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.
Binance Library MetaTrader 5 connects your Expert Advisors, indicators, and scripts to Binance.com and Binance.US directly from MetaTrader 5. It is a developer library for building custom Binance integrations inside MT5, not a standalone trading robot or copier. The library helps you add Binance instruments to Market Watch, read symbol specifications, load current and historical market data, check wallet balances, manage orders, and track open positions. It supports Spot, USD-M futures, and COI
The library is dedicated to help manage your trades, calculate lot, trailing, partial close and other functions. Lot Calculation Mode 0: Fixed Lot. Mode 1: Martingale Lot (1,3,5,8,13) you can use it in different way calculate when loss=1 ,when profit=0. Mode 2: Multiplier Lot (1,2,4,8,16) you can use it in different way calculate when loss=1 ,when profit=0. Mode 3: Plus Lot (1,2,3,4,5) you can use it in different way calculate when loss=1 ,when profit=0. Mode 4: SL/Risk Lot calculate based on s
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
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 "MQL5\Files" directory. Then it uses these files to automatically build a cluster walk forward report and rolling walk forward reports that refine it (all of them in one HTML file). Using the WalkForwardBuilder MT5 auxiliary script allows building othe
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
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
Binance Library
Hadil Mutaqin SE
5 (1)
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
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
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
AO Core
Andrey Dik
3.67 (3)
AO Core is the core of the optimization algorithm, it is a library built on the author's HMA (hybrid metaheuristic algorithm) algorithm. Pay attention to the MT5 Optimization Booster product , which makes it very easy to manage the regular MT5 optimizer . An example of using AO Core is described in the article: https://www.mql5.com/ru/articles/14183 https://www.mql5.com/en/blogs/post/756510 This hybrid algorithm is based on a genetic algorithm and contains the best qualities and properties of p
EA Toolkit
Esteban Thevenon
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 installatio
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
Applying these methods, I managed to arrive at a nuanced conclusion that is crucial to understanding the importance of unique strategies in contemporary trading. Although the neural network advisor showed impressive efficiency in the initial stages, it proved to be highly unstable in the long run. Various factors such as market fluctuations, trend changes, external events, etc. cause its operation to be chaotic and eventually lead to instability. With these experiences, I accepted the challenge
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
Cette bibliothèque est proposée comme un moyen d'utiliser directement les API d'OpenAI sur MetaTrader de la manière la plus simple possible. Pour plus d'informations sur les capacités de la bibliothèque, lisez l'article suivant : https://www.mql5.com/en/blogs/post/756098 The files needed to use the library can be found here: Manual IMPORTANT : Pour utiliser l'EA, vous devez ajouter l'URL suivante pour permettre l'accès à l'API OpenAI : comme montré sur les images ci-jointes Pour utiliser la bibl
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  
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
Kaseki
Ben Mati Mulatya
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
* * * * Trading principal xauusd, si le moment du test, il est recommandé d'ajuster à xauusd, les autres sous - jacents de Trading ne garantissent pas l'effet rentable * * * * * S'il vous plaît laissez un message pour le test (la première réponse sera donnée après l'avoir vu), afin de protéger les résultats du travail, vous devez entrer des paramètres spécifiques, les paramètres par défaut du système ne peuvent pas atteindre l'effet indiqué par le retrait de capture d'écran! S'il vous plaît l
Ce produit est en développement depuis 3 ans. C'est la base de code la plus avancée pour travailler avec tous types de codes en intelligence artificielle et apprentissage automatique dans le langage de programmation MQL5. Il a été utilisé pour créer de nombreux robots de trading et indicateurs basés sur l'IA dans MetaTrader 5. Il s'agit d'une version premium du projet open source et gratuit sur l'apprentissage automatique pour MQL5, disponible ici :  https://github.com/MegaJoctan/MALE5 . La vers
Shawrie
Kevin Kipkoech
This Pine Script implements a Gaussian Channel + Stochastic RSI Strategy for TradingView . It calculates a Gaussian Weighted Moving Average (GWMA) and its standard deviation to form an upper and lower channel. A Stochastic RSI is also computed to determine momentum. A long position is entered when the price closes above the upper Gaussian band and the Stoch RSI K-line crosses above D-line . The position is exited when the price falls back below the upper band. The script includes commission, cap
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
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
快速关仓,无需任何操作。 当前版本的一键关仓主要针对的是来不及手动关仓的情况,目前是不分交易标的类别,是对所有的持仓进行关仓。 未来可能升级的方向: 1、分类别、分标的关仓。 适用场景:开了多个标的的仓位,并且波动不一,快速频繁的波动影响了整体的判断。 2、增加只关闭盈利仓位、只关闭亏损仓位。 适用场景:持仓较多,趋势发生变化。 个人建议:一般建议选择一键全部关仓,因为如果行情与持仓方向一致,只关闭盈利仓位无形就是扩大了亏损。如果行情方向与持仓方向相反,只关闭亏损仓位,当前已盈利的后面又会变为亏损,盈利无法变现。 3、按照仓位顺序由大到小关仓、按照仓位顺序由小到大关仓。 适用 场景:行情发生波动,对于未来行情判断把握不确定的,可根据自己需求选择仓位关仓顺序,由大到小关仓的话,可以避免亏损的进一步扩大。 4、减小仓位量,保持绝对的安全距离。 适用 场景:对未来趋势相对确定,不想错过当前行情,但是认为当前持仓体量又有点大,想降低仓位。
BlitzGeist Telegram Notifier – Stay Connected to Your Trades Anywhere! BlitzGeist Telegram Notifier is a powerful tool that instantly connects your MetaTrader 5 account with Telegram . No matter where you are – you will always receive real-time notifications about your trading activity directly on your phone, PC, or any device with Telegram installed. Perfect for traders who want professional trade reporting, transparency, and risk management monitoring . ️ Key Features Easy Configuratio
突破交易策略:智能风控系统升级版‌ 当价格突破关键阻力位时,往往意味着趋势的质变时刻。我们的突破交易策略通过三重智能系统——‌动态阈值识别‌、‌量能验证机制‌和‌自适应止损算法‌,帮助交易者精准捕捉这些跃迁机会。 ‌核心优势‌: ‌智能预警‌:实时监测200+技术指标,自动标记潜在突破位 ‌风险对冲‌:突破失败时自动触发0.5秒内止损,保护本金安全 ‌多周期验证‌:结合日线/4小时/1小时数据过滤假信号 ‌实战案例‌: 2025年第二季度,该策略在现货黄金市场实现连续23次有效突破,平均持仓周期缩短至4.7小时,收益率达传统趋势策略的3.2倍。 ‌智能风控系统‌: ‌动态止盈‌:根据ATR指标自动调整止盈位,锁定利润的同时保留上行空间 ‌分级止损‌:首次突破失败后自动切换至1:1盈亏比保护模式,二次突破确认后恢复原策略 本EA依下图设置做黄金1小时图线,经长时期实盘验证年利润达到30多倍,修改参数可以用作比特币和纳斯达克指数都有很好的收益。
[Gold Intelligent Trading EA | Risk Control is Steady, Profit Breakthrough] The intelligent trading EA, which is customized for the fluctuation characteristics of gold, takes the hard-core trading system as the core, and each order is derived from the accurate judgment of market trends and supporting pressures by quantitative models, so as to eliminate subjective interference and make trading decisions more objective and efficient. Equipped with multi-dimensional risk control system, dynamic s
Questo Expert Advisor (EA) è stato progettato per offrire un'esperienza di trading automatizzata di alto livello, adatta sia ai trader principianti che a quelli esperti. Utilizzando algoritmi avanzati e tecniche di analisi del mercato, l'EA è in grado di identificare opportunità di trading redditizie con precisione e velocità. L'EA è configurabile per operare su vari strumenti finanziari, tra cui forex, indici e materie prime, garantendo una flessibilità senza pari. Le caratteristiche princip
LSTM Library
Thalles Nascimento De Carvalho
LSTM Library - Réseaux de Neurones Avancés pour MetaTrader 5 Bibliothèque Professionnelle de Réseaux de Neurones pour le Trading Algorithmique LSTM Library apporte la puissance des réseaux neuronaux récurrents à vos stratégies de trading en MQL5. Cette implémentation de niveau professionnel comprend des réseaux LSTM, BiLSTM et GRU avec des fonctionnalités avancées généralement disponibles uniquement dans des frameworks spécialisés d'apprentissage automatique. "Le secret du succès dans l'apprenti
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
```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 bi
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
Filtrer:
Aucun avis
Répondre à l'avis