High-Performance Time Functions (TimeUtils) – library MetaTrader 5

High-Performance Time Functions (TimeUtils) - library for MetaTrader 5
This library contains more than 80 different functions to deal with time variables. The primary aim of is to provide high-performance time functions. The performance mode (which can be controlled at a compile time via a #define) is disabled by default. This mode is not a requirement to include the library into your projects, as … Read more

Fibonacci Bollinger Bands (MQL5 Version) – Converted from Pine Script by Rashad – indicator MetaTrader 5

Fibonacci Bollinger Bands (MQL5 Version) - Converted from Pine Script by Rashad - indicator for MetaTrader 5
This Fibonacci Bollinger Bands indicator is a conversion from Pine Script (by Rashad) to the MQL5 language. It combines the power of Bollinger Bands with Fibonacci levels to help traders identify dynamic support and resistance zones effectively. Features: Automatically calculates Fibonacci levels on Bollinger Bands. Provides a unique perspective for breakout and reversal trades. Fully … Read more

CloseAgent – EA MetaTrader 5

CloseAgent - expert for MetaTrader 5
This is a free example of an automated tool designed to close open positions at the optimal moment, combining two of the most effective technical analysis indicators: Bollinger Bands and RSI. It is particularly useful for closing residual trades at the end of the day or session, identifying overbought and oversold levels to find the … Read more

MT4 to MT5 Convertor (MT5Compat.mqh) – library MetaTrader 5 – library MetaTrader 5

MT4 to MT5 Convertor (MT5Compat.mqh) - library for MetaTrader 5 - library for MetaTrader 5
MT5Compat a Comprehensive MT4 to MT5 Conversion Library A new interface library has been developed to simplify the process of converting MT4 indicators and Expert Advisors (EAs) to MT5. This library supports most of the MetaTrader 4 functions, offering developers a unified solution for cross-platform compatibility. You can add this to both Key Features: Extensive … Read more

SUPERMACBOT – EA MetaTrader 5

SUPERMACBOT - expert for MetaTrader 5
The SUPERMACBOT is a fully automated trading robot that combines the power of the Moving Average Crossover strategy with the MACD Indicator to deliver precise and reliable trade signals. This Expert Advisor is designed to work seamlessly on all symbols and timeframesoffering versatility and adaptability for traders across various market conditions. Core Features: Dual Strategy … Read more

Comment – library MetaTrader 5

Comment - library for MetaTrader 5
Just add the code  #include    settings will appear. Example of usage with default settings. No need to declare an instance of the class. #include <Comm.mqh> //+——————————————————————+ void OnTick()       string str = “PROGRAM_NAME = ” + MQLInfoString(MQL_PROGRAM_NAME) + “\n” + (string)TimeCurrent();    comm.Comm(str);    //+——————————————————————+ Example of use with the ability to change … Read more

Volume weighted line chart with smoothing – indicator MetaTrader 5

Volume weighted line chart with smoothing - indicator for MetaTrader 5
A simple indicator to make a smoother line chart while also using tick volume to determine the market direction. The basic idea is to give you the true direction of where the market is moving. When compared to the line chart, you can see that it is ignoring short noisy market movements. Smoothing can be … Read more

simple mt5 trade copier – EA MetaTrader 5

simple mt5 trade copier - expert for MetaTrader 5
The EA is based on several key trading and technical concepts: Trade Copying/Mirror Trading Concept: The fundamental idea is to replicate trading activity from one account (Master) to another account (Slave) This is useful for: Fund managers managing multiple client accounts Traders wanting to run same strategy across different brokers Risk distribution across different brokers … Read more