Syntax
Public Function CopyHigh(chartID As Integer, startPos As Long, Count As Long, ByRef highArray As Variant)As Integer
Description
This function is used to return the history data saved in highArray of the highest bars in the specified chart.
Parameters
Key | Description |
chart_ID | Chart identifier, 0 is the current chart, the value of type Long |
startPos | The start position to copy, the value of type Long. |
Count | Data count to be copied, the value of type Long. |
highArray | Array for saving the result data in, the value of type Variant. |
Return value
Returns the copied data count. If -1 is returned there is an error.
Sample
Public Sub main()Dim highArray AlertMessage CopyHigh(0,1,Bars(0),highArray) ' Returns -1 if there was an error. End Sub
See Also