I've been using the google-finance module for historical queries for about a year now and yesterday (March 19th) it stopped working. It was working fine on Friday ( March 16th ). I get no errors just a bunch of empty values. My query looks like:
googleFinance.historical({ symbols: SYMBOLS, from: DATE, to: DATE, }, function (err, result) { // do something with result }
The result prints out all of the stock symbols I passed in with [] as the result. SYMBOLS is an array of stock symbols and DATE is a single date object in the past.
I've been using the google-finance module for historical queries for about a year now and yesterday (March 19th) it stopped working. It was working fine on Friday ( March 16th ). I get no errors just a bunch of empty values. My query looks like:
googleFinance.historical({ symbols: SYMBOLS, from: DATE, to: DATE, }, function (err, result) { // do something with result }The result prints out all of the stock symbols I passed in with [] as the result. SYMBOLS is an array of stock symbols and DATE is a single date object in the past.