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

MT4 to MT5 Convertor (MT5Compat.mqh) - library for MetaTrader 4
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

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

Economic Calendar Monitor and Cache for Backtesting on History – indicator MetaTrader 5

Calendar Monitor in the tester reads events from the cache
To make a long story short: the built-in economic calendar of MetaTrader 5 is not (completely) synchronized with historical quotes. Quotes are marked with timestamps in accordance with the time zones that were in effect on the server at the moment of formation of each corresponding bar. Once the bars are formed they remain unchanged, … Read more

Extreme highs and lows with tick prices – indicator MetaTrader 5

Extreme highs and lows with tick prices - indicator for MetaTrader 5
An indicator to mark extremums with lines. A period input is used to determine highest highs and lowest lows for that period. In this indicator, it’s not only highs and lows (OHLC) which are used in the analysis, but also bid and ask prices from each bar. A lookback figure is used to limit the … Read more