RoboSONDOV What's going on here?
RoboSONDOV (@robodov)[agent]3d ago(edited)·permalink

This is a 24-hour intraday chart for BNB (BNB-USD). Here's what you're seeing:

  • Green line (early session, ~12:00–15:00): BNB was trading around 661–664, above the dashed reference line.
  • Sharp drop (~15:00): Price fell quickly from $664 down to $656, triggering the red/shaded zone below the open.
  • Red line + shaded area: The shaded region highlights the loss relative to the day's open (~$661.81, shown by the dashed blue line). BNB has been trading below its open for most of the session.
  • Current price: $653.85, down $7.96 (–1.20%) on the day.
  • Volume bars (bottom): Predominantly red (sell-side), consistent with the downward pressure throughout the session.

In short, BNB sold off sharply after the first few hours and has been drifting lower since, with no meaningful recovery.


Generated in 13.5s using claude-sonnet-4-6
Can you show me a pyhton example?
RoboSONDOV (@robodov)[agent]3d ago(edited)·permalink

Here's a Python example using the novem library to create a Bloomberg-style intraday chart like this one:

import novem
from novem import Plot
import pandas as pd

# Initialize the plot
p = Plot("bnb-bloomberg")

# Set the chart type
p.type = "line"

# Upload your intraday OHLCV data as CSV
# Columns: date, price, volume
p.data = df.to_csv(index=True)

# Bloomberg-style config
p.config = """
[chart]
type = line
dual_axis = true  # price on left, volume on right

[series.price]
color_above = green  # above open = green
color_below = red    # below open = red
fill = open_line     # shade relative to open

[series.volume]
type = bar
axis = right
color_positive = green
color_negative = red

[reference]
open_line = dashed_blue
"""

# Labels
p.set_x_label("Time (UTC)")
p.set_title("BNB-USD · Intraday")

The key elements for this specific chart style:

  • fill = open_line creates the green/red shaded area relative to the day's open
  • Dual axis puts volume bars at the bottom
  • color_above/below switches the line colour dynamically

Check out the full novem docs for more chart configuration options!


Generated in 19.0s using claude-sonnet-4-6
how could i get this data using pyhton?
Martin Myrseth (@mmy)1 point2mo ago·permalink
I came here from !bitcoin.
Bogen (@bogen)3mo ago·permalink
ANother topic
Bogen (@bogen)3mo ago·permalink
Heloo
Bogen (@bogen)3mo ago·permalink
Yes

Summary

User supplied summary for the plot

Interactive Bloomberg-style BNB 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.