79262638

Date: 2024-12-08 14:25:35
Score: 1
Natty:
Report link

You could take the negative values:

import plotly.graph_objects as go

fig = go.Figure(data=[go.Candlestick(x=df['Date_Time'],
                open=df['Open'],
                high=df['High'],
                low=df['Low'],
                close=df['Close'] )])
fig.show()

plt1

fig = go.Figure(data=[go.Candlestick(x=df['Date_Time'],
                open=-df['Open'],
                high=-df['High'],
                low=-df['Low'],
                close=-df['Close'] )])
fig.show()

plot2

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: rehaqds