From 3842ec0c57c84019b3e072064c9beacc1a9a612c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9C=A4=EB=8F=84=EC=83=81/=ED=83=9D=EB=B0=B0=ED=8C=8C?= =?UTF-8?q?=ED=8A=B8?= Date: Wed, 13 Nov 2024 10:53:51 +0900 Subject: [PATCH] init --- AnalyzerSqlite.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AnalyzerSqlite.py b/AnalyzerSqlite.py index 1ddb298..3654f82 100644 --- a/AnalyzerSqlite.py +++ b/AnalyzerSqlite.py @@ -228,10 +228,10 @@ class AnalyzerSqlite: fig = subplots.make_subplots( rows=6, cols=1, - subplot_titles=("MACD", "스토캐스틱", "RSI", "이격도", "거래량", '캔들'), + subplot_titles=("거래량", '캔들', "MACD", "스토캐스틱", "RSI", "이격도"), # specs=[[{}], [{}], [{}], [{}], [{}], [{}]], shared_xaxes=True, horizontal_spacing=0.03, vertical_spacing=0.01, - row_heights=[200, 200, 200, 200, 200, 800] + row_heights=[1200, 200, 200, 200, 200, 200] ) for trace in macd_data: fig.append_trace(trace, 1, 1) @@ -246,7 +246,7 @@ class AnalyzerSqlite: for trace in candle_data: fig.append_trace(trace, 6, 1) - fig.update_layout(height=1900, xaxis_rangeslider_visible=False) + fig.update_layout(height=2200, xaxis_rangeslider_visible=False) return fig