IndexRaider Library

```text
A IndexRaider Library disponibiliza o motor IndexRaider como funções que podem ser chamadas pelo seu próprio programa: deteção de varredura de liquidez (SFP), direção da tendência H4, confirmação de Fair Value Gap e cálculo do tamanho de posição baseado em risco utilizado em toda a família de produtos IndexRaider.

Pode criar o seu próprio Expert Advisor, indicador ou painel utilizando exatamente as mesmas regras — a biblioteca realiza a análise e o seu programa toma as decisões.

O QUE EXPORTA

- IXR_Drive(symbol) — avança a máquina de estados de cada símbolo utilizando dados H1; pode ser chamada a cada tick ou através de um temporizador. Atua apenas uma vez por cada vela H1 concluída e devolve a fase:
  0 = inativo
  1 = varredura detetada / a aguardar confirmação
  2 = setup ativado

- IXR_Setup(symbol, direction, entry, sl, tp) — devolve os níveis do setup ativado enquanto a fase for 2:
  entrada na extremidade do gap,
  stop para além do pavio da varredura,
  alvo na extremidade oposta do intervalo varrido

- IXR_Bias(symbol) — devolve a direção da tendência H4 baseada nas EMA 20/50:
  +1, -1 ou 0

- IXR_CalcVolume(symbol, direction, entry, sl, risk_pct) — calcula o tamanho da posição de acordo com a percentagem de risco escolhida, ajustando-o ao passo de volume permitido pela corretora e verificando a distância mínima do stop, a margem livre e os limites de volume; devolve 0 quando a operação deve ser recusada em vez de utilizar uma posição demasiado grande

- IXR_Phase, IXR_Reset, IXR_SetMinRR, IXR_Version — funções de estado e configuração

COMO UTILIZAR

#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);
         // coloque a sua ordem aqui — a biblioteca nunca negoceia por si própria
        }
     }
  }

AS REGRAS INTERNAS

Um nível de swing já estabelecido (fractal de 3 velas, com 9 a 96 barras de antiguidade) é temporariamente ultrapassado pelo pavio, mas a vela fecha novamente do outro lado do nível, enquanto a tendência H4 baseada nas EMA 20/50 confirma a mesma direção.

Dentro das 12 velas seguintes, deve surgir uma vela de displacement de pelo menos 1× ATR(14), deixando um Fair Value Gap.

Os setups abaixo da relação mínima risco/retorno são descartados. O valor predefinido é 1,5 e pode ser ajustado.

Um setup ativado expira após 16 velas.

Todas as decisões são tomadas apenas com base em velas completamente fechadas — utilizando a mesma lógica estritamente causal do IndexRaider Expert Advisor e do IndexRaider Indicator.

A biblioteca realiza apenas a análise e o cálculo do tamanho da posição.

Nunca abre, modifica ou fecha posições por si própria — a execução das ordens permanece totalmente sob o controlo do seu código.

PREFERE UMA SOLUÇÃO PRONTA A UTILIZAR?

O IndexRaider Expert Advisor negoceia estes setups automaticamente.

O IndexRaider Indicator apresenta-os diretamente no gráfico.

O IndexRaider Manager adiciona execução manual com um clique e cálculo de posição baseado em risco.

Todos são produtos separados.

O trading envolve um risco significativo de perda. O desempenho passado não garante resultados futuros.
```

