Hi Daniel,
Firstly, a massive thank you for putting this library out there! It has helped me a lot with an on-going project.
I was wondering if there is any way to have axhspan() functionality from matplotlib? Preferably without using external axis mode.
i.e.

@daveydaid
Thanks for expressing your appreciation and for your interest in mplfinance.
There are two things that I would suggest, in order of preference:
hlines kwarg: see the using lines tutorial, particularly cell number In [8] where something similar is done with vlines; just do the analogous thing with hlines.returnfig=True. (See item number 1 on this page). The code might look something like this:python
fig,axlist = mpf.plot(data,...,returnfig=True)
axlist[0].axhspan(...)
mpf.show()
HTH. All the best. --Daniel
Perfect thank you - No.2 sorted me right out!