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