google-finance2
google-finance2
is fork by 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-finance2
Usage
var googleFinance = ; googleFinance; googleFinance;
API
Download Company News Data (single symbol)
googleFinance;
Download Company News Data (multiple symbols)
googleFinance;
Download Historical Data (single symbol)
googleFinance;
Download Historical Data (multiple symbols)
googleFinance;
Download prices Data (single symbol)
googleFinance;
Download prices Data (multiple symbols)
googleFinance;
Specifying request options
Optionally request options (such as a proxy) can be specified by inserting an extra parameter just before the callback:
var httpRequestOptions = proxy: 'http://localproxy.com'; googleFinance; googleFinance;
Credits
See the contributors.
License
The MIT License (MIT) Copyright (c) 2014-2016 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.