• Обзор
  • Отзывы
  • Обсуждение

OpenAI Library MT5

Данная библиотека предлагается как средство для использования 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 как показано на приложенных изображениях

Для использования библиотеки необходимо включить следующий Header, который вы можете найти по следующей ссылке: 

https://www.mql5.com/en/blogs/post/756108

#import "StormWaveOpenAI.ex5"

COpenAI *iOpenAI(string);

CMessages *iMessages(void);

CTools *iTools(void);

#import

Это всё, что вам нужно для удобного использования библиотеки.

Ниже приведен пример того, как легко использовать библиотеку и работать с API OpenAI

#include <StormWaveOpenAI.mqh>      //--- Включает пользовательский заголовочный файл API OpenAI для интеграции
COpenAI *client;                    //--- Объявляет указатель на клиент OpenAI
CMessages *_message_;               //--- Объявляет указатель для обработки сообщений
//--- Функция OnStart является точкой входа в скрипт
OnStart()
  {
   client = iOpenAI("YOUR_API_KEY"); //--- Инициализирует клиента OpenAI с вашим API ключом
   client.start_thread();            //--- Запускает новый поток для работы клиента OpenAI
   string completion;                //--- Переменная для хранения ответа API
   _message_ = iMessages();          //--- Инициализирует обработчик сообщений
   string user_content = "Привет, как ты?";   //--- Определяет содержание сообщения
   _message_.AddMessage(user_content, user);  //--- Добавляет сообщение в обработчик с идентификатором пользователя
   //--- Вызывает API для генерации ответа на основе предоставленных сообщений
   completion = client.completions_create(
                   /*model =        */  "gpt-3.5-turbo-0125", //--- Указывает модель для создания ответа
                   /*messages =     */   _message_,           //--- Передает сообщения в API
                   /*max_tokens =   */   300,                 //--- Устанавливает максимальное количество токенов для генерации
                   /*temperature =  */   1.0                  //--- Устанавливает уровень креативности ответа
                );
   client.PrintResultMessage(); //--- Печатает результат вызова API
   delete _message_;            //--- Освобождает обработчик сообщений
   delete client;               //--- Освобождает клиента OpenAI
  }
Для получения дополнительной информации не стесняйтесь связываться со мной. Заранее благодарю вас, если решите приобрести эту библиотеку. Если вы обнаружите какие-либо ошибки, буду признателен за ваш вклад в улучшение библиотеки, отправив мне проблемы лично, чтобы я мог внести необходимые улучшения.


