-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
TDA TimeSegmentedValue, TimeSegmentedValueRatio Indicators #431
Comments
Hello @hhashim1, They will be added to the list of indicators to be included. However, I can not guarantee they will be implemented any time soon unfortunately unless you or someone else is willing to do it. I am knee deep in unresolved Issues and prior indicator requests with little to no support from other users or developers. 😞 To that end, it has been labeled as another Help Wanted case. Kind Regards, |
Upon review of RelativeVolumeStDev source, it is essentially the zscore of volume input and therefore is no need to implement a separate indicator for this. df = # ohlcv
df["relvolstd"] = ta.zscore(df["volume"], length=60) # with negative values
# OR
df["relvolstd"] = ta.zscore(df["volume"], length=60).abs() # with positive values
print(df) Kind Regards, |
Hey Kevin,
Thanks for getting back to me. I can definitely help with creating
indicators (at least the ones I have asked for). If you could give me a
quick 5 mins crash course on do's and dont's of your library, I can
definitely help out with that. I might also be able to help with other
indicators and aspects of the library.
Let me know when you have some time to chat about the next steps.
…On Tue, Nov 16, 2021 at 10:46 AM Kevin Johnson ***@***.***> wrote:
Hello @hhashim1 <https://github.com/hhashim1>,
They will be added to the list of indicators to be included. However, I
can not guarantee they will be implemented any time soon unfortunately
unless you or someone else is willing to do it. I am knee deep in
unresolved Issues and prior indicator requests with little to no support
from other users or developers. 😞 To that end, it has been labeled as
another *Help Wanted* case.
Kind Regards,
KJ
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#431 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AO7RTYKGJFMYR2JS6M5SCCDUMKDHRANCNFSM5IDH6PTQ>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
@twopirllc let me know if you need additional help with new development. I have some friends who have some bandwidth and are good at this kind of stuff. I can definitely ask them if they are willing to help out and take your lib to the next step. |
Great! 😎 To that end...
Cheers! |
Hey, count me in! I will download the development repo and start looking at
the structure. In the meantime, I will also ask my friend.
By the way, I have already updated the code to use Polygon as a data source
on top of AlphaAdvantage and Yahoo. My friend wrote a library for Polygon
and I have used his as he makes it super easy. He is working on making his
library the official Polygon library :-)
By the way, is it possible to have a Discord server for discussion and
support? I think its much faster and you won't be the one to be knee-deep
in answering questions. You will have other members who can always chime
in. You also have your collabs who can help.
Think about it. I am a member of a couple of other discord servers that are
support systems for other libraries and it makes it much easier on the
owner.
Let's talk! Oh, you can email me directly. I emailed you last night so you
can respond to my personal email.
|
Great! I am trying to get some of this done in the free time, so please be patient.
Great! Looking forward to it. A Polygon wrapper would be a nice additional resource. 😎
Sure. I can set up a Discord server, but only for serious collaborators. Once Pandas TA
We will. 😎 KJ |
hey @twopirllc
As Hashim mentioned a friend of his wrote a wrapper for polygon.io as s data source, I am that friend :D hashim and I (well more like Hashim alone :D ) is working towards adding that lib as a data source since polygon is a very fine data provider.
If you wish, feel free to use the server I have setup for polygon lib support. I would create a private collab channel where only we three can see/send msgs (hashim is already a part of it). Once you feel the lib is mature enough to have its own server, feel free to create one or just open up that channel for public, however you wish. I don't have many members since I only published it a few days back. Hashim mentioned to me yday about his convo with you in #431 . and we decided to help however we can :) |
Hi @twopirllc,
Nice to meet you! 😎 I connected the dots. 😁 Awesome! Congrats on getting included with Polygon integration with your library. 🥂
True. Long ago for my first Open Source Python package, I wrote an AlphaVantage API wrapper. Sadly I still haven't integrated it yet with Pandas TA. In due time.
Cool! I will join up soon!
Cool! 😎 Thanks! KJ |
Which version are you running? The lastest version is on Github. Pip is for major releases.
Hi Kevin,
Do you think it is possible to create a couple of new indicators for me that I am currently using on TOS? Here is the thinkscript code for them. Thank you so much for your help.
### RelativeVolumeStDev:
Also known as: Absolute Zscore of Volume. Does not need to be implemented, see example in comments below. - KJ
### Time Segmented Value
### Time Segmented Value Ratio:
The text was updated successfully, but these errors were encountered: