GetCompanyReleases {restimizeapi} | R Documentation |
Returns the past financial releases for the specified company by the ticker, for the specified fiscal year, and quarter.
GetCompanyReleases(ticker, year = NULL, quarter = NULL)
ticker |
The Estimize ticker – for example "MSFT". |
year |
A four-digit year – for example 1999. |
quarter |
A numeric value between 1 and 4 inclusive; note that if the quarter is used the year must also be set as well. |
The company releases as a data frame.
## Not run:
result <- GetCompanyReleases ("MSFT")
result <- GetCompanyReleases ("MSFT", 2009)
result <- GetCompanyReleases ("MSFT", 2009, 2)
## End(Not run)