Skip to content

bwz3rbot/all-stock-tickers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);
    }
})();

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published