0.0.6 • Published 10 years ago

yfinance v0.0.6

Weekly downloads
23
License
MIT
Repository
github
Last release
10 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

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago