-
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
add standalone buffer-style increment methods #1091
Comments
For the static non-observable time-series implementation, an approach to explore might be in the following form; though, it may need be public static class Ema : List<EmaResult>
{
/* saved properties + minimal quote cache */
/* new quotes */
void Add(TQuote quote) { ... }
/* throw simple exception when quotes arrive out of order */
} Example
|
Since static increments are part of implementation streaming hubs, I’m repurposing this item to reflect full implementation of the incremental approach mentioned in the last comment. Here’s the original (obsolete scope) for reference:
Footnotes
|
This is awesome, had this ideas in mind a while back and never got around to implementing it. Great work Dave. |
Implement standalone buffering incrementing indicators.
Stock.Indicators/src/e-k/Ema/Ema.Increments.cs
Lines 3 to 11 in 8b02491
done when
The text was updated successfully, but these errors were encountered: