EODData
eoddata
is a client library for EODData Web Service written in Node.js. This library returns the result in both callback & promise styles.
Installation
$ npm install eoddata
Usage
var eoddata = new Data username: EODDATA_USERNAME password: EODDATA_PASSWORD;
documentation)
API (The client automatically handles token authentication therefore the following API calls can be made right away.
All API functions accept callback as the last parameter. Whether you pass a callback function or not, they will always return a promise object built using Bluebird. You can do whatever you want with the returned promise, or stick with the traditional callback style.
- Date Format: JavaScript Date Object or String format supported by Moment.js
- Periods: 1, 5, 10, 15, 30, h, d, w, m, q, y
Country List
Returns a list of available countries.
eoddata;
Data Formats
Returns the list of data formats.
eoddata;
Exchange Get
Returns detailed information of a specific exchange.
eoddata;
Exchange List
Returns a list of available exchanges.
eoddata;
Fundamental List
Returns a complete list of fundamental data for an entire exchange.
eoddata;
Quote Get
Returns an end of day quote for a specific symbol.
eoddata;
Quote List
Returns a complete list of end of day quotes for an entire exchange.
eoddata;
Quote List 2
Returns end of day quotes for a list of symbols of a specific exchange.
eoddata;
Quote List by Date
Returns a complete list of end of day quotes for an entire exchange and a specific date.
eoddata;
Quote List by Date 2
Returns a complete list of end of day quotes for an entire exchange and a specific date.
eoddata;
Quote List by Date Period
Returns a complete list of end of day quotes for an entire exchange, specific date, and specific period.
eoddata;
Quote List by Date Period 2
Returns a complete list of end of day quotes for an entire exchange, specific date, and specific period.
eoddata;
Split List by Exchange
Returns a list of Splits of a specific exchange.
eoddata;
Split List by Symbol
Returns a list of Splits of a specific symbol.
eoddata;
Symbol Changes by Exchange
Returns a list of symbol changes of a given exchange.
eoddata;
Symbol Get
Returns detailed information of a specific symbol.
eoddata;
Symbol History
Returns a list of historical end of day data of a specified symbol and specified start date up to today's date.
eoddata;
Symbol History Period
Returns a list of historical data of a specified symbol, specified date and specified period.
eoddata;
Symbol History Period by Date Range
Returns a list of historical data of a specified symbol, specified date range and specified period.
eoddata;
Symbol List 2
Returns a list of symbols of a specified exchange.
eoddata;
Technical List
Returns a complete list of technical data for an entire exchange.
eoddata;
Top 10 Gains
Returns a list of the Top 10 Gains of a specified exchange.
eoddata;
Top 10 Losses
Returns a list of the Top 10 Losses of a specified exchange.
eoddata;
Credits
See the contributors.
License
The MIT License (MIT) Copyright (c) 2012-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.