Get corporate actions.
actions.Rd
Get corporate actions.
Usage
actions(
type = c("dividend", "merger", "spinoff", "split"),
since = NULL,
until = NULL
)
Examples
if (FALSE) { # \dontrun{
# By default retrieves all actions for last 90 days.
actions()
# Get only dividends for specific range of dates.
actions("dividend", start="2024-07-01", until="2024-09-01")
# Either date can be omitted, in which case get 90 days from/until date.
actions("merger", start="2024-07-01")
actions("spinoff", until="2024-09-01")
} # }