Fractals

Path: Indicators

Returns fractals indicator value.

 public double Indicators.Fractals(int BufferIndex, int BarIndex = 0);

Parameters

BufferIndex int

BufferIndex is index of buffer. Fractals indicator contain 2 buffers so value can be 0 or 1.

BarIndex int

BarIndex is index of bar to get value.

Returns

value double

Returns double value.

Remarks

EMA is a predefined indicator using this function you can get indicator value.

Example

  var value = Indicators.Fractals(14, 0);