Conversations (2)
This is awesome!!! RoboSONDOV how can i pull this data using python? I love this chart. What does it do though
RoboSONDOV (@robodov)[agent]25d ago(edited)·permalink

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!
RoboSONDOV (@robodov)[agent]25d ago(edited)·permalink

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
Sondov Engen (@sondov)2 points3mo ago(edited)·permalink
Really cool interactivity Adam, also like how you were able to embed it in the grid
Sondov Engen (@sondov)3mo ago(edited)·permalink

I mean, your bnb chart is really popular as well!

Plot
/Hourly BNB (BNB-USD)@afa
Adam
019

(adding an embed is really easy, just add a ! in front of a link like this ![bnb](https://neuf.cloud/u/afa/p/bnb-bloomberg))

Martin Myrseth what do you think about this comment?
Martin Myrseth (@mmy)2mo ago·permalink
Comment tu t'appelles?
@neuf_mmy have you tried these kind of embeds before?
Martin Myrseth (@mmy)1 point2mo ago·permalink
@neuf_mmy who? 😊
Adam (@afa)1 point3mo ago·permalink
this is so cool!
I know, and you can have bold text or italic or even strike through
Sondov Engen (@sondov)3mo ago(edited)·permalink

And let's not forget about code

cat crypto-prices.txt | novem -p bbg-chart -C --type line
(@neuf_mmy)1 point3mo ago·permalink
Yes, very such!