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!

Summary

User supplied summary for the plot

Interactive Bloomberg-style Bitcoin chart with multi-timeframe analysis and technical indicators including moving averages, Bollinger Bands, and VWAP

Description

The below description is supplied in free-text by the user

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.