GetCompanyEstimates {restimizeapi} | R Documentation |
Returns all estimates for a company specified by the ticker.
GetCompanyEstimates(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 estimates as a data frame.
## Not run:
result <- GetCompanyEstimates ("MSFT")
result <- GetCompanyEstimates ("MSFT", 2015)
result <- GetCompanyEstimates ("MSFT", 2015, 2)
## End(Not run)