Discussion of article "Programming a Deep Neural Network from Scratch using MQL Language" - page 2

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
Hi Li,
I have updated the article with 2 demos files. One for MQL5 and one for MQL4. The DeepNeuralNetwork.mqh can be used for both, mql5 and mql4.
In anyway, I'm attaching this files here to show how to use it.
Let me know if you have more questions.
Thanks for the codes you shared. Tried to understand the way of your.
I have some hesitation since about yValues[0] , yValues[1], yValues[2] since they are NOT changing and always 0,33333 but _xValues[1,2,3] are changing with new bar ; so if trade based on yValues I did not see ANY TRADE while TRADE OCCURS when conditions based on _xValues.
Is it my fault or simply miscoding error in your original code ?
Update the following function to return `bool` instead of `void` and you will see that there was a bad number of weights given.
Note that you also need to update the wheights on top of the file (it's not enough to update them only when you initialize the network :P
many thanks
I was working on it for quite a while now
I dont know whats wrong on my code since i'm not an expert i'm just an IT student studying in a community college
I would like to make your EA into custom indicator that just make object label
(Buy [+1], Sell[-1],ignore[0] also sir i change rates[0].high to rates[1].high) but no matter how i read some documentation it doesnt show the final output
Update the following function to return `bool` instead of `void` and you will see that there was a bad number of weights given.
Note that you also need to update the wheights on top of the file (it's not enough to update them only when you initialize the network :P
It's a hard-coded NN, I don't recommend increasing the number of neurons as you won't be able to train it later...
1. When I compile the file "DeepNeuralNetwork.mqh", I have some errors and couldn't fix them.
2. In DemoEADNN.mq5, couldn't find this two files, see the screenshot below.
Thanks.
A very useful article
Thank you so much