Functions by Category Functions by Alphabetical list
Thursday Thursday([DateTime]) |  |
Returns true (1) if this bar is a Thursday. Example:
#Is the current bar Thursday?
if (Thursday) {
Output('Is Thursday!');
}
#Was the bar 3 bars ago a Thursday?
if (Thursday(Ago(DateTime,3))) {
Output('Is Thursday');
}
}
Related functions: DateTime , Time , Second , Minute , Hour , Month , Year , DayOfWeek , DayOfMonth , DayOfYear , WeekOfYear , NewHour , NewDay , NewWeek , NewMonth , NewYear , Monday , Tuesday , Wednesday , Friday , FormatDateTime , ValidateDateTime , AddDeltaDHMS , AddDeltaYM , DeltaDateTime
|