-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
Implement Download Project in Lean #7975
Merged
Martin-Molinero
merged 16 commits into
QuantConnect:master
from
Romazes:feature-new-download-project
Apr 25, 2024
Merged
Implement Download Project in Lean #7975
Martin-Molinero
merged 16 commits into
QuantConnect:master
from
Romazes:feature-new-download-project
Apr 25, 2024
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
feat: add config file refactor: logic of parsing config
Romazes
changed the title
Feature new download project
Implement Download Project in Lean
Apr 24, 2024
Merged
This was referenced Apr 29, 2024
This was referenced May 2, 2024
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.
Description
This Pull Request introduces a new feature to Lean, allowing users to download various data types from multiple data sources. The feature enables users to fetch Trade, Quote, and Open Interest data based on the capabilities of the selected data source. Additionally, users can download data for different security types such as Equity, Option, Crypto, etc. The data can be filtered by start and end dates and is stored locally on the disk. The aim is to improve the download speed from data sources by creating an independent download project and implementing a local algorithm for trading.
Related Issue
Related Pull Request
data download
command to lean-cli for data retrieval lean-cli#447Motivation and Context
Downloading historical and real-time data is a crucial part of algorithmic trading strategies. With this feature, users can seamlessly download data from popular data sources like Interactive Brokers, Oanda, Bitfinex, Coinbase Advanced Trade, Binance, Kraken, IQFeed, Polygon, FactSet, IEX, AlphaVantage, CoinApi, ThetaData, QuantConnect, Local, Terminal Link, Bybit, and more. By providing flexibility in downloading Trade, Quote, and Open Interest data, users can tailor their data acquisition to suit their trading strategies.
The feature is designed to be highly customizable, allowing users to specify the data source, data type, tickers, security type, market, resolution, and date range. This flexibility ensures that users can retrieve the exact data they need for their trading algorithms.
Requires Documentation Change
N/A
How Has This Been Tested?
Example of running DownloaderDataProvider
Types of changes
Checklist:
bug-<issue#>-<description>
orfeature-<issue#>-<description>