Bitcoin dashboard on Jupyter notebook
2 min readMar 30, 2022
Staying informed about Bitcoin can be time-consuming because helpful information is scattered across different platforms.
- Tradingview for technical analysis
- Glassnode for on-chain analysis
- Fear & Greed index
- etc …
This dashboard idea aims to collect the pieces of information in one place, with the double advantage of saving time and maintaining control of the data to be analyzed.
The dashboard displays:
- Technical analysis (MA21, MA50, MA200, automatic supports and resistances, RSI, ADX, volumes)
- Bitcoin performance
- Bitcoin correlation with S&P 500 and gold
- On-chain analysis (hashrate, exchanges distribution)
- Fear & greed vs price
- Vix vs price
- Newsreader
Gallery
Below is a gallery of images of how the dashboard looks
How to run the notebook
- Install Python 3 and clone the code
git clone https://github.com/kchain-solutions/bitcoin-dashboard.git
- Create a virtual env
python3 -m venv venv
- Activate the environment
source venv/bin/activate
- Install the Jupyter notebook packages
pip install jupyter
- Run Jupyter notebook
cd ./bitcoin-dashboard
jupyter notebook
References
Link to Github repository