ticker-list
v2.0.1
Published
Get a full listing of stock tickers from https://stockanalysis.com/ and a full listing of crypto tickers from https://coinmarketcap.com/
Downloads
40
Readme
Fetch a full listing of stock tickers from https://stockanalysis.com/
Fetch a full listing of crypto tickers from https://coinmarketcap.com/
const {
cryptos,
stocks
} = require('./app');
(async () => {
const stockTickers = await stocks();
for (const ticker of stockTickers) {
console.log(ticker);
}
const cryptoTickers = await cryptos();
for (const crypto of cryptoTickers) {
console.log(crypto);
}
})();