-
Notifications
You must be signed in to change notification settings - Fork 247
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
Idea: Increment approach for ADX #1062
Comments
Thanks @ingted. I'll keep this in mind when getting back to: It might make sense for our next v3 preview to focus on providing all the static increments functions as part of the We've already started down this path anyway: Stock.Indicators/src/e-k/Ema/Ema.Observer.cs Lines 43 to 45 in fc34f3d
Stock.Indicators/src/s-z/Sma/Sma.Observer.cs Lines 40 to 58 in fc34f3d
|
Related to #1091 |
It seems like the indicator values are calculated for the whole input each time.
Is there any possibility to add incrementally update version?
Here are my workaround for the Adx indicator:
Adx.Api.cs
AdxSeries.cs
The usage in F#:
I just need to input the AdxResult list, the AdxHelper and the offset, it will only calculate start from the offset.
I know this looks ugly... but I have no elegant way...
The text was updated successfully, but these errors were encountered: