Syntax
Public Function GetMinute(ByVal Chart_ID As long, ByVal Record As long)As String
Description
A function that returns’ the Minuteof 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 minute value for it, the value of type Long |
Return value
Returns minute value for a requested record as a type of string.
Sample
Public Sub main() AlertMessage ("The Minute of the record 50: " & GetMinute(0, 50))End Sub
See Also