Buffers

Indicator Buffers Collection.

 public List<IndicatorBuffer> Buffers

Type

IndicatorBuffer

IndicatorBuffer is type of Buffers.

Remarks

Buffers is collection of buffers for indicator.

Example

  public IndicatorBuffer UpBuffer { get; set; }
  public Indicator()
  {
        UpBuffer = new IndicatorBuffer(BufferTypes.Object, BufferStyles.TriangleUp, Color.Teal, Sizes.Small, 20);
        Buffers.Add(UpBuffer);
  } 

Methods

Add(IndicatorBuffer Buffer) Add method adds indicator buffer to collection.