Syntax
Public Function iTtime(Symbol As String, timeFrame As ENUM_TIMEFRAMES, shift As Long)As Double
Description
This function is used to return the timevalue for the specific bar by a given it number.
Parameters
Key | Description |
Symbol | Trading symbol name, the value of type String. |
timeframe | The chart time frame can be one of the ENUM_TIMEFRAMES. |
Shift | Bar number to know the time for it, the value of type Long. |
Return value
Return’s the timevalue for the indicated symbol, Timefarme and bar number as a double value. These Function returns 0 if the history is not loaded.
Sample
Public Sub main() Dim barNumber Dim result barNumber=3 result=iTime ("EUR/USD",PERIOD_D1,Clng(barNumber)) AlertMessage("The time value for bar Number " & Cstr(barNumber) & " is " & CSTR(result))End Sub
See Also