Native Websocket

5
Простая в использовании, быстрая, асинхронная библиотека WebSocket для MQL5.

Он поддерживает:
  • ws:// и wss:// (защищенный веб-сокет "TLS")
  • текстовые и бинарные данные

Он обрабатывает:

  • фрагментированное сообщение автоматически (передача больших объемов данных)
  • кадры пинг-понга автоматически (подтверждение активности)

Преимущества:

  • DLL не требуется.
  • Установка OpenSSL не требуется.
  • До 128 соединений Web Socket из одной программы
  • Различные уровни журнала для отслеживания ошибок
  • Возможна синхронизация с виртуальным хостингом MQL5.
  • Полностью родной для MQL5.
Загрузите WSMQL.mqh по этой ссылке . Убедитесь, что загруженная библиотека MetaTrader загружена/названа как Native Websocket.ex5

Пример кода ниже:

//подключаем WSMQL.mqh — файл, содержащий все объявления, необходимые для взаимодействия с библиотекой
#include <WSMQL.mqh>
//Методы ниже
//класс CWebSocketClient {
//public:
//bool Initialized(void); //Проверяет, инициализирован ли клиент WebSocket.
//ENUM_WEBSOCKET_STATE State(void); //Возвращает текущее состояние соединения WebSocket.
//void SetMaxSendSize(int max_send_size); //Устанавливает максимальный размер отправки для сообщений WebSocket.
//bool SetOnMessageHandler(OnWebsocketMessage callback); //Устанавливает функцию обратного вызова для обработки входящих текстовых сообщений.
//bool SetOnPingHandler(OnWebsocketMessage callback); //Устанавливает функцию обратного вызова для обработки входящих сообщений ping.
//bool SetOnPongHandler(OnWebsocketMessage callback); //Устанавливает функцию обратного вызова для обработки входящих сообщений Pong.
//bool SetOnCloseHandler(OnWebsocketMessage callback); //Устанавливает функцию обратного вызова для обработки закрытия соединений WebSocket.
//bool SetOnBinaryMessageHandler(OnWebsocketBinaryMessage callback); //Устанавливает функцию обратного вызова для обработки входящих двоичных сообщений.

