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