Experts: Three neural networks - page 2

 
bunder :

Hi i've seen your work "Three neural networks - expert for MetaTrader 5" but it seems the EA is unstable.

I have good simulated results. When i tried to reproduce the results a second time (same data) results are different!

Can u explain?

We need initial data (parameters, symbol, timeframe, date (from ... to ...)

 
Thanks for this great EA idea.

I tried to use your EA on demo account. Which using constant lot 0.01 but it didnt work. If I set to "risk" at 8 or 9 it is working. why is it? or it is going to work only in real account?
 
Reza Adrianus :
Thanks for this great EA idea.

I tried to use your EA on demo account . Which using constant lot 0.01 but it didnt work. If I set to "risk" at 8 or 9 it is working. why is it? or it is going to work only in real account?

In the adviser There are no restrictions on the type of trading account (demo or real).

 
Vladimir Karputov:

In the adviser There are no restrictions on the type of trading account (demo or real).

got it, any idea why the EA did not open position for 'constant lot' ?
 
Reza Adrianus :
got it, any idea why the EA did not open position for 'constant lot' ?

I do not know how to read your mind. Excuse me.

 

Hi Vladimir

Can you add max buy and max sell in your EA?

too many orders open when condition confirm

 
TBS :

Hi Vladimir

Can you add max buy and max sell in your EA?

too many orders open when condition confirm

No. This project is closed.

 

I don't understand why only long trades are opened. No short trades.

I changed it

if((n1>0 && n2>0 && n3>0))
      m_need_open_buy=true;
   if((n1>0 && n2<0 && n3<0))
      m_need_open_sell=true;

To

if((n1>0 && n2>0 && n3>0))
      m_need_open_buy=true;
   if((n1<0 && n2<0 && n3<0))
      m_need_open_sell=true;