Syntax
Public Function GetHour(ByVal Chart_ID As long, ByVal Record As long)As String
Description
A function that returns’ the Hourof specific Bar that exists on a spesfic chart.
Parameters
Key | Description |
chart_ID | Chart identifier, 0 is the current chart, the value of type Long |
Record | bar number to get the hour value for it, the value of type Long. |
Return value
Returns hour value for a requested record, the value of type String.
Sample
Public Sub main() AlertMessage ("The Hour of the record 50: " & GetHour(0, 50))End Sub
See Also