SetIndic(Array)
SetIndic puts a complete array of values to the indicator you have created. It's to simplify the writing of some basic indicators.
This procedure has one parameter:
Array
The array that contains the values for the indicator.
Example:
' Trix MA
' This is an indicator
Sub Main()
TempArr = GetIndic("Trix")
SetIndic SMA(TempArr, 10)
End Sub