
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
Please can you share the complete MQ4
(Better EA) = (Command Line Tester) + SVM
I have been coding some SVM in metatrader 4 and would like if you could share the Better EA development. The actual EA complete that is ready to use. I can offer to pay something small for your efforts if that's OK. Please email me at
links
thanks denis for the links
six months i work on pnn algorithm in forex
pnn algorithm are not difficult, but it's very difficult to have stable systems, and to found corrects inputs
i have add in my ea a function which calculate at each new bar, the results (in the past) of N PNN subsystems (N=1000) and choose the best ones to choose if Buy or Sell
it gives some good results, i'll continue to work
i don't dream about the grail, but only an adaptative EA, wich find the good pattern in each market condition
i would like to give my results to people who want to work in this direction
sorry for my bad english
thanks denis for the links
six months i work on pnn algorithm in forex
pnn algorithm are not difficult, but it's very difficult to have stable systems, and to found corrects inputs
i have add in my ea a function which calculate at each new bar, the results (in the past) of N PNN subsystems (N=1000) and choose the best ones to choose if Buy or Sell
it gives some good results, i'll continue to work
i don't dream about the grail, but only an adaptative EA, wich find the good pattern in each market condition
i would like to give my results to people who want to work in this direction
sorry for my bad englishHi Stef,
I will be more than happy to help in working together on your PNN. if you can post mq4 file. I will look at it and help . Let me know
PNN example
Hi There
Does anybody have a Probability Neural Network example in mql4?
I have looked everywhere for something but only find algorithms which I do not understand.
I am a programmer and unfortunately not a mathematician.
I have worked with this code before:
double ai(string curr){
double w1 = i1 - 100.0;
double w2 = i2 - 100.0;
double w3 = i3 - 100.0;
double w4 = i4 - 100.0;
double a1 = iAO(curr, 0, 0);
double a2 = iAO(curr, 0, 7);
double a3 = iAO(curr, 0, 14);
double a4 = iAO(curr, 0, 21);
return (w1 * a1 + w2 * a2 + w3 * a3 + w4 * a4);
}
SVM signals for EURUSD