alexyak / stocks

Stocks module for MagicMirror
14 stars 16 forks source link

Module: stocks

The stocks module is a MagicMirror addon. This module displays a scrolling stocks ticker on your MagicMirror.

Using the module

To use this module, add it to the modules array in the config/config.js file:

modules: [
    {
        module: 'stocks',
        position: 'bottom_bar',
        config: {
            stocks: '.DJI,MSFT,AAPL,GOOG,INTC,CICS,TSLA,FB', // stock symbols
            updateInterval: 37000 // update interval in milliseconds
        }
    }
]