Syntax
Public Function DataTimes(SymbolName As String, TimeFrame As ENUM_TIMEFRAMES, StartPos As Long, Count As Long, ByRef TimeArray As Variant) As Integer
Description
This function is used to get into the TimeArray the history data of the times bar for the selected symbol period.
Parameters
Key | Description |
SymbolName | The name of the symbol to get the time’sbar prices for it, the value of type string |
TimeFrame | Symbol period, the value of type ENUM_TIMEFRAMES |
StartPos | The start position for the first bar, the value of type long |
Count | The data count to get the time’sbar for it, the value of type Long |
TimeArray | Times bar result, the value of type Variant |
Return value
Returns the bars count that gets the times for, and return 0 if the start position less than 0. If an error occurred, call GetLastError to read the error.
Sample
Public Sub main() Dim Count Dim arr () Count = DataTime ("EUR/USD", PERIOD_M5, 1, Bars (0), arr) AlertMessage ("the time data for the bar number 30 is " & Arr (30)) End Sub
See Also