Articles, Library comments - page 29

No Loss EA V2 - No Indicator, No Price Action strategy for MetaTrader 4 : "This is the Updated version of NoLoss EA" - As most of the indicators available in the market are lagging indicators that provide information after some time. This strategy eliminates the need to rely on indicators
Check out the new article: Developing a multi-currency Expert Advisor (Part 15): Preparing EA for real trading . As we gradually approach to obtaining a ready-made EA, we need to pay attention to issues that seem secondary at the stage of testing a trading strategy, but become important when moving
Check out the new article: Neural Network in Practice: Pseudoinverse (II) . Since these articles are educational in nature and are not intended to show the implementation of specific functionality, we will do things a little differently in this article. Instead of showing how to apply factorization
Check out the new article: Trading Insights Through Volume: Trend Confirmation . The Enhanced Trend Confirmation Technique combines price action, volume analysis, and machine learning to identify genuine market movements. It requires both price breakouts and volume surges (50% above average) for
Check out the new article: Mastering Log Records (Part 3): Exploring Handlers to Save Logs . In this article, we will explore the concept of handlers in the logging library, understand how they work, and create three initial implementations: Console, Database, and File. We will cover everything from
Check out the new article: Neural Networks in Trading: Dual-Attention-Based Trend Prediction Model . We continue the discussion about the use of piecewise linear representation of time series, which was started in the previous article. Today we will see how to combine this method with other
ProfitLossTrailEA: This Expert Advisor is a tool for managing orders.  Author: Nikolaos Pantzos
Check out the new article: Hidden Markov Models for Trend-Following Volatility Prediction . Hidden Markov Models (HMMs) are powerful statistical tools that identify underlying market states by analyzing observable price movements. In trading, HMMs enhance volatility prediction and inform
Check out the new article: Price Action Analysis Toolkit Development (Part 7): Signal Pulse EA . Unlock the potential of multi-timeframe analysis with 'Signal Pulse,' an MQL5 Expert Advisor that integrates Bollinger Bands and the Stochastic Oscillator to deliver accurate, high-probability trading
Check out the new article: Mastering Log Records (Part 2): Formatting Logs . In this article, we will explore how to create and apply log formatters in the library. We will see everything from the basic structure of a formatter to practical implementation examples. By the end, you will have the
Check out the new article: Developing a Replay System (Part 56): Adapting the Modules . Although the modules already interact with each other properly, an error occurs when trying to use the mouse pointer in the replay service. We need to fix this before moving on to the next step. Additionally, we
New article How to Access the MySQL Database from MQL5 (MQL4) has been published: The article describes the development of an interface between MQL and the MySQL database. It discusses existing practical solutions and offers a more convenient way to implement a library for working with databases....
New article Speed Up Calculations with the MQL5 Cloud Network is published: How many cores do you have on your home computer? How many computers can you use to optimize a trading strategy? We show here how to use the MQL5 Cloud Network to accelerate calculations by receiving the computing power...
Check out the new article: MQL5 Trading Toolkit (Part 6): Expanding the History Management EX5 Library with the Last Filled Pending Order Functions . Learn how to create an EX5 module of exportable functions that seamlessly query and save data for the most recently filled pending order. In this
Check out the new article: Neural Networks in Trading: Piecewise Linear Representation of Time Series . This article is somewhat different from my earlier publications. In this article, we will talk about an alternative representation of time series. Piecewise linear representation of time series is
Check out the new article: Developing a Replay System (Part 55): Control Module . In this article, we will implement a control indicator so that it can be integrated into the message system we are developing. Although it is not very difficult, there are some details that need to be understood about
Check out the new article: Developing a multi-currency Expert Advisor (Part 14): Adaptive volume change in risk manager . The previously developed risk manager contained only basic functionality. Let's try to consider possible ways of its development, allowing us to improve trading results without
Strategy report output into a chart : This script was developed for displaying saved Strategy report from the Strategy Tester into a chart. Author: globus2008
Check out the new article: Adaptive Social Behavior Optimization (ASBO): Schwefel, Box-Muller Method . This article provides a fascinating insight into the world of social behavior in living organisms and its influence on the creation of a new mathematical model - ASBO (Adaptive Social Behavior
Check out the new article: Developing A Swing Entries Monitoring (EA) . As the year approaches its end, long-term traders often reflect on market history to analyze its behavior and trends, aiming to project potential future movements. In this article, we will explore the development of a long-term
Check out the new article: Build Self Optimizing Expert Advisors in MQL5 (Part 3): Dynamic Trend Following and Mean Reversion Strategies . Financial markets are typically classified as either in a range mode or a trending mode. This static view of the market may make it easier for us to trade in the
Close Basket Pairs v1 : This MQL4 EA is designed to close positions for a basket of currency pairs based on certain profit and loss thresholds. Author: Iulian Persinaru
AllAverages v4.9 MT5 : One of the latest version of this indicator at the moment. Huge base of different modifications of moving averages, with multitimesframe function, sending signals to e-mail and push notifications. Author: IVAN ASTAFUROV
Check out the new article: Neural Networks Made Easy (Part 97): Training Models With MSFformer . When exploring various model architecture designs, we often devote insufficient attention to the process of model training. In this article, I aim to address this gap. The initial training dataset gives
Check out the new article: MQL5 Wizard Techniques you should know (Part 52): Accelerator Oscillator . The Accelerator Oscillator is another Bill Williams Indicator that tracks price momentum's acceleration and not just its pace. Although much like the Awesome oscillator we reviewed in a recent
Profit labels for closed trades (deals) : Creating profit labels on deals (closed trades) which also show in the strategy tester Author: Conor Mcnamara
Check out the new article: Ensemble methods to enhance classification tasks in MQL5 . In this article, we present the implementation of several ensemble classifiers in MQL5 and discuss their efficacy in varying situations. The classification ensembles discussed in this article operate under specific
Check out the new article: Example of new Indicator and Conditional LSTM . This article explores the development of an Expert Advisor (EA) for automated trading that combines technical analysis with deep learning predictions. Technical indicators have long been used by the financial industry to spot
Check out the new article: Deep Learning GRU model with Python to ONNX with EA, and GRU vs LSTM models . We will guide you through the entire process of DL with python to make a GRU ONNX model, culminating in the creation of an Expert Advisor (EA) designed for trading, and subsequently comparing GRU
Check out the new article: Creating an MQL5-Telegram Integrated Expert Advisor (Part 4): Modularizing Code Functions for Enhanced Reusability . In this article, we refactor the existing code used for sending messages and screenshots from MQL5 to Telegram by organizing it into reusable, modular