Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 533 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 533 Bytes

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
		}
	}
]