In mpl-finance, when saving an image without using bbox_inches='tight' saved the image with big white areas surrounding the plot, Just like what happens with the current mplfinance.
How it should looks like with bbox_inches='tight':

How it looks like now:

Notice the big white margins
bbox_inches='tight' does with the current mplfinance package?I will look into this. Possibly will do. ( or it will become do-able through #17 )
@3dvg
Eduardo
Yes, you can do this already. See "Specifying image attributes with savefig" just below cell number 8 in this notebook and see also cell number 9 in the same notebook.
You can specify bbox_inches='tight' when using the savefig kwarg:
mpf.plot( data, savefig=dict(fname='myfile',bbox_inches='tight') )
Most helpful comment
@3dvg
Eduardo
Yes, you can do this already. See "Specifying image attributes with savefig" just below cell number 8 in this notebook and see also cell number 9 in the same notebook.
You can specify
bbox_inches='tight'when using thesavefigkwarg: