Smoothed Simple Moving Average (SSMA)

Path: Indicators

Returns smoothed simple moving average indicator value.

 public double Indicators.SSMA(int MA_Period, int BarIndex = 0);

Parameters

MA_Period int

MA_Period is period of simple moving average.

BarIndex int

BarIndex is index of bar to get value.

Returns

value double

Returns double value.

Remarks

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

Example

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