-
Notifications
You must be signed in to change notification settings - Fork 639
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
Price Reversal for Renko or PNF #687
Comments
Thank you so much. cv = {} df = pd.DataFrame(cv) |
You don't have to convert it to a dataframe. It will be returned to you as a dict, and you can do whatever you want with it. It does seem reasonable, for your stated goals, to convert to a dataframe, as one way to find the crossover points that you are looking for. However you need to be careful because, due to the nature of renko and pnf, the datetimes returned for renko and pnf will not correspond point-for-point with the datetime index in your data. Furthermore it is possible that some datetimes in the renko_dates or pnf_dates return may repeat themselves. So, it is entirely up to you, whether you simply grab the |
Thank you so much. |
Hi,
First of all, I want to express my gratitude for such a beautiful charting library—it's truly impressive.
I have a question regarding a strategy I'm developing. Specifically, I would like to mark the price level of a particular chart. For example, when the price crosses above the first red Renko/PnF bar, I want to trigger a buy. My question is: How can I retrieve the levels and other relevant details from the chart in order to implement this strategy?
Thank you for your help!
Thanks ,
MJ
The text was updated successfully, but these errors were encountered: