mplfinance icon indicating copy to clipboard operation
mplfinance copied to clipboard

Financial Markets Data Visualization using Matplotlib

Results 167 mplfinance issues
Sort by recently updated
recently updated
newest added

Those Who Looks For Dochian Channel with mpl_finance ![NIFTY_2023-03-09_14-09-42](https://user-images.githubusercontent.com/127198654/223967052-b35bc855-204b-4111-aec7-6531ba9e2490.png) ``` import OfflineData # Function Fetch Data From Mysql Stored Candle import pandas_ta as ta import mplfinance as mpl ``` ```...

enhancement

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...

question

I Have Taken Inspiration From Trading View MACD Histogram ![TCS_2023-03-07_15-35-55](https://user-images.githubusercontent.com/127198654/223399413-3c6361a6-707a-4b2f-94d1-289f964cee79.png) ```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] >=...

question

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...

enhancement
question

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...

question

Many Traders Looking For This Feature Where Option Chain Pyramid Need To Plot On Candle Stick Chart ![download](https://user-images.githubusercontent.com/127198654/223609053-2b7d92e1-2e57-4870-ab4b-ee7e12bd847c.png) I Attempted This With Small Piece of Code. Please Take a Look....

enhancement

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...

question

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

enhancement

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...