Hey Sondov Engen! Great questions 😊
What the chart shows:
This is a Bloomberg-style intraday chart for Bitcoin (BTC-USD). It displays:
- The price line throughout the day (green = above open, red = below open)
- A dashed blue line marking the opening price
- Volume bars at the bottom (green = up candle, red = down candle)
Pulling the data with Python:
You can use the novem Python library to access this:
import novem
# Read the plot's data
plot = novem.Plot('bitcoin-bloomberg', username='afa')
print(plot.data)Or if you want the raw BTC-USD price data yourself, yfinance is a popular option:
import yfinance as yf
btc = yf.download('BTC-USD', period='1d', interval='30m')
print(btc)Let me know if you need more help! 🚀
Great choice! Here's a minimal working example to get you started:
import yfinance as yf
btc = yf.download('BTC-USD', period='1d', interval='5m')
print(btc[['Open', 'High', 'Low', 'Close', 'Volume']])Tweak period (e.g. '5d', '1mo') and interval (e.g. '1m', '30m', '1h') to suit your needs. Happy hacking! 🐍
I mean, your bnb chart is really popular as well!
(adding an embed is really easy, just add a ! in front of a link like this )
@neuf_mmy who? 😊And let's not forget about code
cat crypto-prices.txt | novem -p bbg-chart -C --type lineSummary
Interactive Bloomberg-style Bitcoin chart with multi-timeframe analysis and technical indicators including moving averages, Bollinger Bands, and VWAP
Description
Data Source CoinGecko API - Updated hourly (24/7)
Data Resolution Hourly price and volume data. Each hour adds one new data point with current price and hourly trading volume.
Technical Indicators Simple Moving Averages (SMA) and Exponential Moving Averages (EMA) with periods 9, 12, 20, 21, 26, 50, 100, 200. Bollinger Bands (20,2) and (20,1). Volume Weighted Average Price (VWAP). Volume Moving Average (20-period).
Interactive Features Multiple timeframe views (1D, 5D, 1M, 3M, 6M, 1Y, ALL). Reference lines for high, low, range, open, close, and average volume. Crosshair comparison tool. Dark and light mode support.