Zeel Patel

Results 16 comments of Zeel Patel

@AGG2017 thanks for your feedback. you can look at https://github.com/kernc/backtesting.py/issues/382 for sample. I have positive and negative values as separate arrays/series. and then I assign specific color to each series....

> @zlpatel Thanks for the idea. It is not practical when using standard TA libraries but for some custom indicators is perfect. I had some success using linear_cmap with providing...

@kernc Have you had a chance to look at the questions that I asked?

I fiddled around with the code and made it work :) Here's what I did: I have added code ``` indicator_max=value.df.max(axis='columns') indicator_min=value.df.min(axis='columns') source.add(indicator_max, f'indicator_{i}_range_max') source.add(indicator_min,f'indicator_{i}_range_min') ``` right above https://github.com/kernc/backtesting.py/blob/0a76e9655f702331c4cc2a035d040d50111ce78d/backtesting/_plotting.py#L526 then,...

@kernc can you review my fix for this?

> Thank you for the great work. That is something that I was looking for and made the job. However, did you notice that it works only if the volume...

I am working on this enhancement.

@kernc can you review this change?