//bool Connect(const string url, const uint port = 443, const uint timeout = 5000, bool use_tls = true, ENUM_LOG_LEVEL log_level = LOG_LEVEL_NONE); //Подключаемся к серверу WebSocket.
//bool ConnectUnsecured(const string url, const uint port = 80, const uint timeout = 5000, ENUM_LOG_LEVEL log_level = LOG_LEVEL_NONE); //Подключается к серверу WebSocket, используя незащищенное соединение.
//bool ConnectSecured(const string url, const uint port = 443, const uint timeout = 5000, ENUM_LOG_LEVEL log_level = LOG_LEVEL_NONE); //Подключается к серверу WebSocket, используя защищенное соединение.
//bool Disconnect(ENUM_CLOSE_CODE close_code = NORMAL_CLOSE, const string msg = ""); //Отключаемся от сервера WebSocket.
//int SendString(const string message); //Отправляет string сообщение на сервер WebSocket.
//int SendData(uchar& message_buffer[]); //Отправляет двоичные данные на сервер WebSocket.
//int SendPong(const string msg = ""); //Отправляет сообщение Pong на сервер WebSocket.
//int SendPing(const string msg); //Отправляет сообщение ping на сервер WebSocket.
//uint ReadString(string& out); //Читает string сообщение с сервера WebSocket.
//uint ReadStrings(string& out[]); //Читает несколько строковых сообщений с сервера WebSocket.
//uint OnReceiveString(); //Получает и обрабатывает входящие строковые сообщения.
//uint OnReceiveBinary(); //Получает и обрабатывает входящие двоичные сообщения.
//uint OnMessage(); //Получает и обрабатывает входящие сообщения WebSocket.
//};
//Создаём экземпляр Клиента
CWebSocketClient client;//Я объявил это глобально, потому что этого требует OnPingMessage
//+------------------------------------------------------------------+
//| Script program start function                                    |
//+------------------------------------------------------------------+
void OnStart() {

    //Проверяем, инициализирован ли клиент
    if (!client.Initialized()) {
        ZeroHandle();//Очистка всех клиентов
        return;
    }
    //Устанавливаем обработчик OnMessage для получения текстовых сообщений
    client.SetOnMessageHandler(OnWMessage);//используем SetOnBinaryMessageHandler для двоичных сообщений
    //Устанавливаем обработчик OnPing для получения пинг-сообщений, Pong будет автоматически отправляться при отсутствии этого обработчика
    client.SetOnPingHandler(OnPingMessage);//используем SetOnPongHandler для сообщений понг
    //URL-адрес и объявление сообщения
    string url = "stream.binance.com/ws";//или wss://stream.binance.com/ws
    string msg = "{\"params\":[\"btcusdt@bookTicker\"],\"method\":\"SUBSCRIBE\",\"id\":27175}";
    //ВНИМАНИЕ: убедитесь, чтоstream.binance.com добавлен в список WebRequest на вкладке «Параметры» -> «Советники».
    //Подключаемся к серверу WebSocket
    //if (!client.Connect(url/*, 80, 5000, false, LOG_LEVEL_INFO */)) { //Полностью настраиваемый
    //if (!client.ConnectUnsecured(url/*, 80, 5000, LOG_LEVEL_INFO */)) { //Для соединения без TLS (незащищенного)
    if (!client.ConnectSecured(url/*, 443, 5000, LOG_LEVEL_INFO */)) {
        ZeroHandle();//Очистка всех клиентов
        return;
    }
    //Отправляем string сообщение
    client.SendString(msg);
    //Обрабатываем сообщения, пока скрипт не будет остановлен
    while (true) {
        if (IsStopped())
            break;
        //Получаем все сообщения и обрабатываем их, используя соответствующие On{Message | BinaryMessage | Ping | Pong | Close} callback (обработчик)
        uint frames = client.OnMessage();
        //Получаем строковые сообщения и обрабатываем их с помощью обратного вызова OnMessage
        // uint frames = client.OnReceiveString();
        Print("Обработано кадров: ", frames);
    }
    //Отключаемся от сервера WebSocket
    Print("Отключение...");
    if (client.Disconnect()) {
        ZeroHandle();//Очистка всех клиентов
        Print("Отключено!");
    }
}
//+------------------------------------------------------------------+
void OnWMessage(string message) {
    Print(message);
}
//+------------------------------------------------------------------+
void OnPingMessage(string message) {
    Print("пинг получен:", message);
    if (client.SendPong() > 0) {
        Print("Понг успешно отправлен.");
    }
    else {
        Print("Не удалось отправить понг.");
    }
}
//Пример вывода:
//{"result":null,"id":27175}
//Обработано кадров: 1
//---
//{"u":35893555769,"s":"BTCUSDT","b":"27812.78000000","B":"7.14299000","a":"27812.79000000","A":"0.81665000"}
//{"u":35893555770,"s":"BTCUSDT","b":"27812.78000000","B":"7.14299000","a":"27812.79000000","A":"0.82309000"}
//{"u":35893555771,"s":"BTCUSDT","b":"27812.78000000","B":"7.14964000","a":"27812.79000000","A":"0.82309000"}
//Обработано кадров: 3
//---
//Обработано кадров: 1
//получен пинг: пинг
//Понг отправлен успешно.

Не стесняйтесь обращаться ко мне за поддержкой и вопросами до/после покупки.

https://www.mql5.com/en/users/nikkirachael

Отзывы 7
Ricardo N
33
Ricardo N 2025.08.17 09:38 
 

This library is amazing. I had some issues because the library was not in the right folder but after fixing that, everything worked. Good job. PS: It seems that LOG_LEVEL_NONE is not working, I get debug level with that or maybe I'm not using it right, anyway, I put LOG_LEVEL_ERROR to not be spammed by logs

thomasb892
19
thomasb892 2024.10.23 14:25 
 

This, Native WebSocket library by Racheal Samson is fast, handles secure wss:// connections effortlessly, and can manage large data transfers with ease.

I love that it's fully native to MQL5, with no extra installations required.

What really stood out was the author's quick response and genuine willingness to help, making the experience even smoother. Highly recommend both the library and the excellent support behind it!

Franck
21
Franck 2024.08.13 13:58 
 

Awesome support from Racheal, thanks for your help setting up the library, keep up the great work ;)

Рекомендуем также
* * * * * Основные транзакции XAUUSD, если во время тестирования рекомендуется настроить на XAUUSD, другие торговые объекты не могут гарантировать рентабельность * * * * * * * * * * * * * * * * Оставьте сообщение, которое нужно протестировать (вы ответите в первый раз после просмотра), чтобы защитить результаты работы, необходимо ввести определенные параметры, параметры по умолчанию системы не могут достичь эффекта, показанного в отзыве скриншота! Оставьте сообщение, которое нужно протестиров
Утилита для автоматического управления ордерами и рисками.   Позволяет взять максимум с прибыли и ограничить свои убытки.   Создан практикующим трейдером для трейдеров.   Утилита  проста в использовании,  работает с любыми рыночными ордерами, открытыми трейдером вручную или при помощи советников. Может фильтровать сделки по магическому номеру. Одновременно утилита может работать с любым количеством ордеров.  Имеет такие функции: 1. В ыставление уровней стоплосс и тейкпрофит; 2. З акрытие сделок
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 );    //复杂开单
Episode Health Monitor Episode Health Monitor is a trading utility for MetaTrader 5 designed to analyze the real-time condition of active trading positions directly on the chart. The tool evaluates the current “trading episode” - a group of open positions - and provides a structured view of risk, stability, and distance to potential failure. Instead of relying only on profit/loss or price movement, it helps identify whether the current position is stable, weakening, or approaching a critical st
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
Exp5 Duplicator
Vladislav Andruschenko
4.78 (9)
Duplicator для MetaTrader 5 — профессиональный дубликатор позиций внутри одного терминала Надёжный советник для трейдеров, которым нужно автоматически дублировать уже открытые позиции в MetaTrader 5, увеличивать объём, применять собственные настройки лота и сопровождать дубликаты по заданным правилам. Это удобный инструмент для ручной торговли, алгоритмических систем и гибкого управления уже существующими позициями внутри одного терминала. Duplicator для MT5 не открывает позиции по собственной
️ 1. Interactive User Interface (UI) Dual-Tab System: Cleanly separates execution tools (TRADE) from configuration (️ SETTINGS) to keep the chart clutter-free. Dark/Light Mode: Instantly switch between themes using the ️/ emoji button to match your chart background. Live P&L Dashboard: Real-time display of Account Balance, Equity, Floating Profit/Loss (in USD and %), Total Positions (Buys/Sells), Total Lot Exposure, and current Spread. On-Chart Direct Editing: Change any setting (Lot Size,
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
Premium level - это уникальный индикатор с точностью правильных прогнозов  более 80%!  Данный индикатор тестировался более двух месяцев лучшими Специалистами в области Трейдинга!  Индикатор авторский такого вы больше не где не найдете!  По скриншотах можете сами увидеть точностью данного инструмента!  1 отлично подходит для торговли бинарными опционами со временем экспирации на 1 свечу. 2 работает на всех валютных парах, акциях, сырье, криптовалютах Инструкция: Как только появляется красная стре
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
Order Book, известный также как Market Book, глубина рынка, стакан цен, Level 2, - это предоставляемая брокером динамически обновляемая таблица с данными по текущим объемам торговых заявок на покупку и продажу для различных уровней цен вблизи Bid и Ask конкретного финансового инструмента. MetaTrader 5 предоставляет возможность трансляции стакана цен , но только в реальном времени. Данная библиотека OrderBook History Library позволяет считывать состояния стакана в прошлом из архивов, создаваемых
RRtoolBox
David Ruiz Moreno
RRtoolbox - Professional Tools: Risk:Reward Trading Tool (SL/TP Horizontals + Pending orders + Diagonals), Alerts set on trend lines (for alerts on diagonal levels), SelfManagement (BE, partials...), close/cancelling by time, Statistics, Info and trading on chart. One-Click Trading with Visual Risk:Reward Management RRtoolbox is a comprehensive trading panel that combines one-click order execution,  statistics and  powerful visual Risk:Reward tools, alerts set with trendlines, on chart butt
Best Tested Pairs :-  Step Index (Also can use on other pairs which spread is lowest) How does the Magic Storm work The Magic Storm will commence only if the Initial Trade becomes a losing trade. In case the initial trade is a profitable one, or has been closed by the trader there is no need for the Magic Stormto be initiated. Let’s assume that the initial trade was a 1 lot buy trade with Recovery Zone Range Pips is 50 and Recovery Zone Exit Pips is 150 pips. The take profit for this tr
MT5 To Telegram Copier
Levi Dane Benjamin
3 (2)
Отправляйте полностью настраиваемые сигналы из MT5 в Telegram и станьте поставщиком сигналов! Этот продукт представлен в простом в использовании и визуально привлекательном графическом интерфейсе. Настройте свои параметры и начните использовать продукт в течение нескольких минут! Руководство пользователя + Демо  | Версия для МТ4 | Дискорд-версия Если вы хотите попробовать демо-версию, перейдите к Руководству пользователя. Отправитель MT5 To Telegram НЕ работает в тестере стратегий. Возможности
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
DDKiller Pro
Njaratahiry Michael Randrianiaina
Stop Blowing Your Account. Once and For All. DDKiller Pro is the MT5 risk guardian that runs silently on your chart and shuts down trading the moment you hit a limit — whether you're grinding a prop firm challenge or managing your own CFD account. The problem every trader knows: You set your rules. You break them anyway. One revenge trade. One overleveraged position. One session that erases a month of gains. DDKiller Pro removes that decision from your hands entirely. What it does: The second yo
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
##   ONLY GOLD ##   Тiльки Золото ## **Mercaria Professional Trading Zones - Complete Guide** ## **Mercaria Professional Trading Zones - Повний посібник** ### **How Mercaria Zones Work / Як працюють зони Mercaria** **English:** Mercaria Zones is an advanced trading indicator that identifies high-probability support and resistance areas using ZigZag extremes combined with mathematical zone calculations. The indicator works on multiple timeframes simultaneously, providing a comprehensive view
Inverted_Chart_EA Utility Expert Advisor Inverted_Chart_EA creates and maintains a mirror-inverted chart of any symbol and timeframe. It automatically generates a custom instrument (e.g. US30_INV ) and keeps its price history updated in real time, with bars mirrored around a chosen pivot. This utility gives traders a new way to analyze the market from a different perspective by flipping the chart upside down. Why use an inverted chart? Highlight hidden patterns – price formations that look ordin
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.
Trade Copier Professional — Локальное решение для копирования сделок  Trade Copier Professional — это надёжная локальная система копирования сделок для MetaTrader 4/5. Она позволяет трейдерам мгновенно дублировать позиции на нескольких счетах на одном компьютере, оснащена встроенными средствами безопасности и профессиональной панелью управления.   Обзор   Советник работает в режимах Master и Slave из одного файла, с лёгким переключением. Сделки могут копироваться между терминалами MT4 и MT5 бе
SL TP Manager Utility MT5
AL MOOSAWI ABDULLAH JAFFER BAQER
SL-TP Manager Utility for MT5 - Professional Risk Management Tool Advanced Position Protection & Profit Management SL-TP Manager Utility is a powerful, intuitive tool designed for traders who want precise control over their risk management. This utility provides a sleek interface for setting, modifying, and managing your Stop Loss, Take Profit, and Trailing Stop levels with just a few clicks. Key Features: Dual Mode Operation: Set values in pips or absolute price with a simple toggle Independent
ALIEN DASHBOARD FULL EDITION – Professional ICT & Precision Trading Dashboard for MT5 ( HYBRID ENGINE ) Overview The   Alien Dashboard Full Edition   is a comprehensive, all‑in‑one technical indicator for MetaTrader 5 that merges the most powerful concepts from Inner Circle Trader (ICT) methodology with advanced precision‑entry logic, multi‑timeframe analysis, and an intuitive on‑chart dashboard. Designed for serious traders who want to visualise institutional order flow, identify high‑probabili
Margin Call Shield – Defend Your Margin on Your Terms Margin Call Shield is a tool for MetaTrader 5 traders who want to decide for themselves which open positions are closed during margin call situations before the platform does so automatically based on its internal rules. By default, the broker or platform decides which positions to close, often using undisclosed algorithms. Margin Call Shield lets you set this order according to your own strategy. Why Was Margin Call Shield Created? In a mar
Trade Assistant 38 in 1
Makarii Gubaydullin
4.91 (23)
Многофункциональная утилита: калькулятор лота, сеточные ордера, индикатор Price Action, менеджер ордеров, рассчёт R/R, и многое другое Демо-веpсия  |   Инструкция  |   Версия для MT4 Утилита не работает в тестере стратегий: вы можете скачать демо-версию ЗДЕСЬ , чтобы протестировать продукт перед покупкой. Напишите мне  если есть вопросы / идеи по улучшению / в случае найденного бага Упроситите и сделайте вашу торговлю быстрее, при этом расширяя стандартные возможности терминала. 1. Открытие но
Mt5TradeCopier
Mcblastus Gicharu Ndiba
Forex Trade copier MT5.  It copies forex trades, positions, orders from any accounts to any other account,  MT5 even multiple accounts. The unique copying algorithm exactly copies all trades from the master account to your client account. It is also noted for its high operation speed and Tough error handling. It also can copy from demo account to live account too. It is one of the best free trade copiers that can do ,  MT5 or to multiple accounts  MT5 to multiple accounts  Features of Trade Copi
Описание   Simo : инновационный робот с уникальной торговой системой Simo представляет собой революционного торгового робота, который меняет правила игры благодаря своей уникальной торговой системе. Используя анализ настроений и машинное обучение, Simo обеспечивает совершение сделок на новом уровне. Этот робот может работать на любом часовом периоде, с любой валютной парой и на сервере любого брокера. Simo использует собственный алгоритм для принятия торговых решений. Разнообразные подходы к а
BTC Trading Assistant EA (MT5) Manual trading assistant that helps place and manage trades with automated risk and stop management. Overview BTC Trading Assistant EA is a utility Expert Advisor for MetaTrader 5 intended for manual traders. It provides a chart interface to execute BUY/SELL/CLOSE actions and automates selected trade management functions such as position sizing, initial SL/TP placement, break-even, trailing stop and optional partial profit taking. This EA does not generate trade si
Breakevan Utility
Jose Luis Thenier Villa
BreakEvan Utility  Is a simple tool in a panel with this utilities: This utility will draw a Golden Line in the chart applied showing the breakeven price, considering all the positions opened for that specific symbol. Also the information panel shows: Balance Breakeven Price for that chart Force Breakeven (for that symbol) as ON/OFF Force Breakeven Global (takes into account all trades opened) as ON/OFF Total Lots opened for Symbol Total Lots opened Global And two buttons: Force Breakeven: Whe
Russian Этот индикатор служит передовым помощником по анализу графиков для трейдеров, предпочитающих торговлю по графическим паттернам. Он разработан для снижения нагрузки при визуальном анализе и повышения точности извлечения прибыли. Основные преимущества данного индикатора с практической точки зрения: 1. Автоматическое распознавание паттернов (Automated Pattern Detection) Экономия времени и снижение предвзятости: Вам больше не нужно вручную чертить трендовые линии. Индикатор находит ценовые р
С этим продуктом покупают
Библиотека WalkForwardOptimizer позволяет выполнить пошаговую и кластерную форвард-оптимизацию ( walk-forward optimization ) советника в МетаТрейдер 5. Для использования необходимо включить заголовочный файл WalkForwardOptimizer.mqh в код советника и добавить необходимые вызовы функций. Когда библиотека встроена в советник, можно запускать оптимизацию в соответствии с процедурой, описанной в Руководстве пользователя . По окончанию оптимизации промежуточные результаты сохраняются в CSV-файл и наб
Binance Library MetaTrader 5 позволяет использовать его в советниках для торговли и индикаторах для бирж Binance.com и Binance.us напрямую из терминала. Библиотека поддерживает все классы активов на бирже: Spot, USD-M и COIN-M фьючерсы. Доступны все необходимые функции для торговой деятельности: Добавление инструментов с Binance в список символов MetaTrader 5 Получение информации о парах и спецификациях Получение Ask, Bid и времени последней сделки по всем парам Загрузка исторических данных для
Эта библиотека позволит вам управлять сделками с использованием любого вашего советника, и ее очень легко интегрировать в любой советник, что вы можете сделать самостоятельно с помощью кода сценария, упомянутого в описании, а также демонстрационных примеров на видео - Размещайте лимитные ордера, SL-лимитные и тейк-профитные лимитные ордера. - Размещайте ордера Market, SL-Market, TP-Market - Изменить лимитный ордер - Отменить заказ - Запрос заказов - Изменение кредитного плеча, маржи - По
突破交易策略:智能风控系统升级版‌ 当价格突破关键阻力位时,往往意味着趋势的质变时刻。我们的突破交易策略通过三重智能系统——‌动态阈值识别‌、‌量能验证机制‌和‌自适应止损算法‌,帮助交易者精准捕捉这些跃迁机会。 ‌核心优势‌: ‌智能预警‌:实时监测200+技术指标,自动标记潜在突破位 ‌风险对冲‌:突破失败时自动触发0.5秒内止损,保护本金安全 ‌多周期验证‌:结合日线/4小时/1小时数据过滤假信号 ‌实战案例‌: 2025年第二季度,该策略在现货黄金市场实现连续23次有效突破,平均持仓周期缩短至4.7小时,收益率达传统趋势策略的3.2倍。 ‌智能风控系统‌: ‌动态止盈‌:根据ATR指标自动调整止盈位,锁定利润的同时保留上行空间 ‌分级止损‌:首次突破失败后自动切换至1:1盈亏比保护模式,二次突破确认后恢复原策略 本EA依下图设置做黄金1小时图线,经长时期实盘验证年利润达到30多倍,修改参数可以用作比特币和纳斯达克指数都有很好的收益。
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  
Эта библиотека предназначена для помощи в управлении сделками, расчета лота, трейлинга, частичного закрытия и других функций. Расчет лота 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
Gold plucking machine   Золотая выщипывание машины является советником разработан специально для торговли золотом. Операция основана на открытии ордеров с использованием индикатора быстрых и медленных линий, поэтому советник работает в соответствии со стратегией «Trend Follow», что означает следовать тренду. Заказать с помощью политики сетки без операции стоп - лосса, поэтому убедитесь, что счет достаточен. magic number      -  is a special number that the EA assigns to its orders. Lot Multipli
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
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 Risk Service Manager" — your comprehensive toolkit for swift and precise risk management and lot size calculations in the dynamic world of trading. Designed to streamline development processes and enhance trading strategies, this indispensable library equips developers with essential tools for optimizing risk assessment and trade profitability. Metatrader4 Version |  All Products  |  Contact   Key Features: Efficient Lot Size Calculation : Harness the power of precise lot size c
Данная библиотека предлагается как средство для использования 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  как показано на приложенных изображениях Для использования библиотеки необходимо включит
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
Этот продукт разрабатывался в течение последних 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
Pionex API EA Connector для MT5 – Бесшовная интеграция с MT5 Обзор Pionex API EA Connector для MT5 позволяет бесшовно интегрировать MetaTrader 5 (MT5) с Pionex API . Этот мощный инструмент дает возможность трейдерам выполнять и управлять сделками, получать информацию о балансе и отслеживать историю ордеров — всё прямо из MT5 . Основные функции Управление аккаунтом и балансом Get_Balance(); – Получение текущего баланса аккаунта на Pionex . Исполнение и управление ордерами orderLimit(string
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
Close All Trades - MT5 UI Tool Features - Trading Executions Simplified! One-Click Buy/Sell Buttons : Instantly place buy or sell orders for trades with a single click, streamlining order execution from the desktop. Customizable Lot Size & Parameters : Enter desired lot size, stop-loss (in decimal places e.g. 7 SL Units for 0.7 below or above for buy or sell), take-profit ( in decimal places ), and the number of trades before submitting (1,2,3,4,5 etc.), allowing precise control over each trade
[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
Turn your manual trades into fully automated profit machines! This powerful MT5 EA takes over the moment you open a position — no delays, no stress. It instantly places Stop Loss and Take Profit, activates customizable trailing, and locks in profits while protecting your capital Perfect for scalpers: Every trade is immediately secured, giving you the freedom to focus on sniping the best entries while the EA handles all the management work in the background. Auto SL/TP Full trailin
Фильтр:
GiovaGonzalez87
19
GiovaGonzalez87 2025.11.10 15:05 
 

Пользователь не оставил комментарий к оценке

Racheal Samson
1611
Ответ разработчика Racheal Samson 2025.11.10 16:15
You could have asked in comments or dm, I responded in message anyways. Do you have any problems using the library? If none, please update your ratings to help others make informed decisions.
Ricardo N
33
Ricardo N 2025.08.17 09:38 
 

This library is amazing. I had some issues because the library was not in the right folder but after fixing that, everything worked. Good job. PS: It seems that LOG_LEVEL_NONE is not working, I get debug level with that or maybe I'm not using it right, anyway, I put LOG_LEVEL_ERROR to not be spammed by logs

Racheal Samson
1611
Ответ разработчика Racheal Samson 2025.08.17 09:44
The review and rating is also surprisingly amazing to me, it helps me improve and shows people are using the library to solve their WS problems. About LOG_LEVEL, None is the lowest, ERROR is the highest and everything not higher than or equal to ERROR won't be shown. I think I need to push an update to reflect your proposed understanding clearly. Thanks for the feedback
thomasb892
19
thomasb892 2024.10.23 14:25 
 

This, Native WebSocket library by Racheal Samson is fast, handles secure wss:// connections effortlessly, and can manage large data transfers with ease.

I love that it's fully native to MQL5, with no extra installations required.

What really stood out was the author's quick response and genuine willingness to help, making the experience even smoother. Highly recommend both the library and the excellent support behind it!

Racheal Samson
1611
Ответ разработчика Racheal Samson 2024.10.23 15:17
Thanks for the rating, highly appreciated.
Franck
21
Franck 2024.08.13 13:58 
 

Awesome support from Racheal, thanks for your help setting up the library, keep up the great work ;)

Racheal Samson
1611
Ответ разработчика Racheal Samson 2024.08.13 13:59
I'm glad to be of help, it's what you paid for. I'm always here to help.
David Moffitt
30
David Moffitt 2024.05.28 21:33 
 

Needed some help to work out some kinks with the library and my code. Racheal was quick and attentive to support!

Racheal Samson
1611
Ответ разработчика Racheal Samson 2024.05.29 00:58
Thanks for the rating, the words are premium and highly appreciated.
Erik Stabij
58
Erik Stabij 2024.01.24 22:08 
 

The library works well and Racheal was very helpfull!

Racheal Samson
1611
Ответ разработчика Racheal Samson 2024.01.24 22:10
I'm always happy to help. Will be here for you anytime. Thanks for the rating :D
helk3rn
248
helk3rn 2024.01.16 15:23 
 

works good, thx

Racheal Samson
1611
Ответ разработчика Racheal Samson 2024.01.16 16:59
Thanks for the rating, I'm always here to help.
Ответ на отзыв