ticker-list

2.0.1 • Public • Published

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

/ticker-list/

    Package Sidebar

    Install

    npm i ticker-list

    Weekly Downloads

    1

    Version

    2.0.1

    License

    ISC

    Unpacked Size

    3.57 kB

    Total Files

    4

    Last publish

    Collaborators

    • bbbweb