Initial code for DataBento Implementation.#2
Merged
jaredbroad merged 15 commits intoQuantConnect:masterfrom Nov 5, 2025
Merged
Initial code for DataBento Implementation.#2jaredbroad merged 15 commits intoQuantConnect:masterfrom
jaredbroad merged 15 commits intoQuantConnect:masterfrom
Conversation
…d Tick. Subscribe and Unsubscribe are now sync and return bools for success. GetHistory is the default implementation, no override. Fixed the wrong gateway url.
jaredbroad
requested changes
Sep 29, 2025
Comment on lines
+40
to
+41
| _equitySymbol = AddEquity("SPY").Symbol; | ||
| _customDataSymbol = AddData<DataBentoDataType>(_equitySymbol).Symbol; |
Member
There was a problem hiding this comment.
Please update to work and demonstrate the new data.
Delete all the non-db related code like custom data etc.
| @@ -0,0 +1,45 @@ | |||
| ### Meta | |||
Member
There was a problem hiding this comment.
Please update and complete file
| @@ -0,0 +1,39 @@ | |||
| ### Requesting Data | |||
Member
There was a problem hiding this comment.
Please update and complete file
Comment on lines
+1
to
+3
| # Get {vendorNameDatasetName} | ||
| vendorNameDatasetName=${PWD##*.} | ||
| vendorNameDatasetNameUniverse=${vendorNameDatasetName}Universe |
…teo-Scorsone/Lean.DataSource.DataBento into databento-integration
…teo-Scorsone/Lean.DataSource.DataBento into databento-integration
… for data aggregator. Data is now recieved in OnData. All log.Trace's are not commented out, they will print to the screen.
…xplicitly subscribed to tick.
not needed in the repo
…teo-Scorsone/Lean.DataSource.DataBento into databento-integration
This file contains hidden or 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
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.
This is the first bit of code I did for the historical code through IDataProvider and live through IDataQueueHandler. I started only supporting futures, later on can branch into more. I use the raw HTTP client to get historical data through the HTTP request, and I made a live client handler since DataBento uses a TCP connection, not wss, it's different than the implantation for a data provider like Polygon. The repo might be a bit messy, wasn't sure if any files could be deleted so I kept them. Let me know the state of this implementation!