Articles, Library comments - page 54

AverageRangeLines_v1.6 : ADR,AWR,AMR,Draws Average Range Lines Author: NickBixy
Check out the new article: Algorithmic Trading With MetaTrader 5 And R For Beginners . Embark on a compelling exploration where financial analysis meets algorithmic trading as we unravel the art of seamlessly uniting R and MetaTrader 5. This article is your guide to bridging the realms of analytical
Check out the new article: Build Self Optimizing Expert Advisors With MQL5 And Python (Part II): Tuning Deep Neural Networks . Machine learning models come with various adjustable parameters. In this series of articles, we will explore how to customize your AI models to fit your specific market
New article Trading Tactics on Forex has been published: The article will help a beginning trader to develop trading tactics on FOREX. Author: Victor Chebotariov
New article Features of Experts Advisors has been published: Creation of expert advisors in the MetaTrader trading system has a number of features. Author: MetaQuotes Software Corp.
Moving Average with alerts on price crossovers : I wanted to build a moving average which would create an alert when the price moves over the line by a user defined amount of points. It creates both bullish and bearish signals depending on the direction of market price moving through the MA. It is
Check out the new article: Developing a Replay System (Part 42): Chart Trader Project (I) . Let's create something more interesting. I don't want to spoil the surprise, so follow the article for a better understanding. From the very beginning of this series on developing the replay/simulator system
Check out the new article: OpenAI's ChatGPT features within the framework of MQL4 and MQL5 development . In this article, we will fiddle around ChatGPT from OpenAI in order to understand its capabilities in terms of reducing the time and labor intensity of developing Expert Advisors, indicators and
Check out the new article: Data Science and ML (Part 28): Predicting Multiple Futures for EURUSD, Using AI . It is a common practice for many Artificial Intelligence models to predict a single future value. However, in this article, we will delve into the powerful technique of using machine learning
Check out the new article: Role of random number generator quality in the efficiency of optimization algorithms . In this article, we will look at the Mersenne Twister random number generator and compare it with the standard one in MQL5. We will also find out the influence of the random number
MovingAverages.mqh Part I by Wiliam210 : This indicator shows you how to use native functions SimpleMA(), ExponentialMA(), SmoothedMA(), LinearWeightedMA which are in the MovingAverages.mqh library in the includes directory Author: Gerard Willia G J B M Dinh Sy
Check out the new article: Developing a Replay System (Part 39): Paving the Path (III) . Before we proceed to the second stage of development, we need to revise some ideas. Do you know how to make MQL5 do what you need? Have you ever tried to go beyond what is contained in the documentation? If not
We all know MQL5 is a great language. It provides a full set of functions to deal with the market data and to develop programs and automated strategies. But sometimes it may not attend to all of our needs. Imagine you want pass a double** ptr to a function. You can't do that in MQL5, because
New article DIY multi-threaded asynchronous MQL5 WebRequest has been published: The article describes the library allowing you to increase the efficiency of working with HTTP requests in MQL5. Execution of WebRequest in non-blocking mode is implemented in additional threads that use auxiliary charts
Four clicks to draw an arc-shaped channel: A quick way to draw an arc-shaped channel using four mouse clicks. Author: Nikolai Semko
Check out the new article: Creating a Dynamic Multi-Symbol, Multi-Period Relative Strength Indicator (RSI) Indicator Dashboard in MQL5 . In this article, we develop a dynamic multi-symbol, multi-period RSI indicator dashboard in MQL5, providing traders real-time RSI values across various symbols and
Check out the new article: Practicing the development of trading strategies . In this article, we will make an attempt to develop our own trading strategy. Any trading strategy must be based on some kind of statistical advantage. Moreover, this advantage should exist for a long time. A trading
Check out the new article: Developing an MQL5 RL agent with RestAPI integration (Part 4): Organizing functions in classes in MQL5 . This article discusses the transition from procedural coding to object-oriented programming (OOP) in MQL5 with an emphasis on integration with the REST API. Today we
stoploss by atr : input menu art period 14 ------------------------------ buffer setting buffer 0 or "Blue line" for sell stoploss buffer 1 or "Red line " for buy stoploss Author: Pikrih Pirmansyah
Check out the new article: Neural Networks Made Easy (Part 81): Context-Guided Motion Analysis (CCMR) . In previous works, we always assessed the current state of the environment. At the same time, the dynamics of changes in indicators always remained "behind the scenes". In this article I want to
ImpulseOsMA : The indicator draws bars based on Elder's impulse system. Author: Nikolay Kositsin
New article Library for easy and quick development of MetaTrader programs (part XXVI): Working with pending trading requests - first implementation (opening positions) has been published: In this article, we are going to store some data in the value of the orders and positions magic number and start
Check out the new article: Advanced Variables and Data Types in MQL5 . Variables and data types are very important topics not only in MQL5 programming but also in any programming language. MQL5 variables and data types can be categorized as simple and advanced ones. In this article, we will identify
SuperTrend_Dot: SuperTrend Dot indicator Author: Scriptor
DPO Histogram and smoothing : This version of the 'Detrended Price Oscillator' shows the DPO in blue with a smoothed estimate of it as a histogram to view the length of price cycles from peak to peak and trough to trough. Author: maximo
Check out the new article: Causal analysis of time series using transfer entropy . In this article, we discuss how statistical causality can be applied to identify predictive variables. We will explore the link between causality and transfer entropy, as well as present MQL5 code for detecting
Check out the new article: Building A Candlestick Trend Constraint Model (Part 7): Refining our model for EA development . In this article, we will delve into the detailed preparation of our indicator for Expert Advisor (EA) development. Our discussion will encompass further refinements to the
Check out the new article: Population optimization algorithms: Whale Optimization Algorithm (WOA) . Whale Optimization Algorithm (WOA) is a metaheuristic algorithm inspired by the behavior and hunting strategies of humpback whales. The main idea of WOA is to mimic the so-called "bubble-net" feeding
Check out the new article: Seasonality Filtering and time period for Deep Learning ONNX models with python for EA . Can we benefit from seasonality when creating models for Deep Learning with python? Does filtering data for the ONNX models help to get better results? What time period should we use
Check out the new article: MQL5 Wizard Techniques you should know (Part 16): Principal Component Analysis with Eigen Vectors . Principal Component Analysis, a dimensionality reducing technique in data analysis, is looked at in this article, with how it could be implemented with Eigen values and