-
Notifications
You must be signed in to change notification settings - Fork 654
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add renko chart support #47
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome! Thank you Caleb. Really nice job implementing Renko charts.
I've added some comments to various places in the code below, where things can be changed to protect the code better, and/or make it cleaner (overall it's fantastic though!). And there is the one issue regarding mav
which I am not sure exactly how it should be handled, but I think what we are doing there is not necessarily what a Renko chartist wants to see. All the best. And thank you! --Daniel
Thanks for leaving feedback! I'll check it out and let you know what I think later today! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please see comments inline. Thank you!
Thank you so much for the feedback, I really appreciate the comments you left! Let me know if you have any additional fixes/comments! |
Adds the ability to create Renko charts by passing in
type='renko'
and optionalrenko_params
dictionary to specifybrick_size
andatr_length
to theplot()
function. Also includes examples in the README and customization_and_styles.ipynb