From 2ebe84426e9f18c026ce2d422b47713827d442b7 Mon Sep 17 00:00:00 2001 From: macd2 Date: Mon, 5 Feb 2018 03:21:24 +0100 Subject: [PATCH] add an option to control vertical spacing --- scripts/plot_dataframe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/plot_dataframe.py b/scripts/plot_dataframe.py index 71d887d60..8cb2a7bfd 100755 --- a/scripts/plot_dataframe.py +++ b/scripts/plot_dataframe.py @@ -137,7 +137,7 @@ def plot_analyzed_dataframe(args) -> None: name='Volume' ) - fig = tools.make_subplots(rows=3, cols=1, shared_xaxes=True, row_width=[1, 1, 4]) + fig = tools.make_subplots(rows=3, cols=1, shared_xaxes=True, row_width=[1, 1, 4],vertical_spacing=0.0001) fig.append_trace(candles, 1, 1) fig.append_trace(bb_lower, 1, 1)