RL algorithms – library MetaTrader 5

RL algorithms - library for MetaTrader 5
The idea and the simplest algorithm are provided in the article “Random decision forest in reinforcement learning“ The library has advanced functionality allowing you to create an unlimited number of “Agents”. In addition, variations of the “Arguments group accounting method” are used Using the library: #include <RL gmdh.mqh> CRLAgents *ag1=new CRLAgents(“RlExp1iter”,1,100,50,regularize,learn); //created 1 RL agent accepting … Read more

Smooth Algorithms – Corrected/Modified – library MetaTrader 5

SmoothAlgorithms.mqh logo
Original code and description here:https://www.mql5.com/en/code/17472 Modifications: Corrected errors that prevent compiling indicators that won’t due to errors in the <SmoothAlgorithms.mqh> file. I’ve also changed “int period” to “double period” in a lot of places so you can now use decimal periods on your custom indicators. This feature works, I’ve checked. Smooth Algorithms – Corrected/Modified – … Read more

Smooth Algorithms – Corrected/Modified – library MetaTrader 5 – library MetaTrader 5

Smooth Algorithms - Corrected/Modified - library for MetaTrader 5 - library for MetaTrader 5
This library is fully functional and bug free. A few years ago I thoroughly revised this library. Exactly  2021, ensuring its reliability. I recommend reading the author’s original explanation for this library at the following   LINK. In this example, you will see complete and operational project, labeled “Example EA”. This project uses a template obtained … Read more