You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ask anything you want about mplfinance usage, project philosophy and/or priorities, or anything else related to mplfinance.
How do I create a buy indicator using mplfinance that displays an arrow under a candle where the short and long term moving averages meet?
The text was updated successfully, but these errors were encountered:
mplfinance presently does not contain any code to find and indicate where moving averages are meeting or crossing.
You will need to access the moving average data, and write some code yourself to find where they meet, and then use mpf.make_addplot(...type='scatter'...) to plot markers where you want them.
There are two ways to access the moving average data:
Call mpf.plot() twice. The first time, as above, but using the return_calculated_values kwarg. This will give you the moving averages that mplfinance calculated. You can then use that data to find where they cross, and then call mpf.plot() again with the additional mpf.make_addplot(...type='scatter'...) to plot markers to highlight where the moving averages meet.
Calculate the moving averages yourself, find where they meet, and then call mpf.plot() with the appropriate mpf.make_addplot(...type='scatter'...) to highlight where the moving averages meet.
Ask anything you want about mplfinance usage, project philosophy and/or priorities, or anything else related to mplfinance.
How do I create a buy indicator using mplfinance that displays an arrow under a candle where the short and long term moving averages meet?
The text was updated successfully, but these errors were encountered: