GetOpen as Array
GetOpen returns an array containing the open prices.
Example:
' This is an indicator showing the exponential moving averages of the open prices.
Sub Main()
SetIndic(EMA(
GetOpen
), 10)
End Sub