GetIndic(Name) as Array

GetIndic returns an array containing the values of the selected indicator.

 

This function has one parameter:
Name   The name of the indicator you want to retrieve.

 

Example:

' Trix MA
' This is an indicator
Sub Main()
  TempArr = GetIndic("Trix")
  SetIndic SMA(TempArr, 10)
End Sub