node-google-finance
node-google-finance copied to clipboard
void quotes: not working
this code.
var googleFinance = require('google-finance');
googleFinance.historical({
symbol: 'NASDAQ:AAPL',
from: '2019-11-01',
to: '2019-12-31'
}, function (err, quotes) {
console.log(err)
console.log(quotes)
});
return....
null
[]
Getting the same output, just undefined or []
Same for me
Has anyone found a solution for this?
Same here, concluding that this repo is broken.