I saw that many people get this error when using this DLL.
I got it a couple of time also.
When it's like this I just restart MetaTrader and usually it works.
I'm not the author of the library, so I don't know what is the cause.
I'm working on a version using the more stable and open-source Fann instead (http://leenissen.dk/fann/) via the Fann2MQL Library (http://fann2mql.wordpress.com/).
I will post it when it's ready.
A tutorial about how to create simple neural networks (with a pattern recognition example) has been posted and is awaiting approval to be published on this site.
I wanted a Stochastic predictor
double getValue(int i) {
return(iStochastic(NULL,0,5,3,3,MODE_SMMA,PRICE_OPEN,0,i));
}
but there was no graph, what's wrong with the code ?
I wanted a Stochastic predictor
double getValue(int i) {
return(iStochastic(NULL,0,5,3,3,MODE_SMMA,PRICE_OPEN,0,i));
}
but there was no graph, what's wrong with the code ?
you must use the RSI base code which writes in a separate windows and use the right parameters in stoch function call !! (like this)
return(iStochastic(NULL,0,5,3,3,MODE_SMA,0,MODE_MAIN,i));
Really nice develop, thanks zenhop !
I saw that many people get this error when using this DLL.
I got it a couple of time also.
When it's like this I just restart MetaTrader and usually it works.
I'm not the author of the library, so I don't know what is the cause.
I'm working on a version using the more stable and open-source Fann instead (http://leenissen.dk/fann/) via the Fann2MQL Library (http://fann2mql.wordpress.com/).
I will post it when it's ready.
A tutorial about how to create simple neural networks (with a pattern recognition example) has been posted and is awaiting approval to be published on this site.
This dll really has a lot of trouble.
I'm actually using the first release published by gpwr (really great work !) and it works, but this one crashes terminal.exe !!
Someone can work on a stable release ?
Hi All,
I modified the BPNN.dll so it will (most probably) not crash: http://codebase.mql4.com/en/code/9599
Don't ask me about details - I'm a Mac user, I don't know about all your Windows stuff ;-)
I had to download and install MS Visual Studio 2010 which took half a day and couple of Windows restarts (why?).
Only to comment two lines and compile...
The whole VS is like an old rusty car compared to XCode... Not to mention the XCode is a part of Mac OS bundle while VS has to be bought separately.
Fortunately I have the whole Windows on VM as just another application ;-)
ALX
I have installed both indicators,they are visible properly.Please help me to interpret them
thanks

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Create your own neural network predictor easily (example: MA and RSI Predictors):
Author: Julien