iBand in 1st indicator window

 

The Bollinger Bands shown in the 1st indicator window, uses the Stochastic Oscillator (28,3,5) [levels from 0 - 100]

How do I read this figure between 0 - 100 using the iBand() function?

double BandTop1=iBands(NULL,0,26,1,0,PRICE_CLOSE,MODE_UPPER,1);
BandTop1 between 0-100

The question is further explained here: https://forum.mql4.com/36606

 

hi..

are u want to compare the 0-100 value with your bollinger band?

like this:

if ( BandTop1 <100)

{

ordersend....

}

 
hardyyanto:

hi..

are u want to compare the 0-100 value with your bollinger band?

like this:

if ( BandTop1 <100)

{

ordersend....

}


Yes,

the BB is in the indicator window but I do not know how to get the 0-100 value.

 

use iCustom()

 
qjol:

use iCustom()


Thank you kindly.
 

if the 0-100 value is fixed, should will get that directly..

what do u want about that value?

explanation your condition, so we can make easy for u..

:)

 
hardyyanto:

if the 0-100 value is fixed, should will get that directly..

what do u want about that value?

explanation your condition, so we can make easy for u..

:)


(Or) & Attach the indicator

 
qjol:


(Or) & Attach the indicator

That has been done now, thank you.