Рекомендуем также
Библиотека WalkForwardOptimizer позволяет выполнить пошаговую и кластерную форвард-оптимизацию ( walk-forward optimization ) советника в МетаТрейдер 5. Для использования необходимо включить заголовочный файл WalkForwardOptimizer.mqh в код советника и добавить необходимые вызовы функций. Когда библиотека встроена в советник, можно запускать оптимизацию в соответствии с процедурой, описанной в Руководстве пользователя . По окончанию оптимизации промежуточные результаты сохраняются в CSV-файл и наб
NATS (Niguru Automatic Trailing Stop) will help you achieve more profits, by setting the trailing stop automatically. Pair this NATS application with EA, or can also be used as a complement to manual trading. A trailing stop is a powerful tool in trading that combines risk management and profit optimization.  A trailing stop is a type of market order that sets a stop-loss at a percentage below the market price of an asset, rather than a fixed number. It dynamically adjusts as the asset’s pr
FREE
MetaCOT 2 CFTC ToolBox Demo - специальная версия полнофункциональной библиотеки MetaCOT 2 CFTC ToolBox MT5 . Демо версия не имеет каких-либо ограничений, однако в отличии от полнофункциональной версии выдает данные с задержкой. Библиотека предоставляет доступ к отчетам CFTC (U.S. Commodity Futures Trading Commission) прямо в терминале MetaTrader. Она включает все индикаторы, построенные на основе этих отчетов. Имея эту библиотеку Вам нет необходимости приобретать каждый индикатор MetaCOT в отдел
FREE
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
The library is used to develop automatic trading on Binance Futures Market from MT5 platform. Support all order types: Limit, Market, Stop-Limit, Stop-Market , StopLoss and TakeProfit. Automatically display the chart on the screen. Usage: - Open MQL5 demo account - Move BinanceFuturesLib.ex5 from folder \MQL5\Scripts\Market to MQL5\Libraries -  Download Header file and EA sample https://www.mql5.com/en/code/download/34976_252386.zip Copy BinanceFutures.mqh header file to folder \MQL5\Include C
MetaCOT 2 CFTC ToolBox - это специальная библиотека, предоставляющая доступ к отчетам CFTC (U.S. Commodity Futures Trading Commission) прямо в терминале MetaTrader. Она включает все индикаторы, построенные на основе этих отчетов. Имея эту библиотеку Вам нет необходимости приобретать каждый индикатор MetaCOT в отдельности. Вместо этого, Вы получаете набор сразу из всех 34 индикаторов, в который входят также индикаторы недоступные в виде отдельной версии. Библиотека поддерживает все типы отчетов,
MT4/5通用交易库(  一份代码通用4和5 ) #import "K Trade Lib5.ex5"    //简单开单    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 );    //复杂开单    void SetMagic( int magic, int magic_plus= 0 ); void SetLotsAddMode(int mode=0,double lotsadd=0);    long OrderOpenAdvance( int mode, int type, double volume, int step, int magic, string symbol= "" , string comm
FREE
Tired of complex order placement and manual calculations? Trade Dashboard is your solution. With its user-friendly interface, placing orders becomes effortless, by a single click, you can open trades, set stop loss and take profit levels, manage trade lot size, and calculate risk to reward ratios, allowing you to only focus on your strategy. Say goodbye to manual calculations and streamline your trading experience with Trade Dashboard. Download   demo version   right now. You can find   deta
Chart Notes = MULTI LINE TEXT INPUT ON CHART FOR MT5 is finally here! # sticky notes This indicator is a powerful text editor for placing notes on chart, similarly like the feature on Tradingview. There are 2 types of messages: anchored (on screen ) and free (on chart).  1. Anchored = stays on the same place on screen (x point, y point) -this text can be EDITED on click (first line is for dragging the message around- this line is edited via right clicking- >properties) -move the messages by
Intro to Range Breakout Strategy (pre-close clearance) Range = yesterday high - Yesterday low On track = opening price + range *k; Lower rail = Open price - range *K Stop-loss closing position: When the price breaks up the upper track or breaks down the lower track, it breaks the opening price of the day again Parameters: Pairs List (comma separated)       = "GBPUSD,GBPJPY,USDJPY,XAUUSD,XTIUSD,USTEC"; - TimeFrame = PERIOD_D1; - MagicNumber      = 60037;          - OrderComment     = "RangeBre
Это упрощенная и эффективная версия библиотеки для walk-forward анализа торговых экспертов. Она собирает данные о торговле эксперта во время процесса его оптимизации в тестере MetaTrader и сохраняет их в промежуточные файлы в каталоге MQL5\Files. Затем на основе этих файлов автоматически строится кластерный walk-forward отчет и уточняющие его rolling walk-forward отчеты (все они - в одном HTML-файле). С помощью вспомогательного скрипта WalkForwardBuilder MT5 можно на тех же промежуточных файлах
Этот скрипт уведомляет трейдера о различных событиях путем проигрывания звуковых файлов, отсылки Email и текстовых сообщений на мобильное устройство. Поддерживаются следующие виды событий: Новые сделки (вход/переворот/выход). Истечение отложенных ордеров. Потеря соединения терминала с торговым сервером. Завершение работы скрипта/терминала. Способ уведомления настраивается отдельно для каждого типа событий. Если вы собираетесь использовать уведомления по Email, убедитесь в корректности настроек н
The library is used to develop automatic trading on Binance Spot Market from MT5 platform. Support all order types: Limit, Market, Stop-Limit and Stop-Market. Support margin trading. Automatically display the chart on the screen. Usage: - Open MQL5 demo account - Move BinanceLib.ex5 from folder \MQL5\Scripts\Market to MQL5\Libraries - Download Header   file and EA sample https://www.mql5.com/en/code/download/34972_260999.zip Copy Binance.mqh header file to folder \MQL5\Include Copy  BinanceEA-
product video: https://vimeo.com/824742776?share=copy Trade Assistant, Trade Manager, Trade Panel for MetaTrader 5 with the following functions: - Display the remaining candle time and the current time of day - Open long and short positions without SL and TP at the current market price - Display of the current ask, bid and spread - Open long and short positions with predefined lot size, SL and TP at the current market price - Quick selection of the lot size (freely selectable lot
Open Risk Profit  shows your current risk or possible profit of all open positions. Total open risk is your loss if all positions run into the stop loss. Total open profit is your profit if all positions reach your take profit. Total float is your current profit or loss of all positions. The program also breaks down the information into the individual symbols. For example, you can monitor how much is your current profit and your potential risk in EURUSD, no matter how many individual positio
EQUITY DRAWDOWN MONITOR   This is a simple mt5 advisor that monitors the drawdon levels Features: Easy to use Useful for money managers How to Use  Load the EA once a single chart Type the maximum drawdown desired in inputs Leave the EA alone and never close that chart The EA monitors all trades and magic numbers in your account. Input Parameter Drawdown Percent:   Maximum drawdown in percentage terms allowable in the account. When the drawdown level is surpassed, the EA will close all tra
Elliott Wave Helper
Siarhei Vashchylka
4.92 (12)
Elliott Wave Helper - панель для построения волнового и технического анализа. Включает все известные волновые паттерны, уровни поддержки и сопротивления, линии тренда и кластерные зоны. Инструкция/Мануал ( Обязательно читайте перед приобретением ) | Версия для МТ4 Преимущества 1. Построение волнового анализа и технического анализа в несколько кликов 2. Наличие всех паттернов волнового анализа, включая треугольник и комбинации 3. Все девять стилей отображения волн, включая специальный шрифт
ICT PD Arrays Trader
Aesen Noah Remolacio Perez
Attention All ICT Students! This indispensable tool is a must-have addition to your trading arsenal... Introducing the ICT PD Arrays Trader: Empower your trading with this innovative utility designed to enhance and simplify your ICT trading strategy and maximize your potential profits.  How does it work? It's simple yet highly effective. Begin by placing a rectangle on your trading chart and assigning it a name like 'ict' or any preferred identifier. This allows the system to accurately ide
Just a panel for drawing levels. Minimal but very useful thing. This is a further development of the free version. This is the version that I use myself and it has many behavior adjustments. ---- 12 types of customized levels. Support for rectangle and line levels. If you need to prevent a level from extending, add "noext" to the end of the name level object. For any update idea please contact me here. ---- This is not an indicator, don't download the demo, it doesn't work For test see free ver
HelloTrader
Aleksey Rodionov
HelloTrader - это совершенно новый вид продукта для платформы MetaTrader. Сразу после запуска утилита выводит случайным образом (random) одну из строчек фразы, цитаты известных людей или афоризму в левом верхнем углу терминала. Через каждые 5 минут запись меняется. В состав входит более 1000 фраз, цитат и афоризм на русском и английском языке. Во входных параметрах можно выбрать русский язык отображение записей, по умолчанию стоит английский. Работать утилита начинает сразу после запуска и никак
Chart Spot Binance
Ghavamipour Mohammadreza
show live chart spot All symbol binance If you want to get this product with a 99% discount, send a message to my Telegram admin and rent this product for 1 $ per month or 10 $ per year. Even if you do not like the way the chart is displayed, you can tell the admin in Telegram how to display it so that your own expert is ready. https://t.me/Bella_ciao1997 https://t.me/Binance_to_mql5
ReverseTune
Konstantin Chernov
Скрипт для быстрого переворота позиции и/или ордеров. Если Вам необходимо перевернуть позицию с равным лотом, выставить встречную позицию объемом, отличным от существующего, или заменить ордера другим типом (например, Buy Limit -> Sell Limit, Buy Stop -> Sell Limit и т.д.) с сохранением или выставлением новых значенийстоп лосс и/или тейк профит, то этот скрипт избавит Вас от рутинных действий! Разрешите авто-торговлю перед запуском скрипта. Использование: Запустите скрипт на графике. Входные пар
Sync In Many Ways MT5
Sa No Tsuyoshi Kokorozashi
Description This is a Utility tool for MT5 which will make our chart analysis task quite more efficient and save large amount of time. As for chart analysis, some are watching out several symbol simultaneously with single timeframe and others are trading only one single pair with   multi timeframe analysis. For both, a common troublesome issue is “scroll chart to look back” or “draw chart objects” in multi charts at the same time.  Especially for those who are trading with multi timeframe soluti
Простая в использовании, быстрая, асинхронная библиотека WebSocket для MQL5. Он поддерживает: ws:// и wss:// (защищенный веб-сокет "TLS") текстовые и бинарные данные Он обрабатывает: фрагментированное сообщение автоматически (передача больших объемов данных) кадры пинг-понга автоматически (подтверждение активности) Преимущества: DLL не требуется. Установка OpenSSL не требуется. До 128 соединений WebSocket из одной программы Различные уровни журнала для отслеживания ошибок Возможна синхронизац
Эта библиотека позволит вам управлять сделками с использованием любого вашего советника, и ее очень легко интегрировать в любой советник, что вы можете сделать самостоятельно с помощью кода сценария, упомянутого в описании, а также демонстрационных примеров на видео - Размещайте лимитные ордера, SL-лимитные и тейк-профитные лимитные ордера. - Размещайте ордера Market, SL-Market, TP-Market - Изменить лимитный ордер - Отменить заказ - Запрос заказов - Изменение кредитного плеча
This utility shows the performance of the account (closed operations) in a graphical panel attached to a graph as an indicator. The purpose of the utility is to have a quick and clear view of the performance of transactions organized by different EAs or any desired combination. The utility has the following features in the current version 1.0: - Custom groups can be defined, to analyze and compare different performances within the account. The groups can contain filters of two types, filter
MarketPro toolkit
Johannes Hermanus Cilliers
Start earning profits by copying All trades are sent by our successful Forex trader & are extremely profitable. You can earn profits by copying trades daily Trial Period included You'll also get access to extremely powerful trading education which is designed in a simple way for you to become a profitable trader, even if you have no trading experience. https://ec137gsj1wp5tp7dbjkdkxfr4x.hop.clickbank.net/?cbpage=vip
FREE
This indicator is fully user-adjustable, calculates corellation between all symbols, which you want. Indicator is real-time updated and fully automated.  You can adjust a lot of parameters. Calculation Parameters List of symbols: write all symbol, which you want to calculate, just separate them by comma Calculated bars: amount of bars from which will be calculated Time frame: time period of calculation Used price: used price - 0 (CLOSE), 1 (OPEN), 2 (HIGH), 3 (LOW), 4 (MEDIAN), 5 (TYPICAL), 6
T5L Library is necessary to use the EAs from TSU Investimentos, IAtrader and others. It contains all the functions framework needed to Expert Advisors working properly.  ツ - The Expert Advisors from  TSU Investimentos does not work without this library,  the T5L library can have updates during the year - At this Library you will find several funcionalities like order sends, buy and sell, trigger entry points check, candlestick analyses, supply and demmand marking and lines, and much more. 
Профессиональный инструмент для контроля состояния счета и работы советников в реальном времени. Информацию о состояние счета можно отправлять в чаты Телеграм в автоматическом режиме с заданным интервалом либо по запросу. Скриншоты открытых графиков терминала Вы получаете по запросу из Вашего бота Телеграм. Информация о счете включает: 13:02 Trade monitoring by Telegram v.1.0 (заголовок) Account :  6802ххх  RoboForex-Pro (информация об аккаунте) Profit start: 2661 USD (полученная прибыль на мо
С этим продуктом покупают
Эта библиотека предназначена для помощи в управлении сделками, расчета лота, трейлинга, частичного закрытия и других функций. Расчет лота 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, при прибыли=
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 c
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,
This library implements a few functions to simplify the programming of Expert Advisors. * Build your own EA for MT5 / Binance, with a easy support for multisymbol / multytimeframe * Different SFE EAs based on the library provided. * Base signals of SFE EAs are inlcuded in base version. All the Pro filters and management are included in the base version all the 2022. * Customize the provided SFE Lib EA by changing or implementing its rules.. * Review the existing or ask for video tutorials to
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 installa
Это стандартная библиотека, созданная для гибких нейронных сетей с учетом производительности. Вызов этой библиотеки очень прост и занимает несколько строк кода:    matrix Matrix = matrix_utils.ReadCsv( "Nasdaq analysis.csv" );       matrix x_train, x_test;    vector y_train, y_test;         matrix_utils.TrainTestSplitMatrices(Matrix,x_train,y_train,x_test,y_test, 0.7 , 42 );    reg_nets = new CRegressorNets(x_train,y_train,AF_RELU_,HL, NORM_MIN_MAX_SCALER); //INitializing network       reg_net
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 cl
Применяя эти методы, мне удалось прийти к тонкому выводу, который имеет решающее значение для понимания важности уникальных стратегий в современной торговле. Хотя нейросетевой советник показал впечатляющую эффективность на начальных этапах, в долгосрочной перспективе он оказался крайне нестабильным. Различные факторы, такие как колебания рынка, изменения тенденций, внешние события и т. д., приводят к хаотичности его работы и в конечном итоге приводят к нестабильности. Получив этот опыт, я принял
This is an EXPERT with a FOCUS on LEARNING and PROFESSIONAL DEVELOPMENT!!! The idea of this product is to commercialize the source code, allowing those who want to develop their own robots, or start a professional activity developing customized experts, to have a reference source code that helps them in the learning and development process. This source code will be increased, that is, new functionalities will be created, thus allowing the project to continue evolving. For every 10 sales a new v
Данная библиотека предлагается как средство для использования 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  как показано на приложенных изображениях Для использования библиотеки необходимо включит
AO Core - ядро алгоритма оптимизации, это библиотека, построенная на авторском алгоритме HMA (hybrid metaheuristic algorithm). Пример применения AO Core описан в статье: https://www.mql5.com/ru/articles/14183 https://www.mql5.com/ru/blogs/post/756509 Данный гибридный алгоритм основан на генетическом алгоритме и содержит лучшие качества и свойства популяционных алгоритмов.  Скоростной расчет в HMA гарантирует непревзойденную точность и высокие поисковые способности, позволяет экономить совокупн
Эта библиотека предназначена для помощи в управлении сделками, расчета лота, трейлинга, частичного закрытия и других функций. Расчет лота 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, при прибыли=
Order Book, известный также как Market Book, глубина рынка, стакан цен, Level 2, - это предоставляемая брокером динамически обновляемая таблица с данными по текущим объемам торговых заявок на покупку и продажу для различных уровней цен вблизи Bid и Ask конкретного финансового инструмента. MetaTrader 5 предоставляет возможность трансляции стакана цен , но только в реальном времени. Данная библиотека OrderBook History Library позволяет считывать состояния стакана в прошлом из архивов, создаваемых
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 c
Teclado trader, é uma BIBLIOTECA que você pode chamar no OnChartEvent para abrir posição de compra/venda/zerar, os botões padrões são: V = venda C = compra Z = zerar posições a mercado S = zerar posições opostas e depois a mercado X = zerar posições opostas Além da função de teclado, é possível mostrar os estados do ExpertAdvisor usando o MagicId, com informação de: lucro mensal, semanal, diario, e posição aberta, para isto use o OnTick, ou qualquer outro evento (OnTimer / OnTrade / OnBookEv
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,
Gold plucking machine   Золотая выщипывание машины является советником разработан специально для торговли золотом. Операция основана на открытии ордеров с использованием индикатора быстрых и медленных линий, поэтому советник работает в соответствии со стратегией «Trend Follow», что означает следовать тренду. Заказать с помощью политики сетки без операции стоп - лосса, поэтому убедитесь, что счет достаточен. magic number      -  is a special number that the EA assigns to its orders. Lot Multipl
Gold plucking machine S   Gold plucking machine  S Gold plucking machine S   is an Expert Advisor designed specifically for trading gold. The operation is based on opening orders using the Fast and Slow lines indicator, thus the EA works according to the "Trend Follow" strategy, which means following the trend. Use grid strategy to place orders without stop loss operation, so please make sure the account has sufficient funds. magic number        -  is a special number that the EA assigns to its
The Trade Tracker Library is used to automatically detect and display trade levels on custom charts. It is an especially useful add-on for EAs that trade on custom charts in MT5. With the use of this library, the EA users can see trades as they are placed via the EA (Entry, SL & TP levels) in real-time. The header file and two examples of EA skeleton files are attached in the comments section (first comment). The library will automatically detect the tradable symbol for the following custom
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 );    //复杂开单
Binance Library MetaTrader 5 позволяет использовать его в советниках для торговли и индикаторах для бирж Binance.com и Binance.us напрямую из терминала. Библиотека поддерживает все классы активов на бирже: Spot, USD-M и COIN-M фьючерсы. Доступны все необходимые функции для торговой деятельности: Добавление инструментов с Binance в список символов MetaTrader 5 Получение информации о парах и спецификациях Получение Ask, Bid и времени последней сделки по всем парам Загрузка исторических данных для
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
This library implements a few functions to simplify the programming of Expert Advisors. * Build your own EA for MT5 / Binance, with a easy support for multisymbol / multytimeframe * Different SFE EAs based on the library provided. * Base signals of SFE EAs are inlcuded in base version. All the Pro filters and management are included in the base version all the 2022. * Customize the provided SFE Lib EA by changing or implementing its rules.. * Review the existing or ask for video tutorials to
Матрица является основой сложных торговых алгоритмов, поскольку она помогает выполнять сложные вычисления без особых усилий и без необходимости слишком больших вычислительных мощностей. хранится в форме массива в оперативной памяти нашего компьютера, Используя некоторые функции из этой библиотеки, я смог создать роботов с машинным обучением, которые могли принимать большое количество входных данных. Для эффективного использования этой библиотеки требуются некоторые математические знания о линей
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 installa
Это стандартная библиотека, созданная для гибких нейронных сетей с учетом производительности. Вызов этой библиотеки очень прост и занимает несколько строк кода:    matrix Matrix = matrix_utils.ReadCsv( "Nasdaq analysis.csv" );       matrix x_train, x_test;    vector y_train, y_test;         matrix_utils.TrainTestSplitMatrices(Matrix,x_train,y_train,x_test,y_test, 0.7 , 42 );    reg_nets = new CRegressorNets(x_train,y_train,AF_RELU_,HL, NORM_MIN_MAX_SCALER); //INitializing network       reg_net
Эта библиотека используется для сортировки массивов ключей и значений, нам часто нужно сортировать значения. как на языке питонов sorted(key_value.items(), key = lambda kv:(kv[ 1 ], kv[ 0 ])) функция импорта Пример сценариев использования 1. Ордера Grid EA сортируются по цене открытия void SortedByOpenPride()   {    long     OrderTicketBuffer[];    double   OpenPriceBuffer[];    for ( int i = PositionsTotal ()- 1 ; i>= 0 ; i--)      {        if (m_position.SelectByIndex(i))         {   
Want to get all events like Previous/Forecast/Actual values for each news to analyze/predict it? By this simple library you can do it easily,Just import/integrate the library into your system,then get all possible values for each news   Even In Strategy Tester   . Note: Please add the address " https://www.forexfactory.com/ " of news feed at your MT5 tab > Tools > Options > Expert Advisors > Check Allow web request for listed URL. Since the WebRequest() function can't be called from indicator ba
A Simple Moving Average (SMA) is a statistical indicator used in time series analysis. This indicator represents the arithmetic mean of a sequence of values over a specific period of time. SMA is used to smooth short-term fluctuations in data, helping to highlight the overall trend or direction of changes. This aids analysts and traders in better understanding the general dynamics of the time series and identifying potential trends or changes in direction.  More information you can find in Wiki 
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 cl
Другие продукты этого автора
AI Trading Advisor Test
VitalDefender Inc.
4 (1)
This is a depowered version of the following product: AI Trading Advisor This version is just to give you an idea but it does not allow you to run multiple tasks at once, and it is totally depowered. It is free as the cost of the service is offered entirely by StormWave Tech. This version cannot do in-depth analysis but it can give you an idea of how the AI works and interacts with the metatrader, unlike the paid version which instead has unlimited capacity even to perform tasks simultaneousl
FREE
OpenAI API
VitalDefender Inc.
Узнайте, как API OpenAI могут революционизировать торговлю на MQL5, избегая распространенных мошенничеств и максимально используя возможности искусственного интеллекта. Следующий Эксперт-советник является примером того, как могут быть интегрированы API OpenAI через мою библиотеку. Вы можете прочитать мою статью в моем блоге . Вы можете приобрести библиотеку, которая позволит вам использовать API OpenAI так же, как вы использовали бы любой другой язык, например Python, вы можете купить ее по с
FREE
IMPORTANT! After purchasing, please send me a private message to get the installation manual and configuration instructions. StormWaveGPT is your personal assistant for statistical and algorithmic trading, designed to transform trading data analysis into a simple and intuitive experience. Capable of processing historical data on various financial instruments, this software leverages advanced mathematical and statistical analysis to provide you with valuable insights such as volumes , price patt
Фильтр:
Нет отзывов
Ответ на отзыв