mplfinance
mplfinance copied to clipboard
Financial Markets Data Visualization using Matplotlib
Those Who Looks For Dochian Channel with mpl_finance  ``` import OfflineData # Function Fetch Data From Mysql Stored Candle import pandas_ta as ta import mplfinance as mpl ``` ```...
Perhaps the best way to explain this problem is by the picture below. As you can see, there are three blue lines drawn, but the top line is out of...
I Have Taken Inspiration From Trading View MACD Histogram  ```python macd_color = [] for i,v in enumerate(df["MACD_histogram"]): if df["MACD_histogram"][i] >= 0 and df["MACD_histogram"][i-1] < df["MACD_histogram"][i]: macd_color.append('#26A69A') elif df["MACD_histogram"][i] >=...
I am running a BackTest to simulate equity from a given trading strategy. We are using MPLFinance to plot the OHLC Bars of the stock we are trading. Our project...
I do not understand why plots differ in terms of size and how they look when I try to save them or returnfig. I generate plots of figsize (9,4) when...
Many Traders Looking For This Feature Where Option Chain Pyramid Need To Plot On Candle Stick Chart  I Attempted This With Small Piece of Code. Please Take a Look....
Dear Mr. Goldfarb, once again I ask for your assistance in solving a problem. I'm still working on an all in one solution, but this time it is build around...
Hi, As the question goes, will it be possible to get the L/H/O/C values of any particular bar/candle, when clicked? Regards
Hello, this is an enhancement request based off of the request: https://github.com/matplotlib/mplfinance/issues/513 Please review the code and let us know if it is acceptable for merge! This is for our...
Hello, this is an enhancement request based off of the request: https://github.com/matplotlib/mplfinance/issues/551 Please review the code and let me know if it is acceptable for merge! If you need anything...