Returns a list output for current day and specified market that details the trading window
td_marketHours(
marketType = c("EQUITY", "OPTION", "BOND", "FUTURE", "FOREX"),
accessToken = NULL
)
The asset class to pull: 'EQUITY','OPTION','BOND','FUTURE','FOREX'. Default is EQUITY
A valid Access Token must be set using
td_auth_accessToken
. The most recent Access Token will be
used by default unless one is manually passed into the function.
List output of times and if the current date is a trading day
if (FALSE) {
# Access Token must be set using td_auth_accessToken
# Market hours for the current date
td_marketHours()
td_marketHours('2020-06-24', 'OPTION')
}