0.0.6 • Published 8 years ago

yfinance v0.0.6

Weekly downloads
23
License
MIT
Repository
github
Last release
8 years ago

yfinance NPM version Build Status Dependency Status Coverage percentage

Yahoo Finance API for NodeJs.

Installation

$ npm install --save yfinance

Usage

var yfinance = require('yfinance');

yfinance.getQuotes('JNJ', function (err, data) {
    if(err) console.log(err);
    //...
});

yfinance.getHistorical('JNJ', '2016-08-01', '2016-08-05', function (err, data) {
    if(err) console.log(err);
    //...
});

yfinance.getDividendHistory('JNJ', '2015-01-01', '2015-12-31', function (err, data) {
    if(err) console.log(err);
    //... endDate not working!
});

License

MIT © Johan Carlsson

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago