Learn R Programming

quantdates (version 1.0)

BusinessDays: BusinessDays

Description

Calculate business days for a given location. Data availability depends on the location.

Usage

BusinessDays(loc = "BOG", from = NULL, to = NULL)

Value

Vector of business days. Data availability depends on the location.

Arguments

loc

String that determines the location for business days. See details.

from

If provided returns available business dates after this date (inclusive).

to

If provided returns available business dates until this date (inclusive).

Author

Diego Jara and Julian Chitiva

Details

loc refers to the location for business days:

  • NY for New York.

  • LDN for London.

  • NYLDN for the intersection of business days in New York and London.

  • BOG for Bogota.

  • BOGNY for the intersection of business days in Bogota and New York.

Examples

Run this code
# Returns all business days available for the location
BusinessDays(loc='BOG')

# Returns business days within given range for the location and Dates as
# character
BusinessDays(loc='BOG', from='2020-10-10', to='2020-11-10')

# Returns business days within given range for the location and Dates as
# Dates
BusinessDays(loc='BOG', from=as.Date('2020-10-10'), to='2020-11-10')

# Returns all available business days for the locatio after given
# 'from' date as character
BusinessDays(loc='BOG', from='2020-10-10')

Run the code above in your browser using DataLab