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,010 People Enrolled
Learn algorithmic trading with python for FX. Guided strategy development in easily digestible portions.
Author: QuantConnect
Free | 20,591 People Enrolled
Learn algorithmic trading with python for Futures. Guided strategy development in easily digestible portions.
Author: QuantConnect
Free | 7,424 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 | 28,796 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....
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 >
US Equity Security Master
Dataset by QuantConnect
The US Equity Security Master dataset by QuantConnect tracks US Equity corporate actions, including splits, dividends, delistings, mergers, and ticker changes through history. The data covers approximately 27,500 US Equities, starts in January 1998, and is delivered on a daily update frequency. You can easily download and install the dataset with the LEAN CLI so it's ready to use by LEAN. LEAN automatically handles all corporate actions and passes them into your algorithm as events.
QuantConnect was founded in 2012 to serve quants everywhere with the best possible algorithmic trading technology. Seeking to disrupt a notoriously closed-source industry, QuantConnect takes a radically open-source approach to algorithmic trading. Through the QuantConnect web platform, more than 50,000 quants are served every month.
Data is delivered as a daily updated zip archive of map and factor files. The data is designed to be used in the LEAN Engine and cannot be consumed another way. The following table shows the dataset properties:
Property | Value |
---|---|
Start Date | January 1998 |
Data Points | Splits, Dividends, Mergers, IPO, & Delistings |
Asset Coverage | 27,500 US Equities |
Resolution | Daily |
Timezone | New York |
You don't need any special code to utilize the US Equity Security Master. It automatically loads when you request US Equities data.
The US Security Master enables you to accurately design strategies harnessing any core corporate actions. Examples include the following strategies:
For more example algorithms, see Examples.
The US Equity Security Master dataset provides Split, Dividend, Delisting, and SymbolChangedEvent objects.
When a split or merger occurs, we pass the previous Symbol data into your algorithm. Split objects have the following attributes:
Dividend events are triggered on the payment date. Dividend objects have the following attributes:
When a security is delisted, we notify your algorithm. Delisting objects have the following attributes:
When a security changes their ticker, we notify your algorithm. SymbolChangedEvent objects have the following attributes:
To view the supported assets in the US Equity Security Master dataset, see the Data Explorer. This dataset doesn't include Over-the-Counter (OTC) stocks.
To get the current split data, index the Splitssplits property of the current Slice with the Equity 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:
# Check if any splits for the symbol
if slice.splits.contains_key(self._symbol):
# If so, get the mapped split object
split = slice.splits[self._symbol]
split_type = {0: "Warning", 1: "SplitOccurred"}.get(split.type)
self.log(f"Split: {split.symbol}\t{split.split_factor}\t{split.reference_price}\t{split_type}")
public override void OnData(Slice slice)
{
// Check if any splits for the symbol
if (slice.Splits.ContainsKey(_symbol))
{
// If so, get the mapped split object
var split = slice.Splits[_symbol];
Log($"Split: {split.Symbol}\t{split.SplitFactor}\t{split.ReferencePrice}\t{split.Type}");
}
}
For more information about accessing splits, see Splits.
To get the current dividend data, index the Dividendsdividends property of the current Slice with the Equity 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:
# Check if any dividend for the symbol
if slice.dividends.contains_key(self._symbol):
# If so, get the mapped dividend object
dividend = slice.dividends[self._symbol]
self.log(f'Dividend: {dividend.symbol}\t{dividend.distribution}\t{dividend.reference_price}')
public override void OnData(Slice slice)
{
// Check if any dividend for the symbol
if (slice.Dividends.ContainsKey(_symbol))
{
// If so, get the mapped dividend object
var dividend = slice.Dividends[_symbol];
Log($"Dividend: {dividend.Symbol}\t{dividend.Distribution}\t{dividend.ReferencePrice}");
}
}
For more information about accessing dividends, see Dividends.
To get the current Delistings data, index the Delistingsdelistings property of the current Slice with the Equity 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:
# Check if any delisting for the symbol
if slice.delistings.contains_key(self._symbol):
# If so, get the mapped delisting object
delisting = slice.delistings[self._symbol]
delisting_type = {0: "Warning", 1: "Delisted"}.get(delisting.type)
self.log(f'Delistings: {delisting_type}')
public override void OnData(Slice slice)
{
// Check if any delisting for the symbol
if (slice.Delistings.ContainsKey(_symbol))
{
// If so, get the mapped delisting object
var delisting = slice.Delistings[_symbol];
Log($"Delistings: {delisting.Type}");
}
}
For more information about accessing delistings, see Delistings.
To get the current Symbol change events, index the SymbolChangedEventssymbol_changed_events property of the current Slice with the Equity 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:
# Check if any symbol change event for the symbol
if slice.symbol_changed_events.contains_key(self._symbol):
# If so, get the mapped SymbolChangeEvent object
symbol_changed_event = slice.symbol_changed_events[self._symbol]
self.log(f"Symbol changed: {symbol_changed_event.old_symbol} -> {symbol_changed_event.new_symbol}")
public override void OnData(Slice slice){
// Check if any symbol change event for the symbol
if (slice.SymbolChangedEvents.ContainsKey(_symbol))
{
// If so, get the mapped SymbolChangeEvent object
var symbolChangedEvent = slice.SymbolChangedEvents[_symbol];
Log($"Symbol changed: {symbolChangedEvent.OldSymbol} -> {symbolChangedEvent.NewSymbol}");
}
}
For more information about accessing Symbol change events, see Symbol Changes.
To get historical US Equity Security Master data, call the Historyhistory method with the data type and the Equity Symbol. If there is no data in the period you request, the history result is empty.
# Splits
split_history_df = self.history(Split, self._symbol, timedelta(5*365))
split_history = self.history[Split](self._symbol, timedelta(5*365))
# Dividends
dividend_history_df = self.history(Dividend, self._symbol, timedelta(5*365))
dividend_history = self.history[Dividend](self._symbol, timedelta(5*365))
# Symbol Changes
symbol_change_history_df = self.history(SymbolChangedEvent, self._symbol, timedelta(5*365))
symbol_change_history = self.history[SymbolChangedEvent](self._symbol, timedelta(5*365))
# Delistings
delisting_history_df = self.history(Delisting, self._symbol, timedelta(5*365))
delisting_history = self.history[Delisting](self._symbol, timedelta(5*365))
// Splits
var splitHistory = History<Split>(_symbol, TimeSpan.FromDays(5*365));
// Dividends
var dividendHistory = History<Dividend>(_symbol, TimeSpan.FromDays(5*365));
// Symbol Changes
var symbolChangeHistory = History<SymbolChangedEvent>(_symbol, TimeSpan.FromDays(5*365));
// Delistings
var delistingHistory = History<Delisting>(_symbol, TimeSpan.FromDays(5*365));
For more information about historical data, see History Requests.
In backtesting, corporate actions occurs at midnight (ET). In live trading, the live data for corporate actions arrives at 6/7 AM ET, so that's when they occur.
The US Equity Security Master dataset provides Split, Dividend, Delisting, and SymbolChangedEvent objects.
When a split or merger occurs, we pass the previous Symbol data into your algorithm. Split objects have the following attributes:
Dividend events are triggered on the payment date. Dividend objects have the following attributes:
When a security is delisted, we notify your algorithm. Delisting objects have the following attributes:
When a security changes their ticker, we notify your algorithm. SymbolChangedEvent objects have the following attributes:
The following example algorithm logs the Split, Dividend, Delisting, and SymbolChangedEvent objects of Apple:
from AlgorithmImports import *
from QuantConnect.DataSource import *
class USEquitySecurityMasterAlgorithm (QCAlgorithm):
def initialize(self):
self.set_start_date(1998, 1, 1)
self.set_cash(1000000)
self.equity = self.add_equity("AAPL", Resolution.DAILY).symbol
def on_data(self, slice: Slice) -> None:
# Accessing Data - Splits
split = slice.splits.get(self.equity)
if split:
self.debug(f"{self.time} >> SPLIT >> {split.symbol} - {split.split_factor} - {self.portfolio.cash} - {self.portfolio[self.equity].price}")
# Accessing Data - Dividends
dividend = slice.dividends.get(self.equity)
if dividend:
self.debug(f"{self.time} >> DIVIDEND >> {dividend.symbol} - {dividend.distribution} - {self.portfolio.cash} - {self.portfolio[self.equity].price}")
# Accessing Data - Delisting
delisting = slice.delistings.get(self.equity)
if delisting:
delistingType = {0: "Warning", 1: "Delisted"}.get(delisting.type)
self.debug(f"{self.time} >> DELISTING >> {delisting.symbol} - {delistingType}")
# Accessing Data - Symbol Changed Event
symbolChangedEvent = slice.symbol_changed_events.get(self.equity)
if symbolChangedEvent:
self.debug(f"{self.time} >> SYMBOL CHANGED >> {symbolChangedEvent.old_symbol} -> {symbolChangedEvent.new_symbol}")
using QuantConnect.DataSource;
namespace QuantConnect
{
public class USEquitySecurityMasterAlgorithm : QCAlgorithm
{
private Symbol _equity;
public override void Initialize()
{
SetStartDate(1998, 1, 1);
SetCash(1000000);
_equity = AddEquity("AAPL", Resolution.Daily).Symbol;
}
public override void OnData(Slice slice)
{
// Accessing Data - Splits
if (slice.Splits.ContainsKey(_equity))
{
var split = slice.Splits[_equity];
Debug($"Split: {split.Symbol}\t{split.SplitFactor}\t{split.ReferencePrice}\t{split.Type}");
}
// Accessing Data - Dividends
if (slice.Dividends.ContainsKey(_equity))
{
var dividend = slice.Dividends[_equity];
Log($"Dividend: {dividend.Symbol}\t{dividend.Distribution}\t{dividend.ReferencePrice}");
}
// Accessing Data - Delisting
if (slice.Delistings.ContainsKey(_equity))
{
var delisting = slice.Delistings[_equity];
Log($"Delistings: {delisting.Type}");
}
// Accessing Data - Symbol Changed Event
if (slice.SymbolChangedEvents.ContainsKey(_equity))
{
var symbolChangedEvent = slice.SymbolChangedEvents[_equity];
Log($"Symbol changed: {symbolChangedEvent.OldSymbol} -> {symbolChangedEvent.NewSymbol}");
}
}
}
}
The following algorithm demonstrates the payments for cash dividends in backtesting. When the data normalization mode is Raw, your portfolio receives cash dividends.
from AlgorithmImports import *
from QuantConnect.DataSource import *
class PaymentAlgorithm(QCAlgorithm):
def initialize(self) -> None:
self.set_start_date(1998,1,1)
# this will use the Tradier Brokerage open order split behavior
# forward split will modify open order to maintain order value
# reverse split open orders will be canceled
self.set_brokerage_model(BrokerageName.TRADIER_BROKERAGE)
self.universe_settings.resolution = Resolution.DAILY
self.universe_settings.data_normalization_mode = DataNormalizationMode.RAW
# MSFT: Splits and Dividends
# GOOG: Symbol Changed Event
# AAA.1: Delisting
self.set_universe_selection(ManualUniverseSelectionModel(
Symbol.create("MSFT", SecurityType.EQUITY, Market.USA)))
self.set_alpha(PaymentAlphaModel())
self.set_portfolio_construction(EqualWeightingPortfolioConstructionModel())
self.set_execution(BracketExecutionModel())
class PaymentAlphaModel(AlphaModel):
symbol = Symbol.EMPTY
def update(self, algorithm: QCAlgorithm, slice: Slice) -> List[Insight]:
# Accessing Data - Splits
split = slice.splits.get(self.symbol)
if split:
algorithm.debug(f"{algorithm.time} >> SPLIT >> {split.symbol} - {split.split_factor} - {algorithm.portfolio.cash} - {algorithm.portfolio[self.symbol].price}")
# Accessing Data - Dividends
dividend = slice.dividends.get(self.symbol)
if dividend:
algorithm.debug(f"{algorithm.time} >> DIVIDEND >> {dividend.symbol} - {dividend.distribution} - {algorithm.portfolio.cash} - {algorithm.portfolio[self.symbol].price}")
# Accessing Data - Delistings
delisting = slice.delistings.get(self.symbol)
if delisting:
delistingType = {0: "Warning", 1: "Delisted"}.get(delisting.type)
algorithm.debug(f"{algorithm.time} >> DELISTING >> {delisting.symbol} - {delistingType}")
# Accessing Data - Symbol Changed Events
symbolChangedEvent = slice.symbol_changed_events.get(self.symbol)
if symbolChangedEvent:
algorithm.debug(f"{algorithm.time} >> SYMBOL CHANGED >> {symbolChangedEvent.old_symbol} -> {symbolChangedEvent.new_symbol}")
bar = slice.bars.get(self.symbol)
return [Insight.price(self.symbol, timedelta(1), InsightDirection.UP)] if bar else []
def on_securities_changed(self, algorithm: QCAlgorithm, changes: SecurityChanges) -> None:
self.symbol = list(changes.added_securities)[0].symbol
class BracketExecutionModel(ExecutionModel):
def __init__(self) -> None:
'''Initializes a new instance of the ImmediateExecutionModel class'''
self.targets_collection = PortfolioTargetCollection()
def execute(self, algorithm: QCAlgorithm, targets: List[PortfolioTarget]) -> None:
# for performance we check count value, OrderByMarginImpact and ClearFulfilled are expensive to call
self.targets_collection.add_range(targets)
if self.targets_collection.count > 0:
for target in self.targets_collection.order_by_margin_impact(algorithm):
# calculate remaining quantity to be ordered
quantity = OrderSizing.get_unordered_quantity(algorithm, target)
if quantity != 0 and algorithm.transactions.orders_count == 0:
bar = algorithm.securities[target.symbol].get_last_data()
algorithm.market_order(target.symbol, quantity)
# place some orders that won't fill, when the split comes in they'll get modified to reflect the split
algorithm.stop_market_order(target.symbol, -quantity, bar.low/2)
algorithm.limit_order(target.symbol, -quantity, bar.high*2)
self.targets_collection.clear_fulfilled(algorithm)
using QuantConnect.DataSource;
namespace QuantConnect.Algorithm.CSharp
{
public class PaymentsAlgorithm : QCAlgorithm
{
public override void Initialize()
{
SetStartDate(1998, 01, 01);
// this will use the Tradier Brokerage open order split behavior
// forward split will modify open order to maintain order value
// reverse split open orders will be canceled
SetBrokerageModel(BrokerageName.TradierBrokerage);
UniverseSettings.Resolution = Resolution.Daily;
UniverseSettings.DataNormalizationMode = DataNormalizationMode.Raw;
// MSFT: Splits and Dividends
// GOOG: Symbol Changed Event
// AAA.1: Delisting
SetUniverseSelection(new ManualUniverseSelectionModel(
QuantConnect.Symbol.Create("MSFT", SecurityType.Equity, Market.USA)));
SetAlpha(new PaymentAlphaModel());
SetPortfolioConstruction(new EqualWeightingPortfolioConstructionModel());
SetExecution(new BracketExecutionModel());
}
}
public class PaymentAlphaModel : AlphaModel
{
private Symbol _symbol = Symbol.Empty;
public override IEnumerable<Insight> Update(QCAlgorithm algorithm, Slice slice)
{
// Accessing Data - Splits
if (slice.Splits.ContainsKey(_symbol))
{
var split = slice.Splits[_symbol];
algorithm.Debug($"{split.Time.ToIso8601Invariant()} >> SPLIT >> {split.Symbol} - " +
$"{split.SplitFactor.ToStringInvariant()} - " +
$"{algorithm.Portfolio.Cash.ToStringInvariant()} - " +
$"{algorithm.Portfolio[_symbol].Quantity.ToStringInvariant()}");
}
// Accessing Data - Dividends
if (slice.Dividends.ContainsKey(_symbol))
{
var dividend = slice.Dividends[_symbol];
algorithm.Debug($"{dividend.Time.ToStringInvariant("o")} >> DIVIDEND >> {dividend.Symbol} - " +
$"{dividend.Distribution.ToStringInvariant("C")} - {algorithm.Portfolio.Cash} - " +
$"{algorithm.Portfolio[_symbol].Price.ToStringInvariant("C")}");
}
// Accessing Data - Delisting
if (slice.Delistings.ContainsKey(_symbol))
{
var delisting = slice.Delistings[_symbol];
algorithm.Debug($"{delisting.Time.ToStringInvariant("o")} >> DELISTING >> {delisting.Type}");
}
// Accessing Data - Symbol Changed Event
if (slice.SymbolChangedEvents.ContainsKey(_symbol))
{
var symbolChangedEvent = slice.SymbolChangedEvents[_symbol];
algorithm.Debug($"{symbolChangedEvent.Time.ToStringInvariant("o")} >> Symbol Changed Event >> " +
$"{symbolChangedEvent.OldSymbol} -> {symbolChangedEvent.OldSymbol}");
}
return slice.Bars.ContainsKey(_symbol)
? new [] { Insight.Price(_symbol, TimeSpan.FromDays(1), InsightDirection.Up) }
: Enumerable.Empty<Insight>();
}
public override void OnSecuritiesChanged(QCAlgorithm algorithm, SecurityChanges changes)
{
_symbol = changes.AddedSecurities.First().Symbol;
}
}
public class BracketExecutionModel : ExecutionModel
{
private readonly PortfolioTargetCollection _targetsCollection = new PortfolioTargetCollection();
public override void Execute(QCAlgorithm algorithm, IPortfolioTarget[] targets)
{
_targetsCollection.AddRange(targets);
// for performance we check count value, OrderByMarginImpact and ClearFulfilled are expensive to call
if (_targetsCollection.Count > 0)
{
foreach (var target in _targetsCollection.OrderByMarginImpact(algorithm))
{
// calculate remaining quantity to be ordered
var quantity = OrderSizing.GetUnorderedQuantity(algorithm, target);
if (quantity != 0 && algorithm.Transactions.OrdersCount == 0)
{
var bar = algorithm.Securities[target.Symbol].GetLastData() as TradeBar;
algorithm.MarketOrder(target.Symbol, quantity);
// place some orders that won't fill, when the split comes in they'll get modified to reflect the split
algorithm.StopMarketOrder(target.Symbol, -quantity, bar.Low/2);
algorithm.LimitOrder(target.Symbol, -quantity, bar.High*2);
}
}
_targetsCollection.ClearFulfilled(algorithm);
}
}
}
}
US Equity Security Master 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
US Equity Security Master can be downloaded on premise with the LEAN CLI, for a charge per file downloaded. This download is for the licensed organization's internal LEAN use only and cannot be redistributed or converted in any format.
Starting at 15000 QCC/file with Subscription | License Now
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.
lean data download \
--dataset "US Equity Security Master"
lean data download `
--dataset "US Equity Security Master"
QuantConnect Security Master is freely accessible in our cloud environment, and can be downloaded for on premise backtesting and research for an annual subscription starting at $600.
Split, dividend, and survivorship bias free US Equities backtesting is enabled by the QuantConnect US Equity Security Master.
Split, dividend, and survivorship bias free US Equities backtesting is enabled by the QuantConnect US Equity Security Master.
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 2 licensing options
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 .