| EMA(Array, Period) as Array |
This function has two parameters:
| Array | The array that contains the initial values to process the exponential moving average. |
| Period | The period of the moving average. Must be an integer. |
Example:
|
' Trix MA ' This is an indicator Sub Main() TempArr = GetIndic("Trix") SetIndic EMA(TempArr, 10) End Sub |