What is Boot Camp?
Boot Camp is a great way to improve your skills and learn the QuantConnect API in easily digestible portions.
Don't have an account? Join QuantConnect Today
We are dedicated to providing investors with a cutting-edge platform for rapidly creating quant investment strategies. Founded in 2012, we've empowered more than 250,000 quants and engineers to create and trade their ideas.
Quickly and easily started with our API to build your strategy. The learning center lessons are interactive, step-by-step guides to make you productive as fast as possible.
Focus your efforts on driving alpha, not parsing CSV files. Our cloud offers hundreds of terabytes of traditional and alternative data preformatted, cleaned, and instantly accessible by our API.
Coordinate teamwork, control access permissions, and your shared cloud resources. Grow your trading organization safely and efficiently on top of our cloud architecture.
A selection of streaming live-trading strategies written by QuantConnect, and top highlights from the community available to follow and clone. Peer into detailed real-time positions to gain insight for your own trading.
What is Boot Camp?
Boot Camp is a great way to improve your skills and learn the QuantConnect API in easily digestible portions.
A collection of courses from independent educators to improve your quant skill base and create better strategies.
Solidify and expand your quant skill base with courses at QuantConnect
Learn algorithmic trading with python for US Equities. Guided strategy development in easily digestible portions.
Author: QuantConnect
Free | 96,402 People Enrolled
Learn algorithmic trading with python for FX. Guided strategy development in easily digestible portions.
Author: QuantConnect
Free | 20,653 People Enrolled
Learn algorithmic trading with python for Futures. Guided strategy development in easily digestible portions.
Author: QuantConnect
Free | 7,487 People Enrolled
In this algorithmic trading tutorial series you will learn everything you need to know to start writing your own trading bots using Python and the QuantConnect quantitative trading platform.
Author: Louis
Free | 29,073 People Enrolled
Master algorithmic trading on QuantConnect; backtest and live trade Stocks, Options, Futures, Forex, and Crypto.
Author: Cheng Li
Paid | Enroll on Udemy
Learn to use Python, Pandas, Matplotlib, and the QuantConnect Lean Engine to perform financial analysis and trading.
Author: Jose Portilla, Pierian Training
Paid | Enroll on Udemy
Learn to write programs that algorithmically trade cryptocurrencies using QuantConnect (C#).
Author: Eric Summers
Paid | Enroll on Udemy
Organization Notes
Get Started with Algorithm Lab
New Research
Optimizing a Gold-SPY Portfolio Using Hidden Markov Models for Market Downtime
Gold-SPY portfolio optimization using Hidden Markov Models for minimizing market downturn risk....
ReadNew Announcement
Quant League Q1 2025 Results: Triton Quantitative Trading Takes the 1st Place!
ReadAlgorithm Lab is your playground for developing and refining trading algorithms with QuantConnect. Utilize advanced tools, historical data, and robust backtesting to enhance your trading strategies. Transform your ideas into actionable insights and optimize your trading approach with ease.
Sign Up for FreeAlready have an account Log In.
This account is protected by two-factor authentication.
Request Token Information Reset My TokenCreated | Last Time Used | Agent | |
---|---|---|---|
No entries found |
To continue please enter your email:
(No google account required)
To verify that everything goes well please enter the 6 digit verification code generated by the authenticator application
Algorithm Lab is your playground for developing and refining trading algorithms with QuantConnect. Utilize advanced tools, historical data, and robust backtesting to enhance your trading strategies. Transform your ideas into actionable insights and optimize your trading approach with ease.
Sign Up for FreeAlready have an account Log In.
Please stop one of the following coding sessions, or upgrade your account.
NAME | ORGANIZATION |
---|
QuantConnect Datasets
Explore free and paid datasets available on QuantConnect covering fundamentals, pricing, and alternative options.
Datasets >
Dashboard
A transparent, community reporting system. Report suspected issues with our cloud data to be investigated by the QuantConnect Team.
Issue List
Loading...
Data Explorer Issues are a way to report and track data problems. They give the QuantConnect community a way to discuss potential solutions and be notified when they are resolved. If you think you have found a data problem please check the existing open and closed issues first; often another user may have already reported your problem.
Does your issue match any of the already listed issues?
Thank you for your contribution! Our team is currently working on resolving these issues, please subscribe to them to receive updates.
Datasets >
Upcoming Splits
Dataset by EOD Historical Data
The Upcoming Splits dataset, provided by EODHD, offers daily alerts for US Equities that will have a split event within the upcoming 7 days. The data starts in January 2010, and is delivered on a daily frequency.
Compared to US Equity Security Master as a benchmark, the Upcoming Splits dataset has an 85.18% coverage of all splits since 2015, while having a 92.74% precision on the exact split dates of the covered ones and a 97.18% precision within +/- 3 days.
EOD Historical Data (EODHD) is a financial data provider based in France, and founded in April 2015. They focus on providing clean financial data, including stock prices, splits, dividends, fundamentals, macroeconomic indicators, technical indicators, and alternative data sources, through 24/7 API seamlessly. For more information about EODHD, visit https://eodhd.com/.
The following snippet demonstrates how to request data from the Upcoming Splits dataset:
self.add_universe(EODHDUpcomingSplits, self.selection_function)
AddUniverse<EODHDUpcomingSplits>(SelectionFunction);
The following table describes the dataset properties:
Property | Value |
---|---|
Start Date | January 2010 |
Data Density | Sparse |
Resolution | Daily |
Timezone | New York |
The Upcoming Splits dataset provides timely notifications about upcoming share split or reverse split events, allowing traders to capitalize on potential price movements and manage risks effectively. Examples include the following strategies:
The EODHD Upcoming Splits dataset provides EODHDUpcomingSplits objects, which have the following attributes:
To select a dynamic universe of US Equities based on the Upcoming Splits dataset, call the AddUniverseadd_universe method with a EODHDUpcomingSplits cast.
def initialize(self) -> None:
self._universe = self.add_universe(EODHDUpcomingSplits, self.universe_selection_filter)
def universe_selection_filter(self, splits: List[EODHDUpcomingSplits]) -> List[Symbol]:
return [d.symbol for d in splits if d.split_date <= self.time + timedelta(3) and d.split_factor > 1]
public override void Initialize()
{
_universe = AddUniverse<EODHDUpcomingSplits>(UniverseSelectionFilter);
}
private IEnumerable<Symol> UniverseSelectionFilter(IEnumerable<EODHDUpcomingSplits> splits)
{
return from d in splits
where d.SplitDate <= Time.AddDays(3) && d.SplitFactor > 1m
select d.Symbol;
}
For more information about universe settings, see Settings.
To add Upcoming Splits data to your algorithm, call the AddData<EODHDUpcomingSplits>add_data method.
class UpcomingSplitsDataAlgorithm(QCAlgorithm):
def initialize(self) -> None:
self.set_start_date(2019, 1, 1)
self.set_end_date(2020, 6, 1)
self.set_cash(100000)
self._symbol = self.add_equity("AAPL", Resolution.DAILY).symbol
self.dataset_symbol = self.add_data(EODHDUpcomingSplits, "splits").symbol
namespace QuantConnect.Algorithm.CSharp.AltData
{
public class UpcomingSplitsDataAlgorithm : QCAlgorithm
{
private Symbol _symbol, _datasetSymbol;
public override void Initialize()
{
SetStartDate(2019, 1, 1);
SetEndDate(2020, 6, 1);
SetCash(100000);
_symbol = AddEquity("AAPL", Resolution.Daily).Symbol;
_datasetSymbol = AddData<EODHDUpcomingSplits>("splits").Symbol;
}
}
}
To get the current Upcoming Splits data, call the Get<EODHDUpcomingSplits>get(EODHDUpcomingSplits) method from the current Slice and index the result with the security Symbol. Slice objects deliver unique events to your algorithm as they happen, but the Slice may not contain data for your security at every time step. To avoid issues, check if the Slice contains the data you want before you index it.
def on_data(self, slice: Slice) -> None:
upcomings_splits = slice.get(EODHDUpcomingSplits)
if upcomings_splits and self._symbol in upcomings_splits:
upcomings_splits_data_point = upcomings_splits[self._symbol]
self.log(f"{self._symbol} will split at {upcomings_splits_data_point.split_date} with split factor {upcomings_splits_data_point.split_factor}")
public override void OnData(Slice slice)
{
var upcomingSplits = slice.Get<EODHDUpcomingSplits>();
if (upcomingSplits.TryGetValue(_symbol, out var upcomingSplitsDataPoint))
{
Log($"{_symbol} will split at {upcomingSplitsDataPoint.SplitDate} with split factor {upcomingSplitsDataPoint.SplitFactor}");
}
}
You can also iterate through all of the dataset objects in the current Slice
def on_data(self, slice: Slice) -> None:
for equity_symbol, upcomings_splits_data_point in slice.get(EODHDUpcomingSplits).items():
self.log(f"{equity_symbol} will split at {upcomings_splits_data_point.split_date} with split factor {upcomings_splits_data_point.split_factor}")
public override void OnData(Slice slice)
{
foreach (var kvp in slice.Get<EODHDUpcomingSplits>())
{
var equitySymbol = kvp.Key;
var upcomingSplitsDataPoint = kvp.Value;
Log($"{equitySymbol} will splits at {upcomingSplitsDataPoint.SplitDdate} with split factor {upcomingSplitsDataPoint.SplitFactor}");
}
}
To get historical Upcoming Splits data, call the Historyhistory method with the type EODHDUpcomingSplits cast and the period of request. If there is no data in the period you request, the history result is empty.
history = self.history[EODHDUpcomingSplits](timedelta(100), Resolution.DAILY)
var history = History<EODHDUpcomingSplits>(TimeSpan.FromDays(100), Resolution.Daily);
For more information about historical data, see History Requests.
To remove a subscription, call the RemoveSecurityremove_security method.
self.remove_security(self.dataset_symbol)
RemoveSecurity(_datasetSymbol);
The EODHD Upcoming Splits dataset provides EODHDUpcomingSplits objects, which have the following attributes:
The following example algorithm holds each equity in equal size with upcoming splits within 7 days. It selects stocks that split up to more shares with lower price and tries to capitalize the higher demand of the more afforable stocks.
class UpcomingSplitsExampleAlgorithm(QCAlgorithm):
def initialize(self) -> None:
self.set_start_date(2020, 1, 1)
self.set_end_date(2024, 10, 1)
self.set_cash(100000)
# Trade on daily basis based on daily upcoming splits signals.
self.universe_settings.resolution = Resolution.DAILY
# Universe consists of equities with upcoming splits events.
self._universe = self.add_universe(EODHDUpcomingSplits, self.selection)
def selection(self, splits: List[EODHDUpcomingSplits]) -> List[Symbol]:
# Split (more shares with lower price) will make the stock more affordable and drive up the demand.
# Hence, include all stocks that will have a split within the next 7 days.
# Note that spliting up the stock means the split factor > 1.
return [x.symbol for x in splits if x.split_factor > 1]
def on_data(self, slice: Slice) -> None:
# Equally invest in each member of the universe to evenly dissipate the capital risk.
total_count = len(self._universe.members)
targets = [PortfolioTarget.percent(self, symbol, 1. / total_count) for symbol in self._universe.members.keys()]
self.set_holdings(targets)
def on_securities_changed(self, changes: SecurityChanges) -> None:
for removed in changes.removed_securities:
# Liquidate the ones exit the universe (already split) to capitalize the microeconomic demand.
self.liquidate(removed.symbol)
namespace QuantConnect
{
public class UpcomingSplitsExampleAlgorithm : QCAlgorithm
{
private Universe _universe;
public override void Initialize()
{
SetStartDate(2020, 1, 1);
SetEndDate(2024, 10, 1);
SetCash(100000);
// Trade on daily basis based on daily upcoming earnings signals.
UniverseSettings.Resolution = Resolution.Daily;
// Universe consists of equities with upcoming earnings events.
_universe = AddUniverse<EODHDUpcomingSplits>((splits) => {
return splits
// Split (more shares with lower price) will make the stock more affordable and drive up the demand.
// Hence, include all stocks that will have a split within the next 7 days.
// Note that spliting up the stock means the split factor > 1.
.Where(datum => (datum as EODHDUpcomingSplits).SplitFactor > 1)
.Select(datum => datum.Symbol);
});
}
public override void OnData(Slice slice)
{
// Equally invest in each member of the universe to evenly dissipate the capital risk.
var totalCount = _universe.Members.Count;
var targets = _universe.Members.Keys
.Select(symbol => (PortfolioTarget)PortfolioTarget.Percent(this, symbol, 1m / totalCount))
.ToList();
SetHoldings(targets);
}
public override void OnSecuritiesChanged(SecurityChanges changes)
{
foreach (var removed in changes.RemovedSecurities)
{
// Liquidate the ones exit the universe (already split) to capitalize the microeconomic demand.
Liquidate(removed.Symbol);
}
}
}
}
The following example algorithm holds each equity in equal size with upcoming splits within 7 days using algorithm framework. It selects stocks that split up to more shares with lower price and tries to capitalize the higher demand of the more afforable stocks.
class UpcomingSplitsExampleAlgorithm(QCAlgorithm):
def initialize(self) -> None:
self.set_start_date(2020, 1, 1)
self.set_end_date(2024, 10, 1)
self.set_cash(100000)
# Trade on daily basis based on daily upcoming splits signals.
self.universe_settings.resolution = Resolution.DAILY
# Universe consists of equities with upcoming splits events.
self._universe = self.add_universe(EODHDUpcomingSplits, self.selection)
# Constant alpha model to emit insights for the stocks with split up event within a week, estimating their demand and price will go up.
# Signal stays for 2 days to fully digest the driven up demands.
self.add_alpha(ConstantAlphaModel(InsightType.PRICE, InsightDirection.UP, timedelta(2)))
# Equal weighting for each signal to evenly dissipate the capital risk.
self.set_portfolio_construction(EqualWeightingPortfolioConstructionModel(Expiry.END_OF_DAY))
def selection(self, splits: List[EODHDUpcomingSplits]) -> List[Symbol]:
# Split (more shares with lower price) will make the stock more affordable and drive up the demand.
# Hence, include all stocks that will have a split within the next 7 days.
# Note that spliting up the stock means the split factor > 1.
return [x.symbol for x in splits if x.split_factor > 1]
namespace QuantConnect
{
public class UpcomingSplitsExampleAlgorithm : QCAlgorithm
{
private Universe _universe;
public override void Initialize()
{
SetStartDate(2020, 1, 1);
SetEndDate(2024, 10, 1);
SetCash(100000);
// Trade on daily basis based on daily upcoming splits signals.
UniverseSettings.Resolution = Resolution.Daily;
// Universe consists of equities with upcoming splits events.
_universe = AddUniverse<EODHDUpcomingSplits>((splits) => {
return splits
// Split (more shares with lower price) will make the stock more affordable and drive up the demand.
// Hence, include all stocks that will have a split within the next 7 days.
// Note that spliting up the stock means the split factor > 1.
.Where(datum => (datum as EODHDUpcomingSplits).SplitFactor > 1)
.Select(datum => datum.Symbol);
});
// Constant alpha model to emit insights for the stocks with split up event within a week, estimating their demand and price will go up.
// Signal stays for 2 days to fully digest the driven up demands.
AddAlpha(new ConstantAlphaModel(InsightType.Price, InsightDirection.Up, TimeSpan.FromDays(2)));
// Equal weighting for each signal to evenly dissipate the capital risk.
SetPortfolioConstruction(new EqualWeightingPortfolioConstructionModel(Expiry.EndOfDay));
}
}
}
Upcoming Splits is allowed to be used in the cloud for personal and commercial projects for free. The data is permissioned for use within the licensed organization only
Free | Documentation
LEAN CLI is a cross-platform wrapper on the QuantConnect algorithmic trading engine called LEAN. The CLI makes using LEAN incredibly easy, reducing most of the pain points of developing and managing an algorithmic trading strategy to a few lines of bash.
Using the CLI you can download the same data QuantConnect hosts in the cloud for a small fee. These fees are per file downloaded, and are paid for in QuantConnect-Credits (QCC). We recommend purchasing credits to enable downloading.
The CLI command generator is a helpful tool to generate a copy-paste command to download this dataset from the form below.
Using Upcoming Splits data in the QuantConnect Cloud for your backtesting and live trading purposes.
What people are saying about this
This product has not received any reviews yet, be the first to post one!
Rate the Module:
Provider offers 1 licensing option
Explore free and paid datasets available on QuantConnect covering fundamentals, pricing, and alternative options.
Dataset Status from to
No Runs
OK
Degraded
Failure
Explore free and paid datasets available on QuantConnect covering fundamentals, pricing, and alternative options.
Lorem ipsum dolor sit amet conjectura lorem ipsum dolor sit amet conjectura lorem ipsum
Configuration Keys
Environment Variables
Lorem ipsum dolor sit amet conjectura lorem ipsum dolor sit amet conjectura lorem ipsum
File Link
Lorem ipsum dolor sit amet conjectura lorem ipsum dolor sit amet conjectura lorem ipsum
Lorem ipsum dolor sit amet conjectura lorem ipsum dolor sit amet conjectura lorem ipsum
Upload a manually created tar or zip file to all cloud data systems.
Add a link and click the Sync Dataset button to upload the dataset
Upload Destinations
The dataset synchronizer is an internal tool for the QuantConnect team to upload data to the
cloud data storage environments. It supports TAR files which are extracted in the root directory
of the cloud data environments.
Take extreme care to carefully structure your data TAR package with
the same folders as the LEAN data folder. Ensure all folders and file names are lowercase as Linux is case-sensitive.
Support
Algorithm Lab is your playground for developing and refining trading algorithms with QuantConnect. Utilize advanced tools, historical data, and robust backtesting to enhance your trading strategies. Transform your ideas into actionable insights and optimize your trading approach with ease.
Sign Up for FreeAlready have an account Log In.
â‘
â‘
â‘
â‘
â‘
Hover and click over the stars to rate us.
It looks like you are not fully satisfied with your experience on QuantConnect, please take a moment to let us know how we can improve our services for you:
If you have a minute to spare, please leave us a review on Trustpilot.
Stories like yours help others see the full potential of QuantConnect.
Organization Name |
---|
Upgrade to Team plan or higher to enable custom invoicing
Changes will be applied to future invoices.
Users will be able to join by following the link in the invitation email.
You’ve been invited by Jared Broad to join his G-Force Organization.
Would you like to accept the invitation?
Are you sure you want to delete the encryption key "undefined"?
Caution: We will not be able to decrypt encrypted projects without the original key.
Drag & Drop or
Keys are added to the local storage in your web browser and not uploaded to QuantConnect. To use an encrypted project on another computer you will need to bring a copy of the key.
This project is encrypted using the key .
This project will be encrypted using the key .