Expert Advisor problem - page 2

 
WHRoeder:

The translation appears to be how history gets filled and how indicators must use prev_calculated or IndicatorCounted() in OnCalculate.

eevviill No one ever said to use new bar code in indicators. That is only to be used in EA's OnStart.

Haha...

Will you use bars instaed of time now?

 

Why? Some indicators needs to be updated once at bar.  

 

There is no mode _main for iBands in the documentation


But maybe it work, can you check it ?


 
ffoorr:
There is no mode _main for iBands
That's news to me.
 
GumRai:
That's news to me.

1) You must help if you are moderator.

2)  Yes. Reference is bad written(there is no main line in this section).

https://docs.mql4.com/constants/indicatorconstants/lines

 
ffoorr:

There is no mode _main for iBands in the documentation


But maybe it work, can you check it ?


https://docs.mql4.com/indicators/ibands

 [in]  Indicator line index. It can be any of the Indicators line identifiers enumeration value (0 - MODE_MAIN, 1 - MODE_UPPER, 2 - MODE_LOWER).

 
I see thank
 

it work, well, if I do that it work :

 if( ArrayMinimum(BBwidth,size-1,1)  == 2 )
  {
    int ticket = OrderSend(_Symbol, OP_BUY, 0.1, Ask, 3, 0,0, "", 2564 );
  }
Reason: