Syntax
Public Function CopyOpen(chartID As Integer, startPos As Long, Count As Long, ByRef openArray As Variant)As Integer
Description
This function is used to return history data of the open bars for the specified chart that saved on an open array
Parameters
Key | Description |
chartID | Chart location at chart window, 0 mean current chart, the value of type Integer |
startPos | The start position to copy, the value of type Long. |
Count | Data count to be copied, the value of type Long. |
openArray | Array for saving the results 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 openArray AlertMessage CopyOpen(0,1,Bars(0),openArray) ' Returns -1 if there was an error. End Sub
See Also