I know it may sound too simple but it got me stuck! I have a candle stick chart using fplt and I simply want to add a horizontal line to it but not sure how!
ax = fplt.plot(
                result,
                type='candle',
                style = 'charles',
                title='whatever!',
                ylabel='anything',figsize=(24,8)
            )
this creates my candle chart pretty well and nice as I wanted!
but then I use ax.axhline(...) but gives me error  or I use ax.plt(x_coordinates,y_coordinates) but again error:
'NoneType' object has no attribute 'plt'
can someone please make my life easier?! I just want to add a horizontal line here! thanks