• Información general
  • Comentarios
  • Discusión
  • Novedades

SortedByValue

Esta biblioteca se utiliza para ordenar matrices de claves y valores, a menudo necesitamos ordenar valores.

como en el lenguaje python

sorted(key_value.items(), key = lambda kv:(kv[1], kv[0]))


función de importación

Ejemplo de escenarios de uso

1. Las órdenes de Grid EA se clasifican según el precio de apertura

void SortedByOpenPride()
  {
   long    OrderTicketBuffer[];
   double  OpenPriceBuffer[];

   for(int i = PositionsTotal()-1; i>=0; i--)
     {
      if(m_position.SelectByIndex(i))
        {
         OrderTicketBuffer[i] = long(m_position.Ticket());
         OpenPriceBuffer[i] = m_position.PriceOpen();
        }
     }

   SortedByDouble(OrderTicketBuffer,OpenPriceBuffer);
  }

El ticket de la orden superior es OrderTicketBuffer[ArraySize(OrderTicketBuffer)-1];
El ticket de la orden inferior es OrderTicketBuffer[0];


2. Ordenar por fortaleza de la moneda
   string    key[5];
   double    value[5];

   key[0] = "USD";
   key[1] = "EUR";
   key[2] = "GBP";
   key[3] = "AUD";
   key[4] = "JPY";

   value[0] = 1.2;
   value[1] = 2.5;
   value[2] = 3.3;
   value[3] = 1.1;
   value[4] = 0.8;

   SortedByDouble(key,value);

La moneda más fuerte es clave[4], "GBP"
La moneda más débil es clave[0], "JPY"


