GetClose as Array
GetClose returns an array containing the closing prices.
Example:
' This is an indicator showing the linear regression of the closing prices.
Sub Main()
SetIndic(StdDev(
GetClose
), 10)
End Sub