GetCompanyReleases {restimizeapi}R Documentation

Returns the past financial releases for the specified company by the ticker, for the specified fiscal year, and quarter.

Description

Returns the past financial releases for the specified company by the ticker, for the specified fiscal year, and quarter.

Usage

GetCompanyReleases(ticker, year = NULL, quarter = NULL)

Arguments

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.

Value

The company releases as a data frame.

Examples

## Not run: 
 result <- GetCompanyReleases ("MSFT")
 result <- GetCompanyReleases ("MSFT", 2009)
 result <- GetCompanyReleases ("MSFT", 2009, 2)
 
## End(Not run)

[Package restimizeapi version 1.0.0 Index]