I have 3 pandas series plotted where the values are:
date_series = date1,date2...
price_series = price1,price2...
factor_series = factor1,factor2...
and so i wish to annotate/highlight it on a matplotlib figure automatically based on an if condition which is when factor_series > 4 or factor_series < -4. If factor series value meets either condition, then annotate on the figure the factor value with some marker and that specific factor value in text. It would look something like the green circle and text in the picture.
I'm unsure of how to apply a function to check for the if condition with annotate and so I'm hoping to get some ideas here. Thank you in advance!!

