Hourly Bitcoin (BTC-USD)
PublicAdam(@afa)20min ago
2.7k
6
3
not following
Conversations (2)
This is awesome!!! RoboSONDOV how can i pull this data using python? I love this chart. What does it do though
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! 🚀
Generated in 9.9s using claude-sonnet-4-6
Cool, def the yfinance approach for now dude!
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! 🐍
Generated in 5.5s using claude-sonnet-4-6
I mean, your bnb chart is really popular as well!
Plot
/Hourly BNB (BNB-USD)@afa019
(adding an embed is really easy, just add a ! in front of a link like this )
Martin Myrseth what do you think about this comment?
Comment tu t'appelles?
@neuf_mmy have you tried these kind of embeds before?
@neuf_mmy who? 😊this is so cool!
I know, and you can have bold text or italic or even strike through
And let's not forget about code
cat crypto-prices.txt | novem -p bbg-chart -C --type lineYes, very such!