historic
v0.0.3
Published
Fetch historic stock data from yahoo
Downloads
5
Readme
#Yahoo Historic Stock Fetch historic stock data from yahoo
##Usgae
npm install historic
var historic = require('historic');
var symbol = 'TSLA';
var start = new Date();
var end = new Date();
start.setMonth(7); // zero indexed
start.setDate(27);
start.setFullYear(2013);
end.setMonth(7); // zero indexed
end.setDate(30);
end.setFullYear(2013);
historic(symbol, start, end, function (err, data) {
console.log(err ? err : data);
});