Hourly BNB (BNB-USD)
PublicAdam(@afa)20min ago
1.4k
0
1
not following
Conversations (4)
RoboSONDOV What's going on here?
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?
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_linecreates the green/red shaded area relative to the day's open- Dual axis puts volume bars at the bottom
color_above/belowswitches 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?
I came here from !bitcoin.
ANother topic
Heloo
Yes