mirror of
https://github.com/aljazceru/hummingbot-dashboard.git
synced 2025-12-21 23:44:19 +01:00
43 lines
1.9 KiB
Python
43 lines
1.9 KiB
Python
import pandas as pd
|
|
import pandas_ta as ta # noqa: F401
|
|
import plotly.graph_objects as go
|
|
|
|
from frontend.visualization import theme
|
|
|
|
|
|
def get_bbands_traces(df, bb_length, bb_std):
|
|
tech_colors = theme.get_color_scheme()
|
|
df.ta.bbands(length=bb_length, std=bb_std, append=True)
|
|
bb_lower = f'BBL_{bb_length}_{bb_std}'
|
|
bb_middle = f'BBM_{bb_length}_{bb_std}'
|
|
bb_upper = f'BBU_{bb_length}_{bb_std}'
|
|
traces = [
|
|
go.Scatter(x=df.index, y=df[bb_upper], line=dict(color=tech_colors['upper_band']),
|
|
name='Upper Band'),
|
|
go.Scatter(x=df.index, y=df[bb_middle], line=dict(color=tech_colors['middle_band']),
|
|
name='Middle Band'),
|
|
go.Scatter(x=df.index, y=df[bb_lower], line=dict(color=tech_colors['lower_band']),
|
|
name='Lower Band'),
|
|
]
|
|
return traces
|
|
|
|
|
|
def get_volume_trace(df):
|
|
df.index = pd.to_datetime(df.timestamp, unit='ms')
|
|
return go.Bar(x=df.index, y=df['volume'], name="Volume", marker_color=theme.get_color_scheme()["volume"], opacity=0.7)
|
|
|
|
def get_macd_traces(df, macd_fast, macd_slow, macd_signal):
|
|
tech_colors = theme.get_color_scheme()
|
|
df.ta.macd(fast=macd_fast, slow=macd_slow, signal=macd_signal, append=True)
|
|
macd = f'MACD_{macd_fast}_{macd_slow}_{macd_signal}'
|
|
macd_s = f'MACDs_{macd_fast}_{macd_slow}_{macd_signal}'
|
|
macd_hist = f'MACDh_{macd_fast}_{macd_slow}_{macd_signal}'
|
|
traces = [
|
|
go.Scatter(x=df.index, y=df[macd], line=dict(color=tech_colors['macd_line']),
|
|
name='MACD Line'),
|
|
go.Scatter(x=df.index, y=df[macd_s], line=dict(color=tech_colors['macd_signal']),
|
|
name='MACD Signal'),
|
|
go.Bar(x=df.index, y=df[macd_hist], name='MACD Histogram',
|
|
marker_color=df[f"MACDh_{macd_fast}_{macd_slow}_{macd_signal}"].apply(lambda x: '#FF6347' if x < 0 else '#32CD32'))
|
|
]
|
|
return traces |