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