This commit is contained in:
dsyoon
2024-11-13 19:07:49 +09:00
parent 8b19973781
commit d475cf123c

View File

@@ -231,7 +231,7 @@ class AnalyzerSqlite:
subplot_titles=('캔들', "거래량", "스토캐스틱", "MACD", "RSI", "이격도"), subplot_titles=('캔들', "거래량", "스토캐스틱", "MACD", "RSI", "이격도"),
# specs=[[{}], [{}], [{}], [{}], [{}], [{}]], # specs=[[{}], [{}], [{}], [{}], [{}], [{}]],
shared_xaxes=True, horizontal_spacing=0.03, vertical_spacing=0.01, shared_xaxes=True, horizontal_spacing=0.03, vertical_spacing=0.01,
row_heights=[1200, 200, 200, 200, 200, 200] row_heights=[800, 200, 200, 200, 200, 200]
) )
for trace in candle_data: for trace in candle_data:
fig.append_trace(trace, 1, 1) fig.append_trace(trace, 1, 1)
@@ -246,7 +246,7 @@ class AnalyzerSqlite:
for trace in disparity_data: for trace in disparity_data:
fig.append_trace(trace, 6, 1) fig.append_trace(trace, 6, 1)
fig.update_layout(height=2200, xaxis_rangeslider_visible=False) fig.update_layout(height=1800, xaxis_rangeslider_visible=False)
return fig return fig