-
Notifications
You must be signed in to change notification settings - Fork 246
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
feat: Incremental & streaming quotes, v3.0.0 #1014
base: main
Are you sure you want to change the base?
Conversation
- handle live quotes and provide them to other subscribers - enable Use, EMA, and SMA indicator streaming
Signed-off-by: Dave Skender <[email protected]>
Renaming to do or consider
Related migration documentation
|
Additional testing to do, or to consider
|
Documentation to do, or to consider for previews
|
Interface designs to do, or to consider
|
For consideration; but may want to implement this in a v3.1
/// <summary>
/// Optional. Use externally provided cache.
/// </summary>
/// <param name="externalCache"></param>
/// <remarks>
/// Allow users to provide their own cache storage location.
/// </remarks>
protected AbstractCache(
List<TSeries> externalCache)
{
Cache = externalCache;
throw new NotImplementedException();
} |
|
@thomasd3 (re: #1245), as a quick forecast, I’m hoping to get this major version out by end of this year in the next 2-3 months. I was aiming to time it with the .NET 9 release date, but don’t think that’s going to happen. I’ll also publish an updated preview edition soon; we’re still working through concepts and bigger breaking changes. |
Signed-off-by: Dave Skender <[email protected]>
Signed-off-by: Dave Skender <[email protected]>
Signed-off-by: Dave Skender <[email protected]>
|
Very excited about this major update @DaveSkender - really cool stuff. This probably doesn't fit into your library anywhere but I am writing a system that uses FusionCache to store candles, it's extremely fast and versatile, worth checking out.
|
v3.0.0: Streaming indicators (in-progress)
This is a collection of progressive and volatile pre-release features to produce streaming indicators and support for ingestion of price quotes from WebSockets and other active and incremental quote sources.
Notable scope
.Use(..)
chaininfo.xml
#1155IndexOf()
, avoid “Get” overusesDeferred to v3.1
List
with[]
in static series, then covert at end return (it’s faster) #1259