Easily fetch data from alphavantage.co API on NodeJS.
The library is available on NPM for quick deploy, following instructions will help you install and use it.
npm install alphavantage-sdk
const alphaVantage = require('alphavantage-sdk');
alphaVantage.key = 'demo';
alphaVantage.timeSeriesDaily('MSFT').then(r=>console.log(r));
alphaVantage.timeSeriesDailyAdjusted('MSFT').then(r=>console.log(r));
alphaVantage.timeSeriesDailyFull('MSFT').then(r=>console.log(r));
alphaVantage.timeSeriesDailyAdjustedFull('MSFT').then(r=>console.log(r));
alphaVantage.timeSeriesWeekly('MSFT').then(r=>console.log(r));
alphaVantage.timeSeriesWeeklyAdjusted('MSFT').then(r=>console.log(r));
alphaVantage.timeSeriesMonthly('MSFT').then(r=>console.log(r));
alphaVantage.timeSeriesMonthlyAdjusted('MSFT').then(r=>console.log(r));
- NodeJS - The JavaScript framework used.
- Alpha Vantage API - Free realtime API for historical stock, forex, digital currency data and more than 50 technical indicators.
Please read CONTRIBUTING.md for details on our standards, rules, and the process for submitting pull requests to me.
For the versions available, see the tags on this repository.
- Mateus M. Côrtes - Initial work - alphavantage-node-sdk
See also the list of contributors who participated in this project.
This project is licensed under the Mozilla Public License version 2.0 - see the LICENSE.md file for details
- Alpha Vantage for providing an API free of charge.