stevenm100
stevenm100
with a bit of a battle, I was able to get items added to the chart area (theres probably an easier way and i missed it lol), in this case...
I got close by doing the following: ``` y_min, y_max = ax1.get_ylim() #annotate if yest_close > last_close: ax1.annotate(str(round(last_close,2)), xycoords='axes fraction', xy=(1.02, (last_close - y_min)/(y_max - y_min) ), size=8, bbox=dict(boxstyle="larrow",pad=0.3, fc='red',...
putting the same comment here on this duplicate, hope it helps... I got close by doing the following: ``` y_min, y_max = ax1.get_ylim() #annotate if yest_close > last_close: ax1.annotate(str(round(last_close,2)), xycoords='axes...
just incase. fwiw....i did change my code slightly due to the way numbers are rounded. see the detail of the string to round to two characters after the decimal. Previously...
I had a similar problem, that i posted here. Now I have found this thread, this seems more appropriate....its not a DST problem because the time changes each time i...
Thanks @rodrigoperales this worked for me https://github.com/alvarobartt/investpy/issues/331#issuecomment-952944746