mplfinance icon indicating copy to clipboard operation
mplfinance copied to clipboard

Live Graphs with notifications..

Open manojjenago opened this issue 3 years ago • 1 comments

Hi ,

Thanks this is one of the most valueable package and data visualization package built. I was trying to visualize the live data frame with Renko chart. How we can feed a live data to MPL finance ? and charts update in real time. Is there anyway we can get notification if the reko bars change in color. ( Red to Green Or Vice Versa) . Also how the renko chart is calculated for intraday ? ( what is the default values and how we can change ) , Mean how to get the brick size for intraday or daily..?

Thanks , Manoj

manojjenago avatar Sep 05 '21 01:09 manojjenago

Live data visualization requires what matplotlib calls animation.

Animation in mplfinance requires access to the mplfinance Figure and Axes objects.

Take a look at the above two links, and the links therein. Please let me know if that helps.

Also, regarding renko bars and determining changes. You can code your own notifications by gaining access to mplfinance's renko values and looking at them. When you see a change about which you want to be notified, then just code a notification to yourself (pop-up, or email, or SMS, or whatever you want). You can find a description here of how to use mplfinance's return_calculated_values kwarg to gain access to the renko values.

DanielGoldfarb avatar Dec 15 '21 23:12 DanielGoldfarb