| isBizday {timeDate} | R Documentation |
Tests if a date is a business day or not.
isBizday(x, holidays = holidayNYSE()) isHoliday(x, holidays = holidayNYSE())
holidays |
holiday dates from a holiday calendar. An object of class
timeDate.
|
x |
an object of class timeDate.
|
the functions return logical vectors indicating if a date is a business day, or a holiday.
## Dates in April, currentYear:
currentYear = getRmetricsOptions("currentYear")
tS = timeSequence(
from = paste(currentYear, "-03-01", sep = ""),
to = paste(currentYear, "-04-30", sep = ""))
tS
## Subset Business Days at NYSE:
holidayNYSE()
isBizday(tS, holidayNYSE())
tS[isBizday(tS, holidayNYSE())]