% Bollinger Bands (B).


Namespace: OpenQuant.API.Indicators
Assembly: OpenQuant.API (in OpenQuant.API.dll)

Syntax

Visual Basic (Declaration)
Public Class B
    Inherits Indicator
C#
public class B : Indicator
C++
ref class B : Indicator
J#
public class B extends Indicator
JScript
public class B extends Indicator

Remarks

The Bollinger %b should be interpreted as follows:
A value of 1.0 would mean that price is currently at the upper band.
A value above 1 would mean that price is currently above the upper band.
A value of 0 would mean price is currently at the lower band.
A negative value would mean that price is currently below the lower band.

Formula:

Inheritance Hierarchy

System.Object
   OpenQuant.API.Indicator
      OpenQuant.API.Indicators.B

Thread Safety

Public static (Shared in Visual Basic)staticShared members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

See Also