-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
How to support different timescale ? #583
Comments
Is your issue that you have a column of TA-Lib output and want to “adjust”
that output to a different timescale?
Normally one would adjust the OHLCV data to a different timescale and then
call TA-Lib functions on that new timescale.
…On Tue, Mar 14, 2023 at 9:20 AM eromoe ***@***.***> wrote:
For example, I have 1 minute scale tick data, and I'd like add 5 minute/
15 minute feature upon .
I wrote a function
def apply_over(func, arr, stride):
n = len(arr)
s = np.empty(n).reshape(-1, stride)
for i in range(5):
s[:,i] = func(arr[i::5])
return s.reshape(n,)
This generate 5 minute SMA features for each 1 minute tick .
arr = np.arange(n).astype(float)
sma_5_5 = apply_over(lambda a: talib.SMA(a, 5) , arr, 5)
I'd like adapt above code to every talib function, though there are many
Indicator need multi input.
So wonder is there any suggestion way to wrap talib function with my
apply_over fucntion ?
Or I have to rewrite all the functions ...
—
Reply to this email directly, view it on GitHub
<#583>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAAF5AYCWKDDVW5JLQGYNX3W37THDANCNFSM6AAAAAAVZ42Y4U>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
No, arr is input . On every tick , I need calculate
For example: At 505,
Using |
I am looking for a way, either inherit a interface or a wrap to achieve my goal efficiently. |
Hello @eromoe , I'm curious if you've had any progress on this issue. I am currently working on similar code myself. |
For example, I have 1 minute scale tick data, and I'd like add 5 minute/ 15 minute feature upon .
I wrote a function
This generate 5 minute SMA features for each 1 minute tick .
I'd like adapt above code to every talib function, though there are many Indicator need multi input.
So wonder is there any suggestion way to wrap talib function with my
apply_over
fucntion ?Or I have to rewrite all the functions ...
The text was updated successfully, but these errors were encountered: