Una forma rápida de consultar IEX Cloud para encontrar datos bursátiles recientes.
Explora los documentos »
Ver demostración · Error en el buscador de acciones · Solicitar función
Creé este proyecto para consultar fácilmente la base de datos de información bursátil de IEX Cloud para mi propio uso. Originalmente comencé buscando paquetes que ya ofrecieran esto y no había ninguno actualizado. Luego creé este paquete para permitir un enfoque mucho más simplificado para hacer esto.
Para comenzar a utilizar este paquete, siga estos pasos.
Debe tener la última versión de NPM para que este proyecto funcione.
npm install npm@latest -g
git clone https://github.com/austinmccalley/Stock-Finder.git
npm install
tsc
Aquí hay un ejemplo de código de cómo realizar una solicitud simple de información bursátil de $TSLA usando el paquete con la función getStock()
.
const stockFinder = require ( 'stockfinder' ) ;
/*
Declare the Stock Finder with
the parameters you want
*/
const sf = new stockFinder ( 'stable' , 'TSLA' , apiKey , false ) ;
/*
Call the get stock function and then wait
for the promise to return
*/
sf . getStock ( ) . then ( res => {
console . log ( res )
} ) ;
Si desea obtener varias acciones, utilizará la función getStocks()
.
const stockFinder = require ( 'stockfinder' ) ;
/*
Declare the Stock Finder with
the parameters you want
*/
const sf = new stockFinder ( 'stable' , [ 'TSLA' , 'AAPL' ] , apiKey , false ) ;
/*
Call the get stocks function and then wait
for the promise to return
*/
sf . getStocks ( ) . then ( res => {
console . log ( res )
} ) ;
A veces, IEX Cloud tiene problemas con las solicitudes normales; puede cambiar y utilizar una solicitud CURL siguiendo el ejemplo.
const stockFinder = require ( 'stockfinder' ) ;
/*
Declare the Stock Finder with
the parameters you want
*/
const sf = new stockFinder ( 'stable' , 'TSLA' , apiKey , true ) ;
/*
Call the get stock function and then wait
for the promise to return
*/
sf . getStock ( ) . then ( res => {
console . log ( res )
} ) ;
Consulte los problemas abiertos para obtener una lista de funciones propuestas (y problemas conocidos).
Las contribuciones son las que hacen de la comunidad de código abierto un lugar increíble para aprender, inspirar y crear. Cualquier contribución que hagas será muy apreciada .
git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
) Distribuido bajo la licencia MIT. Consulte LICENSE
para obtener más información.
Austin McCalley - [email protected]
Enlace del proyecto: https://github.com/austinmccalley/Stock-Finder