-
Notifications
You must be signed in to change notification settings - Fork 245
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
Draft
DaveSkender
wants to merge
46
commits into
main
Choose a base branch
from
v3
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- handle live quotes and provide them to other subscribers - enable Use, EMA, and SMA indicator streaming
Repository owner
locked and limited conversation to collaborators
Feb 6, 2023
DaveSkender
changed the title
v3: streaming and live quotes
v3: incremental & streaming quotes
Aug 31, 2023
Repository owner
unlocked this conversation
Nov 11, 2023
DaveSkender
changed the title
v3: incremental & streaming quotes
feat: Incremental & streaming quotes, v3.0.0
Jan 1, 2024
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. |
Closed
Signed-off-by: Dave Skender <[email protected]>
Signed-off-by: Dave Skender <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
#1155Deferred to v3.1
List
with[]
in static series, then covert at end return (it’s faster) #1259