IndexRaider Library

Библиотека IndexRaider предоставляет движок IndexRaider в виде вызываемых функций: определение снятия ликвидности (SFP), направление тренда H4, подтверждение Fair Value Gap и расчёт размера позиции на основе риска, используемые во всей линейке продуктов IndexRaider. Вы можете создать собственного Expert Advisor, индикатор или торговую панель на тех же правилах — библиотека выполняет анализ, а решения принимает ваша программа.

ЧТО ОНА ЭКСПОРТИРУЕТ

- IXR_Drive(symbol) — продвигает внутренний автомат состояний для каждого символа на данных H1; вызывайте функцию на каждом тике или по таймеру. Она срабатывает один раз на каждый завершённый H1-бар и возвращает фазу: 0 — ожидание, 1 — снятие ликвидности обнаружено / ожидание подтверждения, 2 — сетап активирован
- IXR_Setup(symbol, direction, entry, sl, tp) — возвращает уровни активированного сетапа, пока фаза равна 2 (вход на границе гэпа, стоп за фитилём снятия ликвидности, цель — на противоположной границе диапазона, с которого была снята ликвидность)
- IXR_Bias(symbol) — направление тренда H4 по EMA 20/50: +1, -1 или 0
- IXR_CalcVolume(symbol, direction, entry, sl, risk_pct) — рассчитывает размер позиции для выбранного процента риска, округляет его в соответствии с шагом объёма брокера и проверяет минимальное расстояние стопа, свободную маржу и ограничения по объёму; возвращает 0, если сделку следует отклонить, а не открывать с чрезмерным риском
- IXR_Phase, IXR_Reset, IXR_SetMinRR, IXR_Version — состояние и настройки

КАК ИСПОЛЬЗОВАТЬ

#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);
         // разместите свой ордер здесь — библиотека сама никогда не торгует
        }
     }
  }

ПРАВИЛА ВНУТРИ

Сформированный свинговый уровень (3-свечный фрактал возрастом от 9 до 96 баров) прокалывается фитилём, но свеча закрывается обратно за этим уровнем, при этом направление должно совпадать с трендом H4 по EMA 20/50.

В течение следующих 12 баров должна сформироваться импульсная свеча размером не менее 1× ATR(14), оставляющая Fair Value Gap. Сетапы с соотношением прибыль/риск ниже установленного минимума (по умолчанию 1,5, значение можно изменить) отбрасываются, а активированный сетап истекает через 16 баров.

Все решения принимаются только по полностью закрытым свечам — используется та же строго причинная логика, что и в IndexRaider Expert Advisor и IndexRaider Indicator.

Библиотека выполняет только анализ и расчёт размера позиции. Она никогда самостоятельно не открывает, не изменяет и не закрывает позиции — исполнение ордеров полностью остаётся в вашем коде.

ПРЕДПОЧИТАЕТЕ ГОТОВОЕ РЕШЕНИЕ?

IndexRaider Expert Advisor автоматически торгует этими сетапами, IndexRaider Indicator отображает их на графике, а IndexRaider Manager добавляет исполнение ручных сделок в один клик с расчётом риска. Все они являются отдельными продуктами.

