mrcodetastic / led-stock-ticker-proxy

An application to display real-time prices of stocks and cryptocurrencies on a Raspberry Pi-driven RGB LED matrix board. πŸ“ˆ

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LED Stock Ticker Display

Build Status License Dependency Status Version Release Date

An LED display for real-time prices of stocks, cryptocurrencies, and forex rates. Requires a Raspberry Pi, and an LED board connected to the Pi via the GPIO pins.

Version 0.3.2 (128Γ—64)

Table of Contents

Features

  • Real-time prices. Real-time prices of your preferred stocks, cryptocurrencies, and forex rates.
  • Market status indicator. Displays the stock market's current status (Left of the stock symbol).
  • History chart. Ticker's value change over the past day.
  • Company & Crypto Logos. Display a logo in place of the history chart.
  • Currency selection. Select the currency you would like to see prices on. Check the list of supported currencies here.

Installation

Hardware

Materials needed:

  • Raspberry Pi (Tested on 3B+ and 4B, but should work in other models)
  • RGB LED Matrix. Supported sizes:
    • 32Γ—16
    • 64Γ—32
    • 128Γ—64
  • Adafruit RGB Matrix HAT or Bonnet (Optional. Matrix can be connected directly to GPIO pins)

Software

Pre-requisites

You'll need to make sure Git and PIP are installed on your Raspberry Pi, as well as Python 3.9+.

sudo apt-get update
sudo apt-get install git python3-pip -y

Installation

First, clone this repository. Using the --recursive flag will install the rgbmatrix binaries, which come from hzeller's rpi-rgb-led-matrix library. This library is used to render the data onto the LED matrix.

git clone --recursive https://github.com/feram18/led-stock-ticker.git
cd led-stock-ticker
chmod +x install.sh
./install.sh

Updating

From the led-stock-ticker directory, run the update script. The script will also take care of updating all dependencies.

./update.sh

Usage

Configuration

A config.json.example file is included for reference in the matrix directory. After installation has been completed, run the configuration script to set your preferences.

./config.py

The config.json file follows the following format:

  "tickers":                      Options for stocks and cryptocurrencies preferences
    "stocks"          Array       Pass an array of stock symbols
                                  Example: ["TSLA", "AMZN", "MSFT"]
    "cryptos"         Array       Pass an array of cryptocurrency symbols
                                  Example: ["BTC", "ETH", "LTC"]
    "forex"           Array       Pass an array of forex pairs
                                  Example: ["USD/EUR", "EUR/JPY", "GBP/USD"]
                                  
  "options":                      Other miscellaneous preferences
    "currency"        String      Currency in which to display prices
                                  Example: "EUR" (Default: USD)
    "clock_format"    String      Sets the preferred clock format
                                  Accepted values are "12h" and "24h" (Default: 12h)
    "date_format"     String      Sets the preferred date format
                                  (Default: "%a, %b %d" - eg. Fri, Jan 14)
    "update_rate"     Integer     Rate at which data is fetched/updated (in minutes)
                                  (Default: 10min)
    "rotation_rate"   Integer     Rate at which tickers will rotate (in seconds)
                                  (Default: 10sec)
    "show_logos"      Boolean     Display company stock & cryptocurrency logos in place
                                  of history charts. (Default: false)

Additionally, you will want to ensure the timezone on your Raspberry Pi is correct. It will often have London by default, but can be changed through the Raspberry Pi configuration tool.

Localisation Options > Timezone > [Your Time Zone]

sudo raspi-config

Flags

The LED matrix is configured with the flags provided by the rpi-rgb-led-matrix library. More details on these flags/arguments can be found in the library's documentation.

--led-rows                Display panel rows. (Default: 32)
--led-cols                Display panel columns. (Default: 64)
--led-multiplexing        Multiplexing type: 0 = direct; 1 = strip; 2 = checker; 3 = spiral; 4 = Z-strip; 5 = ZnMirrorZStripe; 6 = coreman; 7 = Kaler2Scan; 8 = ZStripeUneven. (Default: 0)
--led-row-addr-type       Addressing of rows: 0 = default; 1 = AB-addressed panels. (Default: 0)
--led-panel-type          Chipset of the panel. Supported panel types: FM6126A; FM6127.
--led-gpio-mapping        Name of GPIO mapping used: regular, adafruit-hat, adafruit-hat-pwm, compute-module. (Default: regular)
--led-slowdown-gpio       Slow down writing to GPIO. Needed for faster Pi's and/or slower panels. Range: 0..4. (Default: 1)
--led-chain               Number of daisy-chained boards. (Default: 1)
--led-parallel            For Plus-models or RPi2: parallel chains. 1..3. (Default: 1)
--led-pixel-mapper        Apply pixel mappers: Mirror (Horizontal) = "Mirror:H"; Mirror (Vertical) = "Mirror:V"; Rotate (Degrees) = eg. "Rotate: 90"; U-Mapper = "U-mapper"
--led-brightness          Brightness level. Range: 1..100. (Default: 100)
--led-pwm-bits            Bits used for PWM. Range 1..11. (Default: 11)
--led-show-refresh        Shows the current refresh rate of the LED panel.
--led-limit-refresh       Limit refresh rate to this frequency in Hz. Useful to keep a constant refresh rate on loaded system. 0=no limit. (Default: 0)
--led-scan-mode           Progressive or interlaced scan. 0 = Progressive, 1 = Interlaced. (Default: 1)
--led-pwm-lsb-nanosecond  Base time-unit for the on-time in the lowest significant bit in nanoseconds. (Default: 130)
--led-pwm-dither-bits     Time dithering of lower bits. (Default: 0)
--led-no-hardware-pulse   Don't use hardware pin-pulse generation.
--led-inverse             Switch if your matrix has inverse colors on.
--led-rgb-sequence        Switch if your matrix has led colors swapped. (Default: RGB)

Execution

From the led-stock-ticker directory run the command

sudo python3 main.py --led-gpio-mapping="adafruit-hat" --led-slowdown-gpio=2

Modify and include flags as needed for your particular setup. Running as root is necessary in order for the matrix to render. Privileges are dropped after initialization.

Additionally, you can create a systemd service to manage the application.

Debug

If you are experiencing issues, enable debug messages by appending the --debug flag to your execution command, logs are written to the led-stock-ticker.log file.

Roadmap

  • Support currency selection
  • Display ticker charts
  • Create configuration script
  • Layout Support (width Γ— height)
    • 32Γ—16
    • 128Γ—64
    • 128Γ—32
  • Forex prices
  • Configuration web interface
  • Traditional scrolling tickers display
  • Board customization options
    • Update rate
    • Rotation rate
    • Date format options
    • Stock/Crypto Logos

Sources

This project relies on the following:

Disclaimer

This project is a work in progress (all feedback is appreciated!) and is dependent on the Yahoo Query library & Exchange Rate API relaying accurate and updated data.

License

GNU General Public License v3.0

About

An application to display real-time prices of stocks and cryptocurrencies on a Raspberry Pi-driven RGB LED matrix board. πŸ“ˆ

License:GNU General Public License v3.0


Languages

Language:Python 96.4%Language:Shell 3.6%