首先必须说,我喜欢 mplfinance,它是一种在图表上显示数据的非常好的方式。
我现在的问题是,我不能减少边界的空间。有一个名为“tight_layout”的参数,但它会切断信息。可能我做错了什么。
mpf.plot(df_history, show_nontrading=True, figratio=(10,7), figscale=1.5, datetime_format='%d.%m.%y',
xrotation=90, tight_layout=True,
alines=dict(alines=seq_of_points, colors=seq_of_colors, linestyle='-', linewidths=0.5),
type='candle', savefig=bildpfad, addplot=apdict,
update_width_config=dict(candle_linewidth=0.4))
当我使用tight_layout=True
时,它看起来像这样:
图表周围的空间是完美的,但图表中的数据被切断了。
如果我使用tight_layout=False
它会占用太多空间,并且创建的 html 文件看起来很弯曲。
有人知道正确的方法吗?