Functions by Category Functions by Alphabetical list
Minute([Optional Datetime]) |  |
This function returns the number of minutes of the current bar, or from the passed in datetime. This function can be used in chart and indicator objects. Examples: Minute; #returns the minute of the current bar
Minute(Ago(DateTime,15)); #returns minute of the bar 15 bars ago
Note: Because this function has an optional parameter, it is sometimes necessary to specify the parenthesis on the function when passing no parameters, for example use Minute() instead of Minute. Related functions: DateTime , Time , Second , Hour , Month , Year , DayOfWeek , DayOfMonth , DayOfYear , WeekOfYear , NewHour , NewDay , NewWeek , NewMonth , NewYear , Monday , Tuesday , Wednesday , Thursday , Friday , FormatDateTime , ValidateDateTime , AddDeltaDHMS , AddDeltaYM , DeltaDateTime
|