A quick and free library for MT4, much to the delight of neuralnetworkers - page 5
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
Dang, decided to try EA and FANN but during optimization the terminal crashes with an error, what's wrong I wonder???
Stubbornly continue to keep more details about the error in the deepest secrecy. Because the fewer people who use neural networks, the more money we will get.
Instruction accessed memory, memory can't be read........This is the error that pops up...... And the terminal crashes for good.....I installed the DLL as instructed.....
Most likely the processor does not hold the parallel mode. See comments on EA https://www.mql5.com/ru/code/9386
I'm embarrassed to ask. Of course I haven't studied the EA in detail yet, I wonder how to submit my inputs in this EA???? in which program block??? and how to submit multiple inputs???
(duck, here it is:
void ann_prepare_input () {
int i;
double res = 0;
for(i = 0; i < AnnInputs; i++) {
res = (iRSI(Symbol(), 0, 30, PRICE_OPEN, i) - 50.0) / 50.0;
if (MathAbs(res) > 1) {
if (res > 0) {
InputVector[i] = 1.0;
} else {
InputVector[i] = -1.0;
}
} else {
InputVector[i] = res;
}
}
}
Put whatever you want.))
Thanks, I understand, in the example 30 indicator values are fed to 30 inputs, how to make 15 values of one and 15 values of another indicator, just res variable one????
Declare
double res[2][15] ;
This will give us a lot of res