Articles, Library comments - page 28

jMasterRSX v1 by jirimac: Based on RSX multiple timeframes for EURUSD Author: jirimac
Fourier extrapolation of price: This indicator fits a trigonometric model to prices and extrapolates it in the future. This indicator uses the Quinn-Fernandes algorithm to find the harmonic frequencies. It fits harmonics of the trigonometric series one by one until the specified total number of...
Check out the new article: Developing a Replay System (Part 53): Things Get Complicated (V) . In this article, we'll cover an important topic that few people understand: Custom Events. Dangers. Advantages and disadvantages of these elements. This topic is key for those who want to become a
Check out the new article: Creating a Trading Administrator Panel in MQL5 (Part VI):Trade Management Panel (II) . In this article, we enhance the Trade Management Panel of our multi-functional Admin Panel. We introduce a powerful helper function that simplifies the code, improving readability
Check out the new article: Price Action Analysis Toolkit Development (Part 2): Analytical Comment Script . Aligned with our vision of simplifying price action, we are pleased to introduce another tool that can significantly enhance your market analysis and help you make well-informed decisions. This
Check out the new article: Data Science and Machine Learning (Part 21): Unlocking Neural Networks, Optimization algorithms demystified . Dive into the heart of neural networks as we demystify the optimization algorithms used inside the neural network. In this article, discover the key techniques
Check out the new article: Developing Zone Recovery Martingale strategy in MQL5 . The article discusses, in a detailed perspective, the steps that need to be implemented towards the creation of an expert advisor based on the Zone Recovery trading algorithm. This helps automate the system saving time
Check out the new article: Exploring Cryptography in MQL5: A Step-by-Step Approach . This article explores the integration of cryptography within MQL5, enhancing the security and functionality of trading algorithms. We’ll cover key cryptographic methods and their practical implementation in
Check out the new article: Mutual information as criteria for Stepwise Feature Selection . In this article, we present an MQL5 implementation of Stepwise Feature Selection based on the mutual information between an optimal predictor set and a target variable. Mutual information is a valuable tool
Check out the new article: Neural Networks Made Easy (Part 93): Adaptive Forecasting in Frequency and Time Domains (Final Part) . In this article, we continue the implementation of the approaches of the ATFNet model, which adaptively combines the results of 2 blocks (frequency and time) within time
Check out the new article: Automating Trading Strategies in MQL5 (Part 1): The Profitunity System (Trading Chaos by Bill Williams) . In this article, we examine the Profitunity System by Bill Williams, breaking down its core components and unique approach to trading within market chaos. We guide
Check out the new article: Connexus Observer (Part 8): Adding a Request Observer . In this final installment of our Connexus library series, we explored the implementation of the Observer pattern, as well as essential refactorings to file paths and method names. This series covered the entire
Price Rate of Change (ROC): As you know, prices drop and grow in ondulatory way, in cycles. This cyclic movement is a result of change in investors' expectations and the price control fight between bulls and bears. Price Rate of Change (ROC) reflects this ondulatory movement like an oscillator,...
Check out the new article: A Generic Optimization Formulation (GOF) to Implement Custom Max with Constraints . In this article we will present a way to implement optimization problems with multiple objectives and constraints when selecting "Custom Max" in the Setting tab of the MetaTrader 5
Check out the new article: Price Action Analysis Toolkit Development (Part 1): Chart Projector . This project aims to leverage the MQL5 algorithm to develop a comprehensive set of analysis tools for MetaTrader 5. These tools—ranging from scripts and indicators to AI models and expert advisors—will
Check out the new article: Understanding order placement in MQL5 . When creating any trading system, there is a task we need to deal with effectively. This task is order placement or to let the created trading system deal with orders automatically because it is crucial in any trading system. So, you
Check out the new article: MQL5 Wizard Techniques you should know (Part 48): Bill Williams Alligator . The Alligator Indicator, which was the brain child of Bill Williams, is a versatile trend identification indicator that yields clear signals and is often combined with other indicators. The MQL5
Check out the new article: Visualizing deals on a chart (Part 2): Data graphical display . Here we are going to develop a script from scratch that simplifies unloading print screens of deals for analyzing trading entries. All the necessary information on a single deal is to be conveniently displayed
Triangle Day : The indicator plots (using OBJ_TRIANGLE) the area between 'Open', 'High', 'Low' and 'Close' of the day Author: Vladimir Karputov
xauusd nas profitable ea : more explanation about this ea visit my youtube https://www.youtube.com/watch?v=IJCHqImjJdg Author: Allan Maurice Mwesigwa
Check out the new article: Neural Networks Made Easy (Part 88): Time-Series Dense Encoder (TiDE) . In an attempt to obtain the most accurate forecasts, researchers often complicate forecasting models. Which in turn leads to increased model training and maintenance costs. Is such an increase always
MT4 to MT5 Convertor (MT5Compat.mqh) : A new interface library has been developed to simplify 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. Author
AbsoluteStrength: The oscillator that displays forces of Buyers (Bulls) and Sellers (Bears) separately. Author: Igor Durkin
Check out the new article: MQL5 Wizard Techniques you should know (Part 22): Conditional GANs . Generative Adversarial Networks are a pairing of Neural Networks that train off of each other for more accurate results. We adopt the conditional type of these networks as we look to possible application
ZigZag on Fractals: ZigZag based on the Fractals indicator. Author: Vladimir Karputov
Trailing with Close by Button and Profit : This EA help you for Auto set the TP & SL by default parameter, Auto trailing stop & step for any order that you place from any device, Easy way to close all orders with 3 Button "Close All" "Close Profit" "Close Lose", Auto close all orders by profit or
Check out the new article: Reimagining Classic Strategies (Part XI): Moving Average Cross Over (II) . The moving averages and the stochastic oscillator could be used to generate trend following trading signals. However, these signals will only be observed after the price action has occurred. We can
DeMarker Pending 2_5 : Finalization of previous version. Now, when opening a 'SELL' position, we immediately close all 'BUY' positions and vice versa: when opening a 'BUY' position, we immediately close all 'SELL' positions Author: Vladimir Karputov
Check out the new article: MQL5 Wizard Techniques you should know (Part 47): Reinforcement Learning with Temporal Difference . Temporal Difference is another algorithm in reinforcement learning that updates Q-Values basing on the difference between predicted and actual rewards during agent training
Check out the new article: Client in Connexus (Part 7): Adding the Client Layer . In this article we continue the development of the connexus library. In this chapter we build the CHttpClient class responsible for sending a request and receiving an order. We also cover the concept of mocks, leaving