Торговля связана со значительным риском убытков. Прошлые результаты не гарантируют будущих результатов.
Рекомендуем также
Библиотека ModernUI для MetaTrader 5 ModernUI — это библиотека пользовательского интерфейса для MetaTrader 5, размещаемая прямо на графике. Она помогает разработчикам MQL5 создавать более аккуратные панели советников, дашборды, окна настроек, формы, таблицы, диалоги, боковые панели и компактные торговые интерфейсы внутри среды графика MT5. Она создана для разработчиков, которым нужен более профессиональный интерфейсный слой, чем набор разрозненных графических объектов, но при этом важно сохранит
Order Book, известный также как Market Book, глубина рынка, стакан цен, Level 2, - это предоставляемая брокером динамически обновляемая таблица с данными по текущим объемам торговых заявок на покупку и продажу для различных уровней цен вблизи Bid и Ask конкретного финансового инструмента. MetaTrader 5 предоставляет возможность трансляции стакана цен , но только в реальном времени. Данная библиотека OrderBook History Library позволяет считывать состояния стакана в прошлом из архивов, создаваемых
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 );    //复杂开单
ВАЖНОЕ УВЕДОМЛЕНИЕ – ТРЕБУЕТСЯ ЛИЦЕНЗИЯ И АКТИВАЦИЯ ==================================================== Инструкция по активации: После завершения покупки немедленно свяжитесь с нами, чтобы получить лицензионный ключ, пароль или данные для активации. Без них программное обеспечение не будет работать. Мы здесь, чтобы обеспечить бесперебойный процесс активации и ответить на любые ваши вопросы. --- 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
Индикатор объемного профиля рынка + умный осциллятор. Работает практически на всех инструментах-валютные пары, акции, фьючерсы, криптовалюта, на реальных объемах и на тиковых. Можно задавать как автоматическое определение диапазона построения профиля, например, за неделю или месяц и т.д. так и устанавливать диапазон вручную передвигая границы (две вертикальные линии красная и синяя). Показывается в виде гистограммы. Ширина гистограммы на данном уровне означает, условно, количество сделок, пр
Техническое описание индикатора – Delta Profile для MetaTrader 5 Delta Profile – это индикатор, разработанный для MetaTrader 5, предназначенный для детального анализа потока объёмов в пределах заданного диапазона свечей. Он структурирует и отображает информацию о дисбалансе положительных объёмов (связанных с движением вверх) и отрицательных объёмов (связанных с движением вниз) на различных ценовых уровнях. В результате пользователь получает чёткое представление о тех участках графика, где сосред
Chimera Volume для MetaTrader 5 Продвинутый анализ объема и визуализация рыночной активности Chimera Volume — это пользовательский индикатор для MetaTrader 5, разработанный для анализа нормализованной активности объема и отображения изменений в рыночном участии через динамическую визуальную структуру. Индикатор обрабатывает данные тикового объема, используя алгоритмы адаптивной нормализации, и генерирует структурированное представление интенсивности объема, фаз накопления и сдвигов активности в
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
Premium level - это уникальный индикатор с точностью правильных прогнозов  более 80%!  Данный индикатор тестировался более двух месяцев лучшими Специалистами в области Трейдинга!  Индикатор авторский такого вы больше не где не найдете!  По скриншотах можете сами увидеть точностью данного инструмента!  1 отлично подходит для торговли бинарными опционами со временем экспирации на 1 свечу. 2 работает на всех валютных парах, акциях, сырье, криптовалютах Инструкция: Как только появляется красная стре
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 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
ВАЖНОЕ УВЕДОМЛЕНИЕ – ТРЕБУЕТСЯ ЛИЦЕНЗИЯ И АКТИВАЦИЯ Инструкции по активации: После завершения покупки свяжитесь с нами незамедлительно, чтобы получить лицензионный ключ, пароль или данные для активации. Без них программное обеспечение не будет функционировать. Мы здесь, чтобы обеспечить бесперебойный процесс активации и ответить на любые ваши вопросы. Многоязычная настройка Для улучшения вашего торгового опыта мы предлагаем полную кастомизацию программного обеспечения на нескольких языках.
Elliott Wave EA
Vladimir Shumikhin
5 (1)
Советник Elliott Wave EA Описание Elliott Wave EA - это профессиональное торговое решение, основанное на M & W волновых паттернах, описанных А. Мерриллом. Этот мощный Эксперт Советник идентифицирует и торгует волновыми формациями с высокой точностью, предоставляя трейдерам надежное автоматизированное решение для использования теории волн Эллиотта. Ключевые особенности Интеллектуальное распознавание паттернов - Продвинутый алгоритм идентифицирует M & W волновые паттерны с исключительной точност
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
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
Индикатор строит текущие котировки, которые можно сравнить с историческими и на этом основании сделать прогноз ценового движения. Индикатор имеет текстовое поле для быстрой навигации к нужной дате. Параметры : Symbol - выбор символа, который будет отображать индикатор; SymbolPeriod - выбор периода, с которого индикатор будет брать данные; IndicatorColor - цвет индикатора; Inverse - true переворачивает котировки, false - исходный вид; Далее идут настройки текстового поля, в которое можно ввес
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
Профиль Рынка (Market Profile) определяет ряд типов дней, которые помогают трейдеру распознать поведение рынка. Ключевая особенность - это область значений (Value Area), представляющая диапазон ценового действия, в котором произошло 70% торговли. Понимание области значений может помочь трейдерам вникнуть в направление рынка и установить торговлю с более высокими шансами на успех. Это отличное дополнение к любой системе, которую вы возможно используете. Blahtech Limited представляет сообществу Me
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 для MetaTrader 5 — профессиональный дубликатор позиций внутри одного терминала Надёжный советник для трейдеров, которым нужно автоматически дублировать уже открытые позиции в MetaTrader 5, увеличивать объём, применять собственные настройки лота и сопровождать дубликаты по заданным правилам. Это удобный инструмент для ручной торговли, алгоритмических систем и гибкого управления уже существующими позициями внутри одного терминала. Duplicator для MT5 не открывает позиции по собственной
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
С этим продуктом покупают
Библиотека WalkForwardOptimizer позволяет выполнить пошаговую и кластерную форвард-оптимизацию ( walk-forward optimization ) советника в МетаТрейдер 5. Для использования необходимо включить заголовочный файл WalkForwardOptimizer.mqh в код советника и добавить необходимые вызовы функций. Когда библиотека встроена в советник, можно запускать оптимизацию в соответствии с процедурой, описанной в Руководстве пользователя . По окончанию оптимизации промежуточные результаты сохраняются в CSV-файл и наб
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
Эта библиотека предназначена для помощи в управлении сделками, расчета лота, трейлинга, частичного закрытия и других функций. Расчет лота Mode 0: фиксированный лот. Mode 1: Лот по Мартингейлу (1,3,5,8,13) может по-разному использоваться для расчета при убытке=1, при прибыли=0. Mode 2: Лот по Множителю (1,2,4,8,16) может по-разному использоваться для расчета при убытке=1, при прибыли=0. Mode 3: Лот по Инкременту (1,2,3,4,5) может по-разному использоваться для расчета при убытке=1, при прибыли=0.
Друзья, присоединяйтесь к нам! Задать свои вопросы и пообщаться с единомышленниками: MetaCOT Public Group Информационный канал MetaCOT: новости, отчетность CFTC и сигналы: MetaCOT Channel Желаю нам удачной торговли и новых прибыльных сигналов! Внимание! Последнее время, некоторые страны блокируют доступ к сайту cftc.gov . Из-за этого, пользователи из этих стран ставят низкий рейтинг продукту. MetaCOT всегда придерживался самых высоких стандартов качества и не связан с этими блокировками. Пож
Это упрощенная и эффективная версия библиотеки для walk-forward анализа торговых экспертов. Она собирает данные о торговле эксперта во время процесса его оптимизации в тестере MetaTrader и сохраняет их в промежуточные файлы в каталоге MQL5\Files. Затем на основе этих файлов автоматически строится кластерный walk-forward отчет и уточняющие его rolling walk-forward отчеты (все они - в одном HTML-файле). С помощью вспомогательного скрипта WalkForwardBuilder MT5 можно на тех же промежуточных файлах
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
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 - ядро алгоритма оптимизации, это библиотека, построенная на авторском алгоритме HMA (hybrid metaheuristic algorithm). Обратите внимание на продукт  MT5 Optimization Booster , который позволяет очень просто управлять штатным оптимизатором МТ5. Пример применения AO Core описан в статье: https://www.mql5.com/ru/articles/14183 https://www.mql5.com/ru/blogs/post/756509 Данный гибридный алгоритм основан на генетическом алгоритме и содержит лучшие качества и свойства популяционных алгоритмов
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
Применяя эти методы, мне удалось прийти к тонкому выводу, который имеет решающее значение для понимания важности уникальных стратегий в современной торговле. Хотя нейросетевой советник показал впечатляющую эффективность на начальных этапах, в долгосрочной перспективе он оказался крайне нестабильным. Различные факторы, такие как колебания рынка, изменения тенденций, внешние события и т. д., приводят к хаотичности его работы и в конечном итоге приводят к нестабильности. Получив этот опыт, я принял
Introducing "TG Trade Service Manager" — your all-in-one solution for seamless trade management in both MQL4 and MQL5 environments. With a focus on speed, reliability, and convenience, this powerful library simplifies the complexities of trade execution and management, empowering developers with a single interface for enhanced efficiency. Metatrader4 Version   |   All Products   |   Contact   Key Features: Unified Interface : TG Trade Service Manager" provides a unified interface for   MQL4   an
Данная библиотека предлагается как средство для использования API OpenAI напрямую в MetaTrader максимально простым способом. Для получения дополнительной информации о возможностях библиотеки прочитайте следующую статью: https://www.mql5.com/en/blogs/post/756106 The files needed to use the library can be found here: Manual ВАЖНО: Для использования EA необходимо добавить следующий URL для доступа к API OpenAI  как показано на приложенных изображениях Для использования библиотеки необходимо включит
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
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
* * * * * Основные транзакции XAUUSD, если во время тестирования рекомендуется настроить на XAUUSD, другие торговые объекты не могут гарантировать рентабельность * * * * * * * * * * * * * * * * Оставьте сообщение, которое нужно протестировать (вы ответите в первый раз после просмотра), чтобы защитить результаты работы, необходимо ввести определенные параметры, параметры по умолчанию системы не могут достичь эффекта, показанного в отзыве скриншота! Оставьте сообщение, которое нужно протестиров
Этот продукт разрабатывался в течение последних 3 лет. Это самая продвинутая кодовая база для работы со всеми видами кода искусственного интеллекта и машинного обучения на языке программирования MQL5. Он использовался для создания множества торговых роботов и индикаторов на основе ИИ в MetaTrader 5. Это премиум-версия бесплатного и открытого проекта по машинному обучению для MQL5, ссылка здесь:  https://github.com/MegaJoctan/MALE5 . Бесплатная версия имеет меньше функций, менее документирована и
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 - Продвинутые нейронные сети для MetaTrader 5 Профессиональная библиотека нейронных сетей для алгоритмической торговли LSTM Library предоставляет мощность рекуррентных нейронных сетей для ваших торговых стратегий в MQL5. Эта профессиональная реализация включает сети LSTM, BiLSTM и GRU с продвинутыми функциями, обычно доступными только в специализированных фреймворках машинного обучения. "Секрет успеха в машинном обучении для трейдинга заключается в правильной обработке данных. Garba
Другие продукты этого автора
IndexRaider MT4 — это полностью механический торговый советник (Expert Advisor), который торгует снятия ликвидности (liquidity sweeps / swing failure patterns), подтверждённые импульсным движением с формированием Fair Value Gap (FVG) на таймфрейме H1. Это версия IndexRaider для MetaTrader 4. **КАК ОН ТОРГУЕТ** 1. **Фильтр тренда:** EMA 20/50 на H4 определяет направление торговли. 2. **Снятие ликвидности:** сформированный свинговый уровень на H1 (фрактал возрастом 9–96 баров) пробивается тенью
IndexRaider Manager — это панель для расчёта размера позиции на основе риска и размещения ордеров при ручной торговле. Она использует тот же механизм управления рисками, что и IndexRaider Expert Advisor: вы вводите цену стоп-лосса, панель рассчитывает точный размер позиции в соответствии с выбранным процентом риска, а одним нажатием размещает ордер с уже установленными стоп-лоссом и тейк-профитом. Примечание: стрелки снятия ликвидности и зоны гэпов, показанные на некоторых скриншотах, относятс
Индикатор IndexRaider отмечает разворотные сетапы на снятии ликвидности по индексным CFD — это графическая версия IndexRaider Expert Advisor, использующая те же правила определения сигналов. Индикатор рисует сигналы и отправляет уведомления, но сам не торгует. ЧТО ОН ОТМЕЧАЕТ (ГРАФИК H1) * Стрелки снятия ликвидности: сформированный свинговый уровень (3-свечный фрактал возрастом от 9 до 96 баров) прокалывается ценой во время сбора стопов, но свеча закрывается обратно за этим уровнем, при этом
```text IndexRaider Library предоставляет движок IndexRaider в виде вызываемых функций: определение снятия ликвидности (SFP), направление тренда H4, подтверждение Fair Value Gap и расчёт размера позиции на основе риска, используемые во всей линейке продуктов IndexRaider. Создавайте собственный Expert Advisor, индикатор или панель на основе тех же правил — библиотека выполняет анализ, а решения принимает ваша программа. ЧТО ОНА ЭКСПОРТИРУЕТ - IXR_Drive(symbol) — продвигает внутренний автомат с
IndexRaider — это полностью механический торговый советник (Expert Advisor), который торгует снятия ликвидности (Swing Failure Patterns), подтверждённые импульсным движением с формированием Fair Value Gap на таймфрейме H1. КАК ОН ТОРГУЕТ 1. Фильтр тренда: EMA 20/50 на H4 определяет направление торговли. 2. Снятие ликвидности: сформированный свинговый уровень H1 (фрактал возрастом 9–96 баров) прокалывается во время стоп-ханта, но свеча закрывается обратно за этим уровнем. 3. Импульс: в течен
IndexRaider Manager — это панель для расчёта размера позиции на основе риска и управления ордерами при ручной торговле. Она использует тот же механизм управления риском, что и Expert Advisor IndexRaider: вы вводите цену стоп-лосса, панель рассчитывает точный размер позиции в соответствии с выбранным процентом риска, а одним нажатием размещает ордер с уже установленными стоп-лоссом и тейк-профитом. Примечание: стрелки снятия ликвидности и зоны гэпов, показанные на некоторых скриншотах, относятс
Индикатор IndexRaider отмечает разворотные сетапы на снятии ликвидности по индексным CFD — это версия IndexRaider Expert Advisor для отображения на графике, использующая те же правила определения сетапов. Индикатор рисует сигналы и отправляет уведомления, но не открывает сделки. ЧТО ОН ОТМЕЧАЕТ (ГРАФИК H1) * Стрелки снятия ликвидности: сформированный ранее свинговый уровень (3-свечный фрактал возрастом от 9 до 96 баров) прокалывается ценой во время сбора стопов, но свеча закрывается обратно з
Фильтр:
Нет отзывов
Ответ на отзыв