Indicators: Bollinger bands squeeze

 

Bollinger bands squeeze:

Bollinger bands squeeze

Bollinger bands squeeze

Author: Mladen Rakic

 
is there an MT4 version of this exact indicator? 
 
I love this indicator, thanks for sharing.
 

Could I ask a question?


I found the code below.

      keld[i] = mid[i]-atr[i]*_kcMultiplier;

      kelu[i] = mid[i]+atr[i]*_kcMultiplier;

      bool _squeeze = (kelu[i]>bbup[i]);


Why the _squeeze only depends on the kelu? How about the keld?


Regards,

 
KT Chen #:

Could I ask a question?


Why the _squeeze only depends on the kelu? How about the keld?


Regards,

   

      The atr from the mid price is the same for upper and lower Keltner, so there is no need to check both of them for a squeeze.

 
maximo #:

   

      The atr from the mid price is the same for upper and lower Keltner, so there is no need to check both of them for a squeeze.

Got it. Thanks!

 
This is a really nice indicator thanks for sharing, but is there an EA version?