Syntax
Public Function CopyClose(chart_ID As Integer, startPos As Long, Count As Long, ByRef closeArray As Variant)As Integer
Description
This function is used to return the history data that saved on CloseArrayof bar close prices for the selected chart.
Parameters
Key | Description |
chart_Index | 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. |
closeArray | Array for saving the results data in, the value of type Variant. |
Return value
Returns the copied data count, or -1 in case error occurred.
Sample
Public Sub main()Dim closeArray AlertMessage CopyClose(0,1,Bars(0),closeArray) ' Returns -1 if there was an error. End Sub
See Also