-
Notifications
You must be signed in to change notification settings - Fork 218
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
Trend Step Channel - appreciate it #269
Comments
if you're stuck at some line - best share what you have so far, so we can determine where the most likely error is ? |
Thanks for responding, appreciate it. I have gotten this far. Basically i have verified that deviation
Below is my python version (non optimized). I am using pandas ts for
Appreciate if you can take a look at it. |
You can find an example for this for example here: technical/technical/indicators/indicators.py Lines 1002 to 1007 in 7accaf5
Obviously, this will have a quite severe performance penalty - as you'll loop through a dataframe with potentially 1000nds rows. |
I understand what you are referring. Thanks for the quick response. |
https://www.tradingview.com/script/nXhuJpwr-Efficient-Trend-Step-Channel/
Can anyone code this indicator in python/numba please. Seems like i am getting stuck at this line not sure what it means
abs(change(src,length))/sum(abs(change(src)),length)
the result is supposedly a series but the seems to be a ratio of two series. Appreciate any help.
The text was updated successfully, but these errors were encountered: