Good First Issue >> Renko
See original GitHub issueWhich version are you running? The lastest version is Github. Pip is for major releases.
import pandas_ta as ta
print(ta.version)
Upgrade.
$ pip install -U git+https://github.com/twopirllc/pandas-ta
Is your feature request related to a problem? Please describe. A clear and concise description of what the problem is. Ex. I’m always frustrated when […]
Describe the solution you’d like A clear and concise description of what you want to happen.
Describe alternatives you’ve considered A clear and concise description of any alternative solutions or features you’ve considered.
Additional context Add any other context or screenshots about the feature request here.
Thanks for using Pandas TA!
Issue Analytics
- State:
- Created 3 years ago
- Comments:16 (10 by maintainers)
Top Results From Across the Web
RENKO Trading Strategy (ULTIMATE Guide On Renko Charts ...
I have planned total 15 Parts in this Renko Trading Strategy series. ... this First Part Of Renko Trading Series, I have explained...
Read more >Renko Chart: Definition, What It Tells You, Uses, and Example
The chart shows a strong uptrend in a stock with a $2 box size. Boxes are drawn based on closing prices, so highs...
Read more >Renko Brick Size Optimization - Towards Data Science
We work on algorithmic strategies problems in stock and crypto markets. Today, I'm going to overview a research about how to do a...
Read more >Some help with Renko - MultiCharts Forum For Traders ...
The problem is two fold and requires a bit of an explanation. First: As we all know Renko bars are price based and...
Read more >Good First Issue: Issues for your first open-source contribution
Making your first open-source contribution is easier than you think. Good First Issue is a curated list of issues from popular open-source projects...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hey,
so columns in Renko will be the same, eg: open, close, low, high. And Renko doesn’t use volume. As it’s an only price chart 😃 and of course, Renko can only be used with price-based indicators. Not with indicators like VWAP (which uses volumne). That’s the practical aspect.
My renko class returns a dataframe. Which can be further used to apply indicators. And yeah, I’m doing reindexing before applying indicators.
<class 'pandas.core.frame.DataFrame'> RangeIndex: 706 entries, 0 to 705 Data columns (total 6 columns): Column Non-Null Count Dtype 0 date 706 non-null datetime64[ns] 1 open 706 non-null float64 2 high 706 non-null float64 3 low 706 non-null float64 4 close 706 non-null float64 5 uptrend 706 non-null bool dtypes: bool(1), datetime64[ns](1), float64(4)
In the case of strategy, I’m getting attached exceptions. exception.txt
I’d dropped you a mail already. Let’s connect when we both are available to discuss it further and plan it out. No rush from my end too.
Thanks,
@AGG2017,
No worries. Makes sense.
You may be interested in trying the Custom directory so you can incorporate your own indicators and have them hook into Pandas TA. Let me know if you do and if it works for you.
That’s for sure!
KJ