Discussion of article "Neural Networks Cheap and Cheerful - Link NeuroPro with MetaTrader 5" - page 7

 
JD4:
I don't know what experience others have been having with downloading NeuroPro 0.25 (in a zip file), but I found it on a Russian language only site using a search engine, but when I tried running the setup program within it, it told me I didn't have the proper version of windows.  After checking that site through an online translation site (alot of copying and pasting), it appears that it doesn't like Windows Vista, and the preferred versions are Windows 3.10 (remember that?) and 95.  I have also found the Neuroph program, hopefully it will be able to work with MT4 and 5, and MQL as well.

Hi JD4,

I had the same problems with NeuroPro (getting it translated)...so I kept looking and found Neuroph...which looks very similar to NeuroPro.

I also found another great free neural net program called Encog...

Both were great places for beginners (like me) to learn neural nets...and both work fine with Windows 8

Neuroph was good to learn the basics...and has a great GUI that helps a lot...but it's a little limited for real applications.

It has no print out of it's weights and thresholds to use for indicators or EA's.

Someone with basic Java coding could probably easily make these functions...and then fairly easily connect them to MT4.

Encog was the next step up in neural net power...and while the GUI is a little more complex...

It has a built-in function that you can actually make Encog predictive indicators immediately for MT4...

As a beginner I was amazed to have actually made my own MT4 neural net predictive indicators using Encog...! Big steps forward in my learning...!

Haven't tested them extensively yet to see how accurate they are...but it's a great start for me in this exciting field of AI and neural nets...

The only downside was the limited support with no active forums...so you have to be persistent in your efforts.

I'm now looking at Deep Learning systems as well now...but will continue to play with Neuroph and Encog to learn more.

I definitely recommend both (free) programs to starting learning how to use neural nets.

Free tools to learn exciting new neural net skills...can't beat the price...!

Thanks for sharing,

Robert

 
What about normalising the data to the range 1,-1 if it is not EURUSD but let's say XAUUSD?
 

really liked this article !!!!

Question.

Barom 24 is understandable.

But why are there so many days with the same number? Shouldn't one day have 24 bars????

If you look at the picture Fig. 5 you can see the date 2014.09.25 occurs 15 times, and the following date 2014.09.26 - 24 times..... Why 24 times the date is repeated?????, and not once. That is in one day 24 bars... and here 24 days with the same date and 24 bars....

Spill it all you want, send it wherever you want, but explain it.

 
This is one of the best examples of a nice curve fitting approach.
 

Guys need help

can't rewrite robot on mt4

void Trade()

  {

// Закроем открытую позицию, если она против прогноза

  if(PositionSelect(_Symbol))

     {

      long type=PositionGetInteger(POSITION_TYPE);

      bool close=false;

      if((type == POSITION_TYPE_BUY)  && (Prognosis <= 0)) close = true;

      if((type == POSITION_TYPE_SELL) && (Prognosis >= 0)) close = true;

      if(close)

        {

         CTrade trade;

         trade.PositionClose(_Symbol);

        }

     }

// Если позиций нет, то откроем по прогнозу

   if((Prognosis!=0) && (!PositionSelect(_Symbol)))

     {

      CTrade trade;

      if(Prognosis >  MinPrognosis) trade.Buy (Lots);

      if(Prognosis < -MinPrognosis) trade.Sell(Lots);

     }

  } 


 

Very nice article Andrew but it would have been more helpful for all those who cannot read Russian if you

marked with arrows in the screenshots of NeuroPro which menu item you currently mean.

If you translate into German then translate everything.

2) Projekt anlegen: Menü "Datei" > "Anlegen":

Greetings

 

It seems that NeuroPro 0.25 cannot be launched on my Windows 7 64 bits system ( Setup does not execute , even under the "virtual" mode that Windows 7 proposes to fix the problem).

For those who did succeed in executing the Setup.exe file, what OS did you use please ? )


Best regards.

 
MetaQuotes Software Corp.:

Published article Neural Networks for free and angry - connecting NeuroPro and MetaTrader 5:

Author: Andrew


How to add Tp and Sl ?

 
Just checked: stupid fitting. After the trained period there is a chaotic picture with no signs of life right from the next bar.
 
It doesn't make much sense to just learn the closing price, it would be nice to have an explanation of how to learn the opening price, high price, low price, closing price, or to learn the indicator data.