
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
@Omega J Msigwa thank you very much for this article. Can you please update the tutorial file since the last version of MALE5 doesn't have CPreprocessing? If not possible, which version of MALE5 was used to run this tutorial?
I am not sure if there is documentation for the library.
Thanks
@Omega J Msigwa thank you very much for this article. Can you please update the tutorial file since the last version of MALE5 doesn't have CPreprocessing? If not possible, which version of MALE5 was used to run this tutorial?
I am not sure if there is documentation for the library.
Thanks
Use the cprecessi mg code attached in this article for anything concerning this tutorial
I am referring to this line :
#include <MALE5\preprocessing.mqh> // you point to use https://github.com/MegaJoctan/MALE5/blob/MQL5-ML/preprocessing.mqh which doesn't have CPreprocessing
Ok got it, if thats the case change that line to:
#include <preprocessing.mqh>
After saving the preprocessing.mqh found on this zip file (attached in the article) , under include folder.
CPreprocessing has been deprecated since v2.0.0. Which is the version used in this article.
Alternatively, call each of the scalers present in the preprocessing file instead of CPreprocessing. Assuming you are using MALE5 version 3.0.0
Each scaler class provides.
Which fits the scaler on the data matrix X and performs the transformation.
Which transforms the data matrix X using the fitted scaler.
Which transforms the data vector X using the fitted scaler.
Let me know if this was helpful.