google-finance
google-finance
is Google Finance company news and historical quotes data downloader written in Node.js.
The library handles fetching, parsing, and cleaning of CSV data and returns JSON result that is convenient and easy to work with. Both callback (last parameter) and promises (using Bluebird) styles are supported.
Also check out yahoo-finance.
Installation
$ npm install google-finance
Usage
var googleFinance = require('google-finance');
googleFinance.companyNews({
symbol: 'NASDAQ:AAPL'
}, function (err, news) {
});
googleFinance.historical({
symbol: 'NASDAQ:AAPL',
from: '2014-01-01',
to: '2014-12-31'
}, function (err, quotes) {
});
API
Download Company News Data (single symbol)
googleFinance.companyNews({
symbol: SYMBOL
}, function (err, news) {
});
Download Company News Data (multiple symbols)
googleFinance.companyNews({
symbols: [SYMBOL1, SYMBOL2]
}, function (err, news) {
});
Download Historical Data (single symbol)
googleFinance.historical({
symbol: SYMBOL,
from: START_DATE,
to: END_DATE
}, function (err, quotes) {
});
Download Historical Data (multiple symbols)
googleFinance.historical({
symbols: [SYMBOL1, SYMBOL2],
from: START_DATE,
to: END_DATE
}, function (err, result) {
});
Credits
See the contributors.
License
The MIT License (MIT)
Copyright (c) 2014 Pilwon Huh
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.