mplfinance icon indicating copy to clipboard operation
mplfinance copied to clipboard

Financial Markets Data Visualization using Matplotlib

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

Hello Daniel, Thanks again for your fabulous library. I'm scratching my head on how to add a subpanel for a renko chart. I'm trying to add an indicator in the...

How to add a legend to the plots? For example, if using several moving averages it will be useful to show a legend to map moving averages to line plots....

question

Is there a way in the api to add more dates on the x axis? This helps me avoid having to count candles from the candles plotted and the sparsely...

question

I'm want to visualize a swings/price movement chart over a normal OHLC chart, e.g., like the attachment below. ![image](https://user-images.githubusercontent.com/66440980/175025853-e3eba223-2d5c-4362-b802-68d051d5cf2b.png) I have written the following code: ```py def get_swing_dataframe(daily: DataFrame): last_high...

question

I'm trying to make a simple Intraday (5m) chart and I'm having a bit of trouble with the xlabels when I don't have a complete dataset: ![image](https://user-images.githubusercontent.com/38225029/128413235-6f86f88f-8946-4562-96cf-f1a4cf581cb4.png) I'm generating the...

enhancement
question

Looking ad [this](https://stackoverflow.com/questions/46326151/how-to-set-one-candle-stick-color-using-mpl-finance), it seems like in the old API version you could set the color of a single candle, is there a way to do the same with the...

enhancement

Drawing Supply/Demand zones is a common price action methodology to analyze charts. Typically involves drawing a rectangle from a high and low point in a group of candles. Typically this...

enhancement

Thanks for an amazing library! I'm trying to create an application where the user can select a ticker and then click a button that prints candlesticks for the ticker. I'm...

question

Dear Team, I am using following statement renko_dict = {} # reassign every time before your fplot.plot(dataframe, type='renko', renko_params=dict(brick_size=brick_size), return_calculated_values=renko_dict, returnfig=True) If I am using returnfig =False, chart is getting...

question

Hello Daniel, Thanks a lot for such a useful package. I have made an enhancement in the trend line construction (using `tlines` kwarg in plot function). By adding kwargs `extend_start`...