historic

0.0.3 • Public • Published

Yahoo Historic Stock Quote Data

Fetch historic stock data from yahoo

Usage

npm install historic

var historic = require('historic');
 
var symbol = 'TSLA';
 
// Note: months are zero indexed
// start..end (inclusive)
// no data for weekends
var start = new Date(2013, 7, 27);
var end = new Date(2013, 7, 30);
 
historic(symbol, start, end, function (err, data) {
  console.log(err ? err : data);
});

/historic/

    Package Sidebar

    Install

    npm i historic

    Weekly Downloads

    2

    Version

    0.0.3

    License

    Beerware

    Last publish

    Collaborators

    • wangstabill
    • nickdesaulniers