Articles, Library comments - page 61

Check out the new article: Neural Networks in Trading: Point Cloud Analysis (PointNet) . Direct point cloud analysis avoids unnecessary data growth and improves the performance of models in classification and segmentation tasks. Such approaches demonstrate high performance and robustness to
Check out the new article: Neural Network in Practice: The First Neuron . In this article, we'll start building something simple and humble: a neuron. We will program it with a very small amount of MQL5 code. The neuron worked great in my tests. Let's go back a bit in this series of articles about
Check out the new article: Introduction to Connexus (Part 1): How to Use the WebRequest Function? . This article is the beginning of a series of developments for a library called “Connexus” to facilitate HTTP requests with MQL5. The goal of this project is to provide the end user with this
RPoint : The chart layout in X-points reversal Fig.1 The RPoint indicator Author: Nikolay Kositsin
Market Profile MT4 : Market Profile MetaTrader indicator — is a classic Market Profile implementation that can show the price density over time, outlining the most important price levels, value area, and control value of a given trading session. This indicator can be attached to timeframes between
Check out the new article: Creating a Trading Administrator Panel in MQL5 (Part IX): Code Organization (IV): Trade Management Panel class . This discussion covers the updated TradeManagementPanel in our New_Admin_Panel EA. The update enhances the panel by using built-in classes to offer a
Check out the new article: Neural Networks in Trading: Hierarchical Vector Transformer (Final Part) . We continue studying the Hierarchical Vector Transformer method. In this article, we will complete the construction of the model. We will also train and test it on real historical data. The training
New article Idleness is the Stimulus to Progress. Semiautomatic Marking a Template has been published: Among the dozens of examples of how to work with charts, there is a method of manual marking a template. Trend lines, channels, support/resistance levels, etc. are imposed in a chart. Surely,...
  Indicators: iCrossAD  (12   1 2)
iCrossAD : iCrossAD signal indicator. It shows possible reversals or price roll-backs. Author: Artyom Trishkin
Exp_WPR_Slowdown : Trading system based on the signals of the WPR_Slowdown indicator. Author: Nikolay Kositsin
  Indicators: FivePattern  (97   1 2 3 4 5 ... 9 10)
FivePattern : This indicator shows М & W Wave Patterns by Merrill and support/resistance levels on a chart. The indicator is recalculated on each new history bar (to save CPU time when rendering objects). The names of all objects are pseudo-random. The indicator calculates the predicted price
Check out the new article: MQL5 Wizard Techniques you should know (Part 59): Reinforcement Learning (DDPG) with Moving Average and Stochastic Oscillator Patterns . We continue our last article on DDPG with MA and stochastic indicators by examining other key Reinforcement Learning classes crucial for
Check out the new article: From Basic to Intermediate: BREAK and CONTINUE Statements . In this article, we will look at how to use the RETURN, BREAK, and CONTINUE statements in a loop. Understanding what each of these statements does in the loop execution flow is very important for working with more
OHLC_Volume_Histo : The OHLC Volume Histogram indicator Author: Scriptor
Breakout Finder by LonesomeTheBlue : This is the exact conversion from pine script code by LonesomeTheBlue. Author: Yashar Seyyedin
iCHO Trend CCIDualOnMA Filter : Strategy based on the standard indicator iCHO (Chaikin Oscillator, CHO) and custom indicator 'CCIDualOnMA' Author: Vladimir Karputov
VALIDATION MQL5 (By REDPILL FOREX) : Ce code vous permet de passer la validation Mql5, pour les experts Advisor MT5 en toute facilité. Author: Dogo E Sylvain Akpalou
Check out the new article: Reimagining Classic Strategies in Python: MA Crossovers . In this article, we revisit the classic moving average crossover strategy to assess its current effectiveness. Given the amount of time time since its inception, we explore the potential enhancements that AI can
  Experts: Virtual Trailing Stop  (64   1 2 3 4 5 6 7)
Virtual Trailing Stop : Virtual Trailing Stop. Author: Vladimir Karputov
MA MACD Position averaging v2 : The Expert Advisor based on iMA (Moving Average, MA) and iMACD (Moving Average Convergence/Divergence, MACD). Averaging positions in case of a loss. Improvement of the version 1.0 Author: Vladimir Karputov
Check out the new article: Archery Algorithm (AA) . The article takes a detailed look at the archery-inspired optimization algorithm, with an emphasis on using the roulette method as a mechanism for selecting promising areas for "arrows". The method allows evaluating the quality of solutions and
Display optimised for console-type chart text output : This library allows you to create displays to easily output text information to the chart at the most optimal rate Author: Mihail Matkovskij
Check out the new article: Automating Trading Strategies in MQL5 (Part 13): Building a Head and Shoulders Trading Algorithm . In this article, we automate the Head and Shoulders pattern in MQL5. We analyze its architecture, implement an EA to detect and trade it, and backtest the results. The
Check out the new article: Day Trading Larry Connors RSI2 Mean-Reversion Strategies . Larry Connors is a renowned trader and author, best known for his work in quantitative trading and strategies like the 2-period RSI (RSI2), which helps identify short-term overbought and oversold market conditions
Martingale EA : This EA demonstrates how to implement martingale based on signals from any indicator. Author: Satyam Shivam
Check out the new article: MQL5 Wizard Techniques you should know (Part 58): Reinforcement Learning (DDPG) with Moving Average and Stochastic Oscillator Patterns . Moving Average and Stochastic Oscillator are very common indicators whose collective patterns we explored in the prior article, via a
Moving Averages with Colors : "Classical" MA with a twist: colors change depending on the angle of the slope. Author: Mladen Rakic
Detecting the start of a new bar or candle : Detecting the start of a new bar or candle in an Expert Advisor's OnTick() event handler. Author: Fernando Carreiro
Hull Variation : A variation of Hull moving average that allows speed adjusting of the HMA. Author: Mladen Rakic
Check out the new article: Master MQL5 from beginner to pro (Part V): Fundamental control flow operators . This article explores the key operators used to modify the program's execution flow: conditional statements, loops, and switch statements. Utilizing these operators will allow the functions we