mplfinance icon indicating copy to clipboard operation
mplfinance copied to clipboard

Financial Markets Data Visualization using Matplotlib

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

Ask anything you want about mplfinance usage, project philosophy and/or priorities, or anything else related to mplfinance. hello, I am new to data processing with pandas and python programming generally,...

question

how can i change the ylim to have a step size of 2? ![image](https://user-images.githubusercontent.com/84154246/126643607-d41efc11-c053-4727-abac-d62bf3406a64.png)

question

Is it possible to represent two candlestick charts of different time-frame using mplfinance ? I see an example using bokeh from [this](https://kernc.github.io/backtesting.py/#example) repository. ![image](https://user-images.githubusercontent.com/51836477/120902777-979b8a80-c618-11eb-9f4a-c2c99147629d.png) The idea would be: - Choose...

enhancement

Hello, Daniel, thanks for the amazing product. I want to make OHLC charts like IBD style, here how it looks: ![Снимок экрана 2021-01-17 в 7 12 09 PM](https://user-images.githubusercontent.com/6585513/104848952-4ce2d580-58f8-11eb-8f0a-ab381e8f8fa6.jpg) I could...

question

Hello. when im adding a mark(I've used 'v') with mpf.make_addplot , my subplot is at a better visual priority from the candles, but not the wicks. ![image](https://user-images.githubusercontent.com/53187048/111660920-3cc37580-8817-11eb-9435-39d6091bab8b.png) is that a...

question

![image](https://user-images.githubusercontent.com/39374119/83394135-9d212c00-a42a-11ea-804b-25abaf7fa61f.png) As the picture shows, How can i change the Xtick to show the date by day.

enhancement
question
in progress

I have this code. ```python apds = [mpf.make_addplot(buy_signal,scatter=True,markersize=100,marker='^'), mpf.make_addplot(sell_signal,scatter=True,markersize=100,marker='v'), mpf.make_addplot(close_signal,scatter=True,markersize=100,marker='o'), mpf.make_addplot(rsi,panel='lower',color='g',hlines=[20,80]) mpf.plot(self.df,addplot=apds,figscale=2,volume=False,type = type, title= str(self.info) ) ``` I want to put a horizontal line for my RSI. But there...

enhancement
question

Daniel, thank you for excellent project. My question is this: There is a feature in matplotlib which provides a vertical (default) and/or horizontal line cursor shared between multiple axes. Is...

enhancement

I want to convert the Fractal Indicator I created into support resistance lines on MPL ![isLevel](https://user-images.githubusercontent.com/33702921/120441594-65c2c380-c38d-11eb-8c7d-1ff42769a860.png) ![Mark1](https://user-images.githubusercontent.com/33702921/120441603-68251d80-c38d-11eb-821e-6093b25e5a54.png) ![plot](https://user-images.githubusercontent.com/33702921/120441611-6a877780-c38d-11eb-97fa-b6c267ba0f88.png) ![MPL](https://user-images.githubusercontent.com/33702921/120440629-6a3aac80-c38c-11eb-9340-1bc476c1f915.png) Above are the lines of code used to create the plot...

question

![20210602112834](https://user-images.githubusercontent.com/7353552/120419819-bf2ef080-c395-11eb-8d79-9124863bcb4c.jpg) Please kindly have a look at the red block in attachment Is it possible to get the datetime value(x-axis) in customized event handling, like mouse movement?

question