The most downloaded free products:
The most popular forum topics:
Bestsellers in the Market:
New publications in CodeBase
- Divergence DeMarker This indicator picks up the divergence points of the DeMarker indicator
- change the colour of candles and wick Draw the wicks (thin lines): Draw a vertical line from the lowest price to the highest price of each candle (this is called a "wick"). Draw the body of the candle: Draw a rectangle from the opening price to the closing price, using a different colour if the candle is bullish or bearish. Colour customisation: You can easily change the colours used for bullish and bearish candles and their wicks. In the code you use, for example: The bearish candles have a maroon body (clrMaroon). The wicks of the bearish candles are light violet (clrOrchid). What is it useful for? This indicator is useful if you want to: Have a unique and clear visual style on your charts. Differentiate bullish candles more easily from bearish ones. Analyse the price behaviour in a more visual way.
- 2 Moving Averages 2 Moving Averages is a custom MQL4 indicator that uses two moving averages (fast and slow) to identify potential trend changes and generate buy or sell signals based on crossover points. It enhances signal reliability by optionally integrating support and resistance levels, helping traders confirm entry and exit zones. This tool is suitable for trend-following strategies and works across multiple time frames.
4 new products are now available on the Market:
Bestsellers in the Market:
Bestsellers in the Market:
The most downloaded free products:
The most downloaded free products:
Bestsellers in the Market:
New publications in CodeBase
- customised bmap chart This is a custom indicator for MetaTrader 5 whose sole purpose is to display a BMP image on the chart, centred on the screen. What is it for? It is used to display a static image (such as a logo, personal branding, chart message or reminder) directly on the trading chart, without affecting the analysis and market data. How does it work? It creates an OBJ_BITMAP_LABEL object to display an image (2.bmp) from the MQL5Images folder. It automatically calculates the centre of the chart and places the image there. It updates the position of the image on each new tick so that it is always centred, even if the window is resized.
- Triangular Arbitrage This Expert Advisor (EA) implements a triangular arbitrage strategy between three currency pairs: EURUSD, USDJPY and EURJPY
Published article "Developing a multi-currency Expert Advisor (Part 19): Creating stages implemented in Python".

So far we have considered the automation of launching sequential procedures for optimizing EAs exclusively in the standard strategy tester. But what if we would like to perform some handling of the obtained data using other means between such launches? We will attempt to add the ability to create new optimization stages performed by programs written in Python.
Published article "Build Self Optimizing Expert Advisors in MQL5 (Part 7): Trading With Multiple Periods At Once".

In this series of articles, we have considered multiple different ways of identifying the best period to use our technical indicators with. Today, we shall demonstrate to the reader how they can instead perform the opposite logic, that is to say, instead of picking the single best period to use, we will demonstrate to the reader how to employ all available periods effectively. This approach reduces the amount of data discarded, and offers alternative use cases for machine learning algorithms beyond ordinary price prediction.
The most downloaded free products:
The most popular forum topics:
- Graphic overlay and label name overlay 22 new comments
- What is a synchronized series? 11 new comments
- Linking account to my website 9 new comments
Bestsellers in the Market:
Published article "Mastering Log Records (Part 7): How to Show Logs on Chart".

Learn how to display logs directly on the MetaTrader chart in an organized way, with frames, titles and automatic scrolling. In this article, we show you how to create a visual log system using MQL5, ideal for monitoring what your robot is doing in real time.
Published article "MQL5 Wizard Techniques you should know (Part 67): Using Patterns of TRIX and the Williams Percent Range".

The Triple Exponential Moving Average Oscillator (TRIX) and the Williams Percentage Range Oscillator are another pair of indicators that could be used in conjunction within an MQL5 Expert Advisor. This indicator pair, like those we’ve covered recently, is also complementary given that TRIX defines the trend while Williams Percent Range affirms support and Resistance levels. As always, we use the MQL5 wizard to prototype any potential these two may have.
The most downloaded free products:
Bestsellers in the Market:
Published article "Developing a Replay System (Part 70): Getting the Time Right (III)".

In this article, we will look at how to use the CustomBookAdd function correctly and effectively. Despite its apparent simplicity, it has many nuances. For example, it allows you to tell the mouse indicator whether a custom symbol is on auction, being traded, or the market is closed. The content presented here is intended solely for educational purposes. Under no circumstances should the application be viewed for any purpose other than to learn and master the concepts presented.
Published article "From Basic to Intermediate: Array (II)".

In this article, we will look at what a dynamic array and a static array are. Is there a difference between using one or the other? Or are they always the same? When should you use one and when the other type? And what about constant arrays? We will try to understand what they are designed for and consider the risks of not initializing all the values in the array.