Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
alphavantage
Advanced tools
Note: This is a WIP
This is a simple wrapper around the Alpha Vantage API. I have no affiliation with AlphaAdvantage.
All contributions are welcome! This is an open source project under the MIT license, see LICENSE.md for additional information.
npm i alphavantage
/**
* Init alphavantage with your API key.
*
* @param {String} key
* Your AlphaVantage API key.
*/
const alpha = require('alphavantage')({ key: 'qweqweqwe' });
/**
* Data functions: Short term
*
* Types available: intraday
*
* All of the data functions have the same signature:
* alpha.data.intraday(symbol [, size [, type [, interval]]])
*
* @param {String} symbol
* The stock ticker symbol to get data for.
* @param [String] size
* The result size to fetch. Available: compact (last 100pts) and full (all, very large).
* @param [String] type
* The datatype to getch. Available: json and csv
* @param [Number] interval
* The time interval (mins) inbetween data points. Available: 1, 5, 15, 30, and 60
*
* @returns {Promise}
* The request promise.
*/
alpha.data.intraday(`msft`).then(data => {
console.log(data);
});
/**
* Data functions: Long Term
*
* Types available: daily, adjusted, weekly, and monthly
*
* All of the data functions have the same signature:
* alpha.data.<type>(symbol [, size [, type]])
*
* @param {String} symbol
* The stock ticker symbol to get data for.
* @param [String] size
* The result size to fetch. Available: compact (last 100pts) and full (all, very large).
* @param [String] type
* The datatype to getch. Available: json and csv
*
* @returns {Promise}
* The request promise.
*/
alpha.data.<type>(`msft`).then(data => {
console.log(data);
});
/**
* Sector Performance
*
* Get realtime and historical sector performances calculated from S&P500 incumbents.
*
* @returns {Promise}
* The request promise.
*/
alpha.performance.sector().then(data => {
console.log(data);
});
/**
* Data polishing
*
* Rewrite weird data keys to be consistent across all api calls. This is an optional
* utility you can use with the result of any api call.
*/
const polished = alpha.util.polish(data);
FAQs
A simple interface to the Alpha Vantage API.
The npm package alphavantage receives a total of 977 weekly downloads. As such, alphavantage popularity was classified as not popular.
We found that alphavantage demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.