Productos recomendados
¡El nivel Premium es un indicador único con más del 80% de precisión de predicciones correctas! ¡Este indicador ha sido probado por los mejores especialistas en comercio durante más de dos meses! ¡El indicador del autor no lo encontrarás en ningún otro lugar! ¡A partir de las capturas de pantalla, puede ver por sí mismo la precisión de esta herramienta! 1 es ideal para operar con opciones binarias con un tiempo de vencimiento de 1 vela. 2 funciona en todos los pares de divisas, acciones, m
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 
Bober Real MT5
Arnold Bobrinskii
4.76 (17)
Bober Real MT5 is a fully automatic Forex trading Expert Advisor. This robot was made in 2014 year and did a lot of profitbale trades during this period. So far over 7000% growth on my personal account. There was many updates but 2019 update is the best one. The robot can run on any instrument, but the results are better with EURGBP, GBPUSD, on the M5 timeframe. Robot doesn't show good results in tester or live account if you run incorrect sets. Set files for Live accounts availible only for cu
| Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT5 version, click  here  for  Blue CARA MT4  (settings and logics are same in both versions)     Real monitoring signal  -->  Cara Gold Intro Blue CARA EA   ('CARA') - short for  C omprehensive  A lgorithmic   R esponsive   A dvisor is a next-gen  multi-currency    multi-timeframe  EA base on the widely known (and perhaps the most popul
Hamster Scalping mt5
Ramil Minniakhmetov
4.71 (209)
Hamster Scalping es un asesor comercial totalmente automatizado que no utiliza martingala. Estrategia de scalping nocturno. El indicador RSI y el filtro ATR se utilizan como entradas. El asesor requiere un tipo de cuenta de cobertura. El seguimiento del trabajo real, así como mis otros desarrollos, se puede encontrar aquí: https://www.mql5.com/en/users/mechanic/seller Recomendaciones generales Depósito mínimo de $ 100, use cuentas ECN con margen mínimo, configuración predeterminada para euru
The S&P 500 Scalper Advisor is an innovative tool designed for traders who want to successfully trade the S&P 500 Index. The index is one of the most widely used and prestigious indicators of the American stock market, comprising the 500 largest companies in the United States. Peculiarities: Automated trading solutions:   The advisor is based on advanced algorithms and technical analysis to automatically adapt the strategy to changing market conditions. Versatile approach:   The advisor combine
Pionex API EA Connector para MT5 – Integración Perfecta con MT5 Descripción General El Pionex API EA Connector para MT5 permite una integración fluida entre MetaTrader 5 (MT5) y Pionex API . Esta herramienta avanzada permite a los traders ejecutar y gestionar órdenes, obtener información sobre el saldo y hacer seguimiento del historial de operaciones, todo directamente desde MT5 . Funciones Principales Gestión de Cuenta y Saldo Get_Balance(); – Obtiene el saldo actual de la cuenta en Pionex .
SolarTrade Suite 金融机器人:LaunchPad 市场专家 - 专为开启交易而设计! 这是一个使用特殊创新和先进算法来计算其价值的交易机器人,是您在金融市场世界中的助手。 使用我们来自 SolarTrade Suite 系列的指标集来更好地选择启动此机器人的时机。 在描述底部查看我们来自 SolarTrade Suite 系列的其他产品。 您想自信地驾驭投资和金融市场的世界吗? SolarTrade Suite 金融机器人:LaunchPad 市场专家是一款创新软件,旨在帮助您做出明智的投资决策并增加您的利润。 SolarTrade Suite 金融机器人的优势:LaunchPad 市场专家: - 准确计算:我们的机器人使用先进的算法和分析方法来准确预测市场走势。 计算购买和出售资产的最佳时机。 - 用户友好界面:直观的界面将使您能够轻松掌握程序并在安装后立即开始享受其好处。 - 专家支持:我们的专业团队随时准备为您解答任何问题,并为您提供有关使用该程序的建议。 立即试用 SolarTrade Suite 金融机器人:LaunchPad Market
ID Trade_Bot BS - an effective tool for automated trading using RSI Trade_Bot BS is an efficient solution for automated trading based on RSI, allowing flexible parameter customization and risk management. Thanks to the ability to choose a trading mode, dynamic Stop-Loss and Take-Profit levels, and trading mode adjustment (buying, selling, or both), it is suitable for various trading strategies. Key Features: Uses the RSI indicator to determine market conditions. Automatically opens an
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 );    //复杂开单
Magic EA MT5
Kyra Nickaline Watson-gordon
Magic EA is an Expert Advisor based on Scalping, Elliot Waves and with filters such as RSI, Stochastic and 3 other strategies managed and decided with the robot smartly. Large number of inputs and settings are tested and optimized and embedded in the program thus inputs are limited and very simple. Using EA doesn't need any professional information or Forex Trading Knowledge. EA can trade on all symbols and all time frames, using special and unique strategies developed by the author. The EA w
Magic Grid MT5
Aliaksandr Charkes
4.17 (6)
Magic Grid MT5 is a non-indicator Expert Advisor using a grid strategy (on a hedging account). The strategy is based on automatic reopening of grid pending orders, after closing their market positions (by Take-Profit, Stop-Loss or manually). Pending orders are placed with a specified step from the initial prices, which can be entered manually or generated automatically (once at the beginning of the trade).   The robot can trade on any timeframe, on any currency pair, on several currency pairs,
Exclusive EA for FOREX HEDGE account The EA (FuzzyLogicTrendEA) is based on fuzzy logic strategies based on the analysis of a set of 5 indicators and filters. Each indicator and filter has a weight in the calculation and, when the fuzzy logic result reaches the value defined in the EA parameter, a negotiation is opened seeking a pre-defined gain. As additional functions it is possible to define maximum spread, stop loss and so on . Recommended Symbol: EURUSD, AUDUSD, GBPUSD, NZDUSD, USDCAD, AUD
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
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.
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
Gold Crazy EA   is an Expert Advisor designed specifically for trading Gold H1/ EU M15. It use some indicators to find the good Entry. And you can set SL or you can DCA if you want. It can be an Scalping or an Grid/ Martingale depend yours setting. This EA can Auto lot by Balance, set risk per trade. You also can set TP/ SL for earch trade or for basket of trade. - RSI_PERIOD - if = -1, then the default strategy works, if >0, then the RSI strategy works - MAX_ORDERS - to trade with only 1 order,
KopierMaschine - локальный копировщик сделок между различными счетами MetaTrader 4 и MetaTrader 5 в любом направлении расположенных на одном компьютере с интуитивно понятным интерфейсом. Направления копирования: MT4 --> MT5 MT4 --> MT4 MT5 --> MT5 MT5 --> MT4 для копирования между терминалами MetaTrader 4 и   MetaTrader   5 необходимо приобрести версию продукта   KopierMaschine  для    MetaTrader  4 Особенности Программа работает в двух режимах Master и Slave На один подчиненный счет можно копир
Kaseki
Ben Mati Mulatya
The Hybrid Metaheuristic Algorithm (HMA) is a cutting-edge optimization approach that combines the strengths of genetic algorithms with the best features of population-based algorithms. Its high-speed computation ensures unparalleled accuracy and efficient search capabilities, significantly reducing the total time required for optimization while identifying optimal solutions in fewer iterations. HMA outperforms all known population optimization algorithms in both speed and accuracy. Use Cases AO
Step index Automatic
Ignacio Agustin Mene Franco
Hola comunidad, en esta ocasión les vengo a presentar Step index AutoMatic "Es una linea de bot/EA dedicada a los índices sintéticos del broker deriv cada uno de los bots llevara una estrategia diferente para obtener mayor rentabilidad en el mercado simplemente modificando los parámetros como se muestra en la imagen! Y su respectiva temporalidad Siempre hacer el backtesting en ticks reales ya que esta basado en el mercado en vivo" Este bot tiene la estrategia de Stochástic Con su parámetro par
Owl Smart Levels MT5
Sergey Ermolov
4 (29)
Versión MT4  |  FAQ El Indicador Owl Smart Levels es un sistema comercial completo dentro de un indicador que incluye herramientas de análisis de mercado tan populares como los fractales avanzados de Bill Williams , Valable ZigZag que construye la estructura de onda correcta del mercado y los niveles de Fibonacci que marcan los niveles exactos de entrada. en el mercado y lugares para tomar ganancias. Descripción detallada de la estrategia Instrucciones para trabajar con el indicador Asesor de c
FVG EA Pro
Haidar, Lionel Haj Ali
4.52 (27)
FVG EA PRO   is a must-have smart money concept EA, highly customizable and using advanced techniques of FVG "Fair Value Gap" and market structure to capture high probability trades.  It is highly configurable,  you can build various strategies based on market structure and FVG as entry criteria. FVG EA PRO can be used to trade Kill Zones and Silver Bullet Windows. It is fully compatible with swing trade strategies. It contains all the functionalities  needed by any  successful traders to automa
Boom 300 Players
Ignacio Agustin Mene Franco
buenas comunidad en esta obcasion les presento a Boom 300 Players donde cuenta con la estrategia de 2 Bandas de bolinger con cada banda de bolinger configurada con distintos parametros para hacer mas perfecta la entrada en velas Trend ! El Ea Sirve para cuentas de fondeo tambien se inicia con un capital recomendado de 1000 USD de opera con lotajes de entre 2 y 3 segun capital  se usa en temporalidad de 1 Minuto  y los parametros a configurar van tal cual en la foto sin mas buen profit a disfruta
Boom 500 Players
Ignacio Agustin Mene Franco
buenas comunidad en esta obcasion les presento a Boom 500 Players donde cuenta con la estrategia de 2 Bandas de bolinger con cada banda de bolinger configurada con distintos parametros una con 44 y otra con 22 para hacer mas perfecta la entrada en velas Trend ! El EA Sirve para cuentas de fondeo tambien Prop firms se inicia con un capital recomendado de 1000 USD de opera con lotajes de entre 2 y 3 segun capital  se usa en temporalidad de 1 Minuto  y los parametros a configurar van tal cual en la
To download MT4 version please click here . - This is the exact conversion from TradingView: "Trend Direction Force Index - TDFI [wm]" By "causecelebre". - The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. - This indicator uses multiple levels of averaging to detect trend strength. - You can optimize filter low and filter high levels to achieve best results. - You have access to buffers to use in EAs. - This is a light-load processin
El indicador construye cotizaciones actuales, que se pueden comparar con las históricas y, sobre esta base, hacer un pronóstico de movimiento de precios. El indicador tiene un campo de texto para una navegación rápida a la fecha deseada. Opciones: Símbolo - selección del símbolo que mostrará el indicador; SymbolPeriod - selección del período del cual el indicador tomará datos; IndicatorColor - color del indicador; HorisontalShift: cambio de cotizaciones dibujadas por el indicador por el núm
Bienvenido al indicador de reconocimiento Ultimate Harmonic Patterns Este indicador detecta el patrón de Gartley, el patrón de murciélago y el patrón de cifrado en función de HH y LL de la estructura de precios y los niveles de Fibonacci, y cuando se alcanzan ciertos niveles de fib, el indicador mostrará el patrón en el gráfico. Este indicador es una combinación de mis otros 3 indicadores que detecta patrones avanzados Características : Algoritmo avanzado para detectar el patrón con alta precisi
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
Stormer RSI 2
Ricardo Rodrigues Lucca
This strategy was learned from Stormer to be used on B3. Basically, 15 minutes before closing the market, it will check RSI and decided if it will open an position. This strategy do not define a stop loss. If the take profit reach the entry price it will close at market the position. The same happens if the maximal number of days is reached. It is created to brazilian people, so all configuration are in portuguese. Sorry Activations allowed have been set to 50.
The   Prop Firm Mastery EA   is a cutting-edge low risk expert advisor designed for   multi-symbol   trading with   advanced correlation filters   to increase trade accuracy. Unlike traditional EAs that blindly take trades, this EA ensures   only the strongest Buy and Sell setups   by analyzing   correlation strength   between your chosen trading pairs. This state-of-the-art EA combines pending order execution with a suite of powerful filters to optimize your entry and exit points across up to f
Los compradores de este producto también adquieren
Native Websocket
Racheal Samson
5 (5)
An   easy to use, fast,  asynchronous   WebSocket library  for MQL5. It supports: ws://   and   wss://  (Secure "TLS" WebSocket) text   and   binary   data It handles: fragmented message  automatically (large data transfer) ping-pong   frames  automatically (keep-alive handshake) Benefits: No DLL required. No OpenSSL installation required. Up to 128 Web Socket Connections from a single program. Various Log Levels for error tracing Can be synchronized to MQL5 Virtual Hosting . Completely native t
WalkForwardOptimizer MT5
Stanislav Korotky
3.63 (8)
WalkForwardOptimizer library allows you to perform rolling and cluster walk-forward optimization of expert advisers (EA) in MetaTrader 5. To use the library include its header file WalkForwardOptimizer.mqh into your EA source code, add call provided functions as appropriate. Once the library is embedded into EA, you may start optimization according to the procedure described in the User guide . When it's finished, intermediate results are saved into a CSV file and some special global variables.
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  
Esta biblioteca le permitirá gestionar operaciones utilizando cualquiera de sus EA y es muy fácil de integrar en cualquier EA, lo que puede hacer usted mismo con el código de secuencia de comandos que se menciona en la descripción y también ejemplos de demostración en video que muestran el proceso completo. - Órdenes de límite de colocación, límite de SL y límite de obtención de ganancias - Realizar órdenes de Mercado, SL-Market, TP-Market - Modificar orden límite - Cancelar orden - Consult
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
If you're a trader looking to use Binance.com and Binance.us exchanges directly from your MetaTrader 5 terminal, you'll want to check out Binance Library MetaTrader 5. This powerful tool allows you to trade all asset classes on both exchanges, including Spot, USD-M   and COIN-M futures, and includes all the necessary functions for trading activity. With Binance Library MetaTrader 5, you can easily add instruments from Binance to the Symbols list of MetaTrader 5, as well as obtain information ab
The library is dedicated to help manage your trades, calculate lot, trailing, partial close and other functions. Lot Calculation Mode 0: Fixed Lot. Mode 1: Martingale Lot (1,3,5,8,13) you can use it in different way calculate when loss=1 ,when profit=0. Mode 2: Multiplier Lot (1,2,4,8,16) you can use it in different way calculate when loss=1 ,when profit=0. Mode 3: Plus Lot (1,2,3,4,5) you can use it in different way calculate when loss=1 ,when profit=0. Mode 4: SL/Risk Lot calculate based on s
MetaCOT 2 CFTC ToolBox MT5
Vasiliy Sokolov
3.67 (3)
MetaCOT 2 CFTC ToolBox is a special library that provides access to CFTC (U.S. Commodity Futures Trading Commission) reports straight from the MetaTrader terminal. The library includes all indicators that are based on these reports. With this library you do not need to purchase each MetaCOT indicator separately. Instead, you can obtain a single set of all 34 indicators including additional indicators that are not available as separate versions. The library supports all types of reports, and prov
This is a simplified and effective version of the library for walk forward analysis of trading experts. It collects data about the expert's trade during the optimization process in the MetaTrader tester and stores them in intermediate files in the "MQL5\Files" directory. Then it uses these files to automatically build a cluster walk forward report and rolling walk forward reports that refine it (all of them in one HTML file). Using the WalkForwardBuilder MT5 auxiliary script allows building othe
Order Book, known also as Market Book, market depth, Level 2, - is a dynamically updated table with current volumes of orders to buy and to sell specific financial instument at price levels near Bid and Ask. MetaTrader 5 provides the means for receiving market book from your broker, but in real time only, without access to its history. The library OrderBook History Library reads market book state in the past from archive files, created by OrderBook Recorder . The library can be embedded into you
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
Binance Library
Hadil Mutaqin SE
5 (1)
The library is used to develop automatic trading on Binance Spot Market from MT5 platform. Support all order types: Limit, Market, StopLimit and StopMarket Support Testnet mode Automatically display the chart on the screen Usage: 1. Open MQL5 demo account 2. Download Header   file and EA sample   https://drive.google.com/uc?export=download&id=1kjUX7Hyy02EiwTLgVi8qdaCNvNzazjln Copy Binance.mqh to folder \MQL5\Include Copy  BinanceEA-Sample.mq5 to folder \MQL5\Experts 3. Allow WebRequest from MT5
Gold plucking machine   Gold plucking machine 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 orders. Lot Multiplier        - 
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
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
EA Toolkit
Esteban Thevenon
EA Toolkit   is a library that allows any developer to quickly and easily program Advisor experts. It includes many functions and enumerations such as trailing stop, lot, stop loss management, market trading authorisations, price table updates, trading conditions and many more. Installation + Documentation : You will find all the information to install this library and the documentation of its functions on this GitHub : https://github.com/Venon282/Expert-Advisor-Toolkit WARNING : The installat
Hello everyone! I am a professional MQL programmer , Making EAs, Indicators and Trading Tools for my clients all over the world. I build 3-7 programs every week but I seldomly sell any ready-made Robots. Because I am fastidious and good strategy is so few...  this EA is the only one so far I think its good enough to be published here.  As we all know, the Ichimoku indicator has become world popular for decades, but still, only few people knows the right way of using it, and if we check the clo
Applying these methods, I managed to arrive at a nuanced conclusion that is crucial to understanding the importance of unique strategies in contemporary trading. Although the neural network advisor showed impressive efficiency in the initial stages, it proved to be highly unstable in the long run. Various factors such as market fluctuations, trend changes, external events, etc. cause its operation to be chaotic and eventually lead to instability. With these experiences, I accepted the challenge
Introducing "TG 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
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
La siguiente biblioteca se ofrece como un medio para utilizar las API de OpenAI directamente en MetaTrader de la manera más sencilla posible. Para obtener más detalles sobre las capacidades de la biblioteca, lea el siguiente artículo: https://www.mql5.com/en/blogs/post/756098 The files needed to use the library can be found here: Manual IMPORTANTE: Para usar el EA, es necesario añadir la siguiente URL para permitir el acceso a la API de OpenAI  como se muestra en las imágenes adjuntas Para utili
Nmt5
Liang Qi Quan
这段代码是一个简单的交易专家顾问(Expert Advisor)示例,主要功能如下: 使用两个移动平均线(MA)作为交易信号: 快速MA(FastMA)和慢速MA(SlowMA) 初始化函数(OnInit): 创建两个MA指标句柄 设置数组为时间序列模式 清理函数(OnDeinit): 释放指标句柄,防止内存泄漏 主要交易逻辑(OnTick): 获取最新的MA值 判断趋势和交易信号 在无持仓时执行交易 交易规则: 上升趋势+买入信号时开多单 下降趋势+卖出信号时开空单 使用固定的止损和止盈点数 风险管理: 使用输入参数设置交易手数、止损和止盈 每次只允许一个持仓(inTrade变量) 使用MQL5的Trade库进行交易操作,简化了下单过程 这个EA适合初学者学习,展示了基本的EA结构和简单的交易策略实现方法。但在实际使用前,还需要进行更多的测试和优化。
KP TRADE PANEL EA is an EA MT5 facilitates various menus. KP TRADE PANEL EA is an EA skin care in MT5 is an EA that puts the system automatically in download EA MT5 to test with demo account from my profile page while some Trailing Stop Stop Loss require more than 0 features EA determines lot or money management calculates lot from known and Stop loss TS = Trailing stop with separate stop loss order Buy more AVR TS = Trailing stop plus
Una biblioteca fácil de usar que proporciona a los desarrolladores acceso directo a estadísticas clave de operaciones para sus EAs en MQL5. Métodos disponibles en la biblioteca: Datos de la cuenta y beneficios: GetAccountBalance() : Devuelve el saldo actual de la cuenta. GetProfit() : Devuelve el beneficio neto de todas las operaciones. GetDeposit() : Devuelve la suma total de los depósitos. GetWithdrawal() : Devuelve la suma total de los retiros. Análisis de operaciones: GetProfitTrades() : Dev
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
*****主要交易XAUUSD,如果测试的时候,建议调整到XAUUSD,其他交易标的不能保证盈利效果********* 需要测试的请留言(看到后会第一时间回复),为了保护工作成果,需要输入特定的参数,系统默认的参数无法实现截图回撤所示效果! 需要测试的请留言(看到后会第一时间回复),为了保护工作成果,需要输入特定的参数,系统默认的参数无法实现截图回撤所示效果! 需要测试的请留言(看到后会第一时间回复),为了保护工作成果,需要输入特定的参数,系统默认的参数无法实现截图回撤所示效果! **************************************************************************************************************************************************************** 1、【简述】主要为趋势交易,严格筛选交易信号,一旦交易信号明确,快速交易。 2、【止损止盈】每月止盈15%,止损30%。 3、【特殊说明】严格的交易执行逻辑,一旦当月达到止盈止损后,坚决不再开
Flip Manager
Caleb David Kiragu
Introducing Flip Manager: Smart, Automated Ledger Management for Traders After years of manually tracking trades, managing account records, and balancing ledgers, I realized there had to be a better way. Keeping up with every transaction, profit calculation, and risk adjustment was becoming a time-consuming task—so I set out to automate the entire process. That’s how Flip Manager was born. I teamed up with a skilled programmer who shared my passion for efficiency and accuracy in trading. What st
Este producto ha estado en desarrollo durante los últimos 3 años. Es la base de código más avanzada para trabajar con todo tipo de inteligencia artificial y aprendizaje automático en el lenguaje de programación MQL5. Ha sido utilizado para crear numerosos robots de trading e indicadores impulsados por IA en MetaTrader 5. Esta es la versión premium de un proyecto gratuito y de código abierto sobre aprendizaje automático para MQL5, enlazado aquí:  https://github.com/MegaJoctan/MALE5 . La versión g
Shawrie
Kevin Kipkoech
This Pine Script implements a Gaussian Channel + Stochastic RSI Strategy for TradingView . It calculates a Gaussian Weighted Moving Average (GWMA) and its standard deviation to form an upper and lower channel. A Stochastic RSI is also computed to determine momentum. A long position is entered when the price closes above the upper Gaussian band and the Stoch RSI K-line crosses above D-line . The position is exited when the price falls back below the upper band. The script includes commission, cap
Bookeepr
Marvellous Peace Kiragu
Bookeepr is an advanced MQL5 trading bookkeeping software that automates trade logging, tracks real-time P&L, and integrates a ledger-style financial system for deposits, withdrawals, and expenses. It supports multi-currency assets , generates detailed performance reports , and provides risk management tools to help traders optimize their strategies. With secure cloud storage, exportable reports, and seamless MetaTrader 5 integration , Bookeepr ensures accurate, transparent, and hassle-free fina
Otros productos de este autor
Smart Peak Bottom
Xiaoyu Huang
5 (2)
Este es un indicador claro para juzgar máximos y mínimos, y funciona bien para el mercado Oscilante. Precio promocional 49$ → 59$ características bueno para juzgar los mejores y los peores Sin redibujar, sin deriva Cálculo rápido, sin retrasos Modo de recordatorio enriquecido Se pueden ajustar múltiples parámetros y colores. parámetro "======== Principal ========" PeriodoAltoBajo1 = 9 PeriodoAltoBajo2 = 60 PeriodoAltoBajo3 = 34 HighLowEMAPeriod = 4 MASignalPeriod = 5 "======== Notificar ====
Introducción Este es un EA de retroceso diseñado para detectar divergencias de tendencias, que corresponde al primer tipo de puntos de compra y venta en la teoría "Zhan Zhong Shuo Chan". Con un factor de beneficio excepcionalmente alto, este EA ofrece una rentabilidad constante a largo plazo. Emplea comercio dinámico en red, lo que le permite adaptarse sin problemas a diversas condiciones del mercado. Nuevo precio promocional de EA: $99 → $149 Señal en vivo https://www.mql5.com/es/signals/2196
introducir Este es un asistente comercial, indicadores de panel de información, estadísticas de moneda agregadas, estadísticas de cuenta, información de posición, hora local y del servidor, fuerza de la moneda, tiempo restante de la línea K, líneas de soporte y resistencia, compensación de tiempo del servidor, tasa de fluctuaciones de moneda y otras funciones. Se puede utilizar para todo tipo de cuentas y divisas. Excelente desempeño, muy pocos recursos Puede personalizar la posición, el color,
Este es un EA comercial de oro estable y rentable a largo plazo, que utiliza indicadores técnicos tradicionales y usa IA para EA adaptativo. Nuevo precio de promoción de EA: $199   →   $ 249 Característica un pedido a la vez stop loss fijo adaptado comercio nocturno Optimizar deslizamiento filtro de noticias Adecuado para pasar FTMO, DARWINEX Zero Se puede utilizar con otros EA Programación orientada a objetos, el marco del programa ha sido probado durante 5 años. Señal https://www.mql5.com/es/
Hablando del indicador Zen MACD MACD de cuatro colores y dos hilos Muestra la suma del área de la columna. InpFastMA = 12; // período de EMA rápido InpSlowMA = 26; // Periodo de EMA lento InpSignalMA = 9; // Período de señal SMA InpAppliedPrice = PRICE_CLOSE; // Precio aplicado InpMaMethod = MODE_EMA; // Ma_Method input bool ChArea = false; // área chzhshch Parámetros de línea rápida del período EMA rápido Parámetros de línea lenta del período EMA lento Parámetros de línea de señal d
Introducción Este es un EA para operaciones nocturnas, operando entre las 21: 00-22: 00 El comercio en vivo a largo plazo es rentable Solo intercambie un pedido a la vez y no causará una gran pérdida Cada orden se establece con stop loss y take profit, no se utiliza grid, Martin u otra gestión de fondos de alto riesgo Se pueden negociar varias divisas al mismo tiempo Establecer zona horaria automáticamente de forma predeterminada Característica Gráfico de negociación: M15 Monedas negoci
EEVCC Hedge Precio de promoción: $ 59 Activación: 10 Introducción Este es un EA de comercio de cobertura de cuadrícula bidireccional (compra y venta al mismo tiempo) Las ofertas firmes a largo plazo son rentables Se puede utilizar en varias monedas al mismo tiempo. Método seguro de cálculo de beneficios característica Gráfico de negociación: H1 Moneda recomendada: EURGBP, EURUSD Depósito mínimo: 3000 USD, recomendado 10000 USD, 100 USD para cuentas de centavos Corredores recomendados: RofoForex,
Precio promocional 1 día: $ 49 Activación: 30 Precio promocional 10 días: $ 59 activación: 20 Introducción Vista rápida Verifique rápidamente la rentabilidad durante un período de tiempo y muestre las estadísticas Filtre rápidamente transacciones históricas y haga estadísticas basadas en tiempo, número mágico, moneda y comentarios Las estadísticas incluyen el beneficio neto, el total del lote, el factor de beneficio, las operaciones cortas (% de ganancias), las operaciones largas (% de ganan
Introducción Este es un indicador de la rentabilidad diaria. Característica Las estadísticas se pueden basar en la moneda, el número mágico y las notas. Las estadísticas pueden basarse en el tiempo Disponible para todas las monedas, todos los períodos Hay temas blancos y negros. Orden inverso La frecuencia de actualización se puede ajustar Puede establecer el tiempo de actualización al último Parámetro nD                           = 30;                                // Número de días Hora d
Sistema SemiAuto Martin introducir Esta herramienta se utiliza para el comercio Martin semiautomático, haga clic en el panel para realizar un pedido y el EA gestionará la posición. Simplemente decida la dirección de la transacción y deje el resto a la administración del EA. Martin automático, agregue almacén de acuerdo con la cuadrícula establecida, también puede deshabilitar esta función Liquidación con un clic Función de bloqueo de una tecla control del tiempo Aviso de sonido de advertencia
Índice de tipo de fractal CZSC Características: Llevó a cabo un procesamiento exhaustivo de la relación de inclusión. Es conveniente usar la llamada de EA para juzgar si se trata de una clasificación de arriba a abajo, y el estado en "Enseñando a almacenar 93: la relación entre las dos tablas y el interior de la estructura de tendencia 2" Mostrar clasificación superior-inferior con flechas Mostrar posibles bolígrafos en diferentes colores. La relación de inclusión de dos líneas K adyacent
Canal King of Dragon, indicador King of Dragon, sistema King of Dragon, King of Dragon MT5, indicador clásico King of Dragon, sistema de deslizamiento King of Dragon, Rey del dragón todo en uno El sistema de comercio de canales King of Dragon, que es un sistema de comercio de canales clásico, muchos usuarios solicitan encarecidamente la versión MT5. Este programa ha sido optimizado para el rendimiento en múltiples versiones, y ya es un sistema relativamente fluido. 49$ → 59$ Zona roja, tendenc
Este indicador combina los indicadores clásicos MACD y Zigzag para detectar divergencias entre el precio y los indicadores. También utiliza tecnología avanzada de inteligencia artificial (IA) para detectar la validez de la divergencia. MACD es conocido como el "rey de los indicadores" y Zigzag también es un indicador muy útil. Al combinar estos dos indicadores, este indicador aprovecha las fortalezas de ambos. La detección de divergencia es un problema probabilístico. A menudo, las divergenci
Indicador de fortaleza de la moneda El indicador de fortaleza de la moneda es una herramienta poderosa para identificar tendencias. Compara la fortaleza y debilidad de diferentes monedas y facilita la búsqueda de pares de divisas con tendencias. Precio de venta: $49 Características Distingue efectivamente entre monedas fuertes y débiles Identifica automáticamente las monedas de tendencia Multi-plazo Carga 28 pares de divisas Rendimiento optimizado Uso del indicador Monedas fuertes: las mon
Este es un EA comercial estable y rentable a largo plazo con muy poco riesgo. Utiliza indicadores técnicos tradicionales para un EA adaptativo. Este EA se basa principalmente en la optimización de algoritmos en lugar de la optimización de parámetros. Lo que buscamos es obtener ganancias estables a largo plazo. La obtención de ganancias estables es lo más importante. Precio promocional del nuevo EA: $19 9  → $299 Características Una orden a la vez, sin Martingala, cuadrícula Rentable después d
Presentamos Chart Compare: su herramienta definitiva de sincronización de varios gráficos Ahora a la venta por $39 (precio habitual $59) Sincronice sin problemas varios gráficos para obtener información instantánea. Características principales: Sincronización ultrarrápida: la tecnología basada en eventos garantiza actualizaciones fluidas e inmediatas en todos los gráficos. Ligero y eficiente: uso mínimo de recursos del sistema para un rendimiento óptimo. Comparaciones rápidas: compare fácilm
Filtro:
No hay comentarios
Respuesta al comentario
Versión 1.7 2023.05.07
added validation