0.0.3 • Published 11 years ago

historic v0.0.3

Weekly downloads
2
License
-
Repository
github
Last release
11 years ago

#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);
});
0.0.3

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago

0.0.0

11 years ago