Produtos recomendados
ModernUI Library
Levi Dane Benjamin
Biblioteca ModernUI para MetaTrader 5 ModernUI é uma biblioteca de interface de usuário hospedada no gráfico para MetaTrader 5. Ela ajuda desenvolvedores MQL5 a criar painéis de EA mais limpos, dashboards, janelas de configuração, formulários, tabelas, diálogos, drawers e interfaces compactas de estilo trading dentro do ambiente gráfico do MT5. Ela foi criada para desenvolvedores que desejam uma camada de interface mais profissional do que objetos gráficos espalhados, mantendo ao mesmo tempo con
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 );    //复杂开单
AVISO IMPORTANTE – LICENÇA E ATIVAÇÃO OBRIGATÓRIAS =================================================== Instruções de ativação: Após concluir sua compra, entre em contato conosco imediatamente para receber sua chave de licença, senha ou dados de ativação. Sem eles, o software não funcionará. Estamos aqui para garantir um processo de ativação tranquilo e ajudá-lo com qualquer dúvida. --- Volume Delta Profile V2 Enhanced ================================ Ferramenta Profissional de Análise
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. Funciona em praticamente todos os instrumentos — pares de moedas, ações, futuros, criptomoedas — utilizando tanto volume real quanto volume de ticks. Você pode definir o intervalo do perfil automaticamente (por exemplo, uma semana, um mês, etc.) ou manualmente movendo os limites (duas linhas verticais: vermelha e azul). É exibido na forma de histograma. A largura do histograma em um determinado nível representa, de forma условная, a quantidade
Delta Profile Volume
Teresinha Moraes Correia
Descrição Técnica do Indicador – Delta Profile para MetaTrader 5 O Delta Profile é um indicador desenvolvido para o MetaTrader 5 com foco em análise detalhada do fluxo de volume dentro de um intervalo definido de candles. Ele organiza e exibe informações sobre o desequilíbrio de volumes positivos (associados a movimentos de alta) e negativos (associados a movimentos de baixa) em diferentes níveis de preço. O resultado é uma visão clara dos pontos do gráfico onde há maior concentração de negócios
Chimera Volume
Marko Milenkovic
Chimera Volume para MetaTrader 5 Análise avançada de volume e visualização da atividade de mercado O Chimera Volume é um indicador personalizado para MetaTrader 5, concebido para analisar a atividade do volume normalizado e apresentar as mudanças na participação de mercado através de um quadro visual dinâmico. O indicador processa dados de volume de ticks utilizando algoritmos de normalização adaptativa e gera uma representação estruturada da intensidade do volume, das fases de acumulação e das
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
O nível Premium é um indicador único com mais de 80% de precisão nas previsões corretas! Este indicador foi testado pelos melhores Especialistas em Negociação por mais de dois meses! O indicador do autor você não encontrará em nenhum outro lugar! A partir das imagens você pode ver por si mesmo a precisão desta ferramenta! 1 é ótimo para negociar opções binárias com um tempo de expiração de 1 vela. 2 funciona em todos os pares de moedas, ações, commodities, criptomoedas Instruções: Assim
Varre uma lista fixa de ativos (     ibov  brasil   ) no     timeframe escolhido (TimeFrame)     . Para cada par e para vários     períodos. Calcule um     modelo de regressão     entre os dois ativos (e, se desejar, usando o índice     bova11 como normalizador     ). Gera a     dispersão (spread)     dessa relação, sua     média     ,     desvio-padrão     ,     espetacular     e os     betas (B1 e B2)     . Aplicar um     teste ADF     sem exclusão (cointegração / estacionariedade). Calcula o
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
AVISO IMPORTANTE – LICENÇA E ATIVAÇÃO NECESSÁRIAS Instruções de Ativação: Após concluir sua compra, entre em contato conosco imediatamente para receber sua chave de licença, senha ou detalhes de ativação. Sem esses itens, o software não funcionará. Estamos aqui para garantir um processo de ativação tranquilo e ajudá-lo com qualquer dúvida. Personalização Multilíngue Para melhorar sua experiência de trading, oferecemos personalização completa do software em vários idiomas. Nossa equipe po
Elliott Wave EA
Vladimir Shumikhin
5 (1)
Consultor Elliott Wave EA Descrição Elliott Wave AI é uma solução profissional de trading baseada nos padrões de ondas M & W descritos por A. Merrill. Este poderoso Consultor Especialista identifica e opera formações de ondas com alta precisão, fornecendo aos traders uma solução automatizada confiável para utilizar a teoria das ondas de Elliott. Características principais Reconhecimento inteligente de padrões - Algoritmo avançado identifica padrões de ondas M & W com precisão excepcional Tecnolo
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
O indicador cria cotações atuais, que podem ser comparadas com as históricas e, com base nisso, fazer uma previsão do movimento dos preços. O indicador possui um campo de texto para navegação rápida até a data desejada. Opções: Símbolo - seleção do símbolo que o indicador exibirá; SymbolPeriod - seleção do período do qual o indicador coletará dados; IndicatorColor - cor do indicador; HorisontalShift - deslocamento das cotações desenhadas pelo indicador pelo número especificado de barras; I
Before installing the HeatMap indicator make sure you are using a broker that gives you access to the Depth of market (DOM) !! This indicator creates a heatmap on your chart allowing you to see the buy or sell limit orders easily and in real time. You have the possibility to change the setting and the colors of the HeatMap in order to adapt to all markets and all charts. Here is an example of a setting you can use with the NASDAQ100 on the AMPGlobal broker :  https://www.youtube.com/watch?v=x0Y
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 para MetaTrader 5 — sistema profissional de duplicação de posições dentro de um único terminal Um Expert Advisor confiável para traders que desejam duplicar automaticamente posições já abertas no MetaTrader 5, aumentar o volume total, aplicar regras personalizadas de lote e gerenciar as duplicatas com lógica precisa. É uma ferramenta prática para trading manual, sistemas automatizados e uma gestão mais flexível de posições já existentes dentro do mesmo terminal. O Duplicator para MT5
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
Os compradores deste produto também adquirem
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 installat
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
The following library is proposed as a means of being able to use the OpenAI API directly on the metatrader, in the simplest way possible. For more on the library's capabilities, read the following article: https://www.mql5.com/en/blogs/post/756098 The files needed to use the library can be found here: Manual IMPORTANT: To use the EA you must add the following URL to allow you to access the OpenAI API as shown in the attached images In order to use the library, you must include the following Hea
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
*****A negociação principal é XAUUD. Se testar, recomenda-se ajustar ao XAUUD. Outras metas de negociação não podem garantir rentabilidade******* Se necessitar de testar, por favor deixe uma mensagem (responderei assim que o vir). Para proteger os resultados do trabalho, é necessário introduzir parâmetros específicos. Os parâmetros predefinidos do sistema não conseguem atingir o efeito mostrado na retirada da captura de ecrã! Se necessitar de testar, por favor deixe uma mensagem (responderei
Este produto esteve em desenvolvimento nos últimos 3 anos. É a base de código mais avançada para trabalhar com todos os tipos de inteligência artificial e aprendizado de máquina na linguagem de programação MQL5. Tem sido usado para criar vários robôs de trading e indicadores com tecnologia de IA no MetaTrader 5. Esta é a versão premium de um projeto gratuito e de código aberto sobre aprendizado de máquina para MQL5, disponível aqui:  https://github.com/MegaJoctan/MALE5 . A versão gratuita tem me
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
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
快速关仓,无需任何操作。 当前版本的一键关仓主要针对的是来不及手动关仓的情况,目前是不分交易标的类别,是对所有的持仓进行关仓。 未来可能升级的方向: 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
SniperkickEA
Mohamed Maguini
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 - Redes Neurais Avançadas para MetaTrader 5 Biblioteca Profissional de Redes Neurais para Trading Algorítmico LSTM Library traz o poder das redes neurais recorrentes para suas estratégias de trading em MQL5. Esta implementação de nível profissional inclui redes LSTM, BiLSTM e GRU com recursos avançados tipicamente encontrados apenas em frameworks especializados de machine learning. "O segredo do sucesso em Machine Learning para trading está no tratamento adequado dos dados. Garbage
Mais do autor
IndexRaider MT4 é um Expert Advisor (EA) totalmente mecânico que opera varreduras de liquidez (liquidity sweeps / swing failure patterns), confirmadas por deslocamento com Fair Value Gap (FVG) no timeframe H1. É a versão do IndexRaider para MetaTrader 4. **COMO ELE OPERA** 1. **Filtro de tendência:** a EMA 20/50 no H4 define o viés direcional. 2. **Varredura de liquidez:** um nível de swing estabelecido no H1 (fractal com 9–96 candles de idade) é ultrapassado pela sombra durante uma caça aos
O IndexRaider Manager é um painel de dimensionamento de posição baseado em risco e execução de ordens para trading manual. Utiliza o mesmo motor de risco do IndexRaider Expert Advisor: introduz o preço do stop-loss, o painel calcula automaticamente o tamanho exato da posição de acordo com a percentagem de risco escolhida e, com um clique, envia a ordem com stop-loss e take-profit já definidos. Nota: as setas de varredura de liquidez e as zonas de gap mostradas em algumas capturas de ecrã perte
O Indicador IndexRaider identifica configurações de reversão baseadas em varreduras de liquidez em CFDs de índices — é a versão gráfica do IndexRaider Expert Advisor e utiliza as mesmas regras de deteção. O indicador desenha sinais e envia alertas, mas não executa operações. O QUE ELE MARCA (GRÁFICO H1) * Setas de varredura de liquidez: um nível de swing já estabelecido (fractal de 3 velas, com 9 a 96 barras de antiguidade) é temporariamente ultrapassado durante uma caça aos stops, mas a vela
```text A IndexRaider Library disponibiliza o motor IndexRaider sob a forma de funções que podem ser chamadas pelo seu próprio programa: deteção de varreduras de liquidez (SFP), direção da tendência H4, confirmação de Fair Value Gap e cálculo do tamanho da posição baseado em risco utilizado em toda a família de produtos IndexRaider. Pode criar o seu próprio Expert Advisor, indicador ou painel utilizando as mesmas regras — a biblioteca realiza a análise e o seu programa toma as decisões. O QUE
IndexRaider é um Expert Advisor totalmente mecânico que opera varrimentos de liquidez (Swing Failure Patterns), confirmados por deslocamentos com Fair Value Gap no timeframe H1. COMO OPERA 1. Filtro de tendência: a EMA 20/50 no H4 define o viés direcional. 2. Varrimento de liquidez: um nível de swing estabelecido no H1 (fractal com 9 a 96 velas de antiguidade) é ultrapassado por uma caça aos stops, mas a vela fecha novamente do outro lado desse nível. 3. Deslocamento: dentro das 12 velas se
O IndexRaider Manager é um painel de cálculo do tamanho da posição com base no risco e de execução de ordens para trading manual. Utiliza o mesmo motor de risco do Expert Advisor IndexRaider: você introduz o preço do seu stop-loss, o painel calcula o tamanho exato da posição de acordo com a percentagem de risco escolhida e, com um único clique, coloca a ordem com stop-loss e take-profit já configurados. Nota: as setas de varredura de liquidez e as zonas de gap mostradas em algumas capturas de
O Indicador IndexRaider identifica configurações de reversão baseadas em varreduras de liquidez em CFDs de índices — é a versão gráfica do IndexRaider Expert Advisor e utiliza as mesmas regras de deteção. O indicador desenha sinais e envia alertas, mas não executa operações. O QUE ELE MARCA (GRÁFICO H1) * Setas de varredura de liquidez: um nível de swing já estabelecido (fractal de 3 velas, com 9 a 96 barras de antiguidade) é temporariamente ultrapassado durante uma caça aos stops, mas a vela
Filtro:
Sem comentários
Responder ao comentário