yahoo-finance-api
Scrapes yahoo finance earnings calendar from a given date.
Installation
npm install yahoo-finance-api
yarn install yahoo-finance-api
Usage
import { YahooFinance } from 'yahoo-finance-api';
const earnings = await YahooFinance.getEarnings(new Date('2020-06-16'));
console.log(earnings);
[{
epsEstimate: 1.17,
epsReported: undefined,
epsSurprise: undefined,
reportDate: '2020-06-16',
symbol: 'ORCL',
company: 'Oracle Corp',
announceTime: 'After Market Close',
epsSurpriseDollar: undefined
}]
[{
epsEstimate: 2.33,
epsReported: 2.45,
epsSurprise: 5.15,
reportDate: '2020-06-11',
symbol: 'ADBE',
company: 'Adobe Inc.',
announceTime: 'Time Not Supplied',
epsSurpriseDollar: 0.12
}]
License
MIT