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,318 People Enrolled
Learn algorithmic trading with python for FX. Guided strategy development in easily digestible portions.
Author: QuantConnect
Free | 20,635 People Enrolled
Learn algorithmic trading with python for Futures. Guided strategy development in easily digestible portions.
Author: QuantConnect
Free | 7,474 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,020 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 >
CFD Data
Dataset by QuantConnect
The CFD Data by QuantConnect serves 51 contracts for differences (CFD). The data starts as early as May 2002 and is delivered on any frequency from tick to daily. This dataset is created by QuantConnect processing raw tick data from OANDA.
CFD data does not include ask and bid sizes.
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.
The following snippet demonstrates how to request data from the CFD dataset:
self.xauusd = self.add_cfd("XAUUSD", Resolution.DAILY).symbol
_symbol = AddCfd("XAUUSD", Resolution.Daily).Symbol;
The following table describes the dataset properties:
Property | Value |
---|---|
Start Date | Mixed, earliest starts May 2002 |
Asset Coverage | 51 Contracts |
Data Density | Dense |
Resolution | Tick, Second, Minute, Hour, & Daily |
Timezone | Mixed, in which the contract is listed* |
Market Hours | Always Open, except from Friday 5 PM EST to Sunday 5 PM EST. Index CFDs depends on the underlying market hour* |
* E.g.: DE30EUR tracks DAX30 Index, which is listed in Europe/Berlin timezone.
The CFD price data enables you to trade CFD assets in your algorithm. Examples include the following strategies:
For more example algorithms, see Examples.
The CFD dataset provides QuoteBar and Tick objects.
QuoteBar objects have the following attributes:
Tick objects have the following attributes:
The following table shows the available contracts:
Contract Available (51) | |||||
---|---|---|---|---|---|
AU200AUD | BCOUSD | CH20CHF | CORNUSD | DE10YBEUR | DE30EUR |
EU50EUR | FR40EUR | HK33HKD | JP225USD | NAS100USD | NATGASUSD |
NL25EUR | SG30SGD | SOYBNUSD | SPX500USD | SUGARUSD | UK100GBP |
UK10YBGBP | US2000USD | US30USD | USB02YUSD | USB05YUSD | USB10YUSD |
USB30YUSD | WHEATUSD | WTICOUSD | XAGAUD | XAGCAD | XAGCHF |
XAGEUR | XAGGBP | XAGHKD | XAGJPY | XAGNZD | XAGSGD |
XAGUSD | XAUAUD | XAUCAD | XAUCHF | XAUEUR | XAUGBP |
XAUHKD | XAUJPY | XAUNZD | XAUSGD | XAUUSD | XAUXAG |
XCUUSD | XPDUSD | XPTUSD |
To add CFD data to your algorithm, call the AddCfdadd_cfd method. Save a reference to the CFD Symbol so you can access the data later in your algorithm.
class CfdAlgorithm (QCAlgorithm):
def initialize(self) -> None:
self.set_account_currency('EUR');
self.set_start_date(2019, 2, 20)
self.set_end_date(2019, 2, 21)
self.set_cash('EUR', 100000)
self.de30eur = self.add_cfd('DE30EUR').symbol
self.set_benchmark(self.de30eur)
namespace QuantConnect.Algorithm.CSharp
{
public class CfdAlgorithm : QCAlgorithm
{
private Symbol _symbol;
public override void Initialize()
{
SetAccountCurrency("EUR");
SetStartDate(2019, 2, 20);
SetEndDate(2019, 2, 21);
SetCash("EUR", 100000);
_symbol = AddCfd("DE30EUR").Symbol;
SetBenchmark(_symbol);
}
}
}
For more information about creating CFD subscriptions, see Requesting Data.
To get the current CFD data, index the QuoteBarsquote_bars, or Ticksticks properties of the current Slice with the CFD 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:
if self.de30eur in slice.quote_bars:
quote_bar = slice.quote_bars[self.de30eur]
self.log(f"{self.de30eur} bid at {slice.time}: {quote_bar.bid.close}")
if self.de30eur in slice.ticks:
ticks = slice.ticks[self.de30eur]
for tick in ticks:
self.log(f"{self.de30eur} price at {slice.time}: {tick.price}")
public override void OnData(Slice slice)
{
if (slice.QuoteBars.ContainsKey(_symbol))
{
var quoteBar = slice.QuoteBars[_symbol];
Log($"{_symbol} bid at {slice.Time}: {quoteBar.Bid.Close}");
}
if (slice.Ticks.ContainsKey(_symbol))
{
var ticks = slice.Ticks[_symbol];
foreach (var tick in ticks)
{
Log($"{_symbol} price at {slice.Time}: {tick.Price}");
}
}
}
You can also iterate through all of the data objects in the current Slice.
def on_data(self, slice: Slice) -> None:
for symbol, quote_bar in slice.quote_bars.items():
self.log(f"{symbol} bid at {slice.time}: {quote_bar.bid.close}")
for symbol, ticks in slice.ticks.items():
for tick in ticks:
self.log(f"{symbol} price at {slice.time}: {tick.price}")
public override void OnData(Slice slice)
{
foreach (var kvp in slice.QuoteBars)
{
var symbol = kvp.Key;
var quoteBar = kvp.Value;
Log($"{symbol} bid at {slice.Time}: {quoteBar.Bid.Close}");
}
foreach (var kvp in slice.Ticks)
{
var symbol = kvp.Key;
var ticks = kvp.Value;
foreach (var tick in ticks)
{
Log($"{symbol} price at {slice.Time}: {tick.Price}");
}
}
}
For more information about accessing CFD data, see Handling Data.
To get historical CFD data, call the Historyhistory method with the CFD Symbol. If there is no data in the period you request, the history result is empty.
# DataFrame
history_df = self.history(self.de30eur, 100, Resolution.MINUTE)
# QuoteBar objects
history_quote_bars = self.history[QuoteBar](self.de30eur, 100, Resolution.MINUTE)
# Tick objects
history_ticks = self.history[Tick](self.de30eur, timedelta(seconds=10), Resolution.TICK)
// QuoteBar objects
var historyQuoteBars = History<QuoteBar>(_symbol, 100, Resolution.Minute);
// Tick objects
var historyTicks = History<Tick>(_symbol, TimeSpan.FromSeconds(10), Resolution.Tick);
For more information about historical data, see History Requests.
To remove a CFD subscription, call the RemoveSecurityremove_security method.
self.remove_security(self.de30eur)
RemoveSecurity(_symbol);
The RemoveSecurityremove_security method cancels your open orders for the security and liquidates your holdings.
The CFD dataset provides QuoteBar and Tick objects.
QuoteBar objects have the following attributes:
Tick objects have the following attributes:
The following example algorithm implements a pairs trading strategy using Gold and Silver CFDs, XAUUSD and XAGUSD, respectively. When the spread is higher than one standard deviation above its mean, the algorithm buys the spread (buy XAUUSD and sell XAGUSD). When the spread is lower than one standard deviation below its mean, it sells the spread (buy XAGUSD and sell XAUUSD).
from AlgorithmImports import *
from QuantConnect.DataSource import *
class SMAPairsTrading(QCAlgorithm):
def initialize(self) -> None:
self.set_start_date(2018, 7, 1)
self.set_end_date(2019, 3, 31)
self.set_cash(100000)
# Request gold and sliver spot CFDs for trading their spread difference, assuming their spread series is cointegrated
self.add_cfd('XAUUSD', Resolution.HOUR)
self.add_cfd('XAGUSD', Resolution.HOUR)
# Use 500-step mean and SD indicator on determine the spread relative difference for trading signal generation
self.pair = [ ]
self.spread_mean = SimpleMovingAverage(500)
self.spread_std = StandardDeviation(500)
def on_data(self, slice: Slice) -> None:
# Update the indicator with updated spread difference, such that the an updated cointegration threshold is calculated for trade inception
spread = self.pair[1].price - self.pair[0].price
self.spread_mean.update(self.time, spread)
self.spread_std.update(self.time, spread)
spread_mean = self.spread_mean.current.value
upperthreshold = spread_mean + self.spread_std.current.value
lowerthreshold = spread_mean - self.spread_std.current.value
# If the spread is higher than upper threshold, bet their spread series will revert to mean
if spread > upperthreshold:
self.set_holdings(self.pair[0].symbol, 1)
self.set_holdings(self.pair[1].symbol, -1)
elif spread < lowerthreshold:
self.set_holdings(self.pair[0].symbol, -1)
self.set_holdings(self.pair[1].symbol, 1)
# Close positions if mean reverted
elif (self.portfolio[self.pair[0].symbol].quantity > 0 and spread < spread_mean)\
or (self.portfolio[self.pair[0].symbol].quantity < 0 and spread > spread_mean):
self.liquidate()
def on_securities_changed(self, changes: SecurityChanges) -> None:
self.pair = [x for x in changes.added_securities]
#1. Call for 500 bars of history data for each symbol in the pair and save to the variable history
history = self.history([x.symbol for x in self.pair], 500)
#2. Unstack the Pandas data frame to reduce it to the history close price
history = history.close.unstack(level=0)
#3. Iterate through the history tuple and update the mean and standard deviation with historical data
for tuple in history.itertuples():
self.spread_mean.update(tuple[0], tuple[2]-tuple[1])
self.spread_std.update(tuple[0], tuple[2]-tuple[1])
using QuantConnect.DataSource;
namespace QuantConnect
{
public class GoldSilverPairsTradingAlgorithm : QCAlgorithm
{
// Use 500-step mean and SD indicator on determine the spread relative difference for trading signal generation
private SimpleMovingAverage _spreadMean = new SimpleMovingAverage(500);
private StandardDeviation _spreadStd = new StandardDeviation(500);
private Security[] _pair = new Security[2];
public override void Initialize()
{
SetStartDate(2018, 7, 1);
SetEndDate(2019, 3, 31);
SetCash(100000);
// Request gold and sliver spot CFDs for trading their spread difference, assuming their spread series is cointegrated
AddCfd("XAUUSD", Resolution.Hour);
AddCfd("XAGUSD", Resolution.Hour);
}
public override void OnData(Slice slice)
{
// Update the indicator with updated spread difference, such that the an updated cointegration threshold is calculated for trade inception
var spread = _pair[1].Price - _pair[0].Price;
_spreadMean.Update(Time, spread);
_spreadStd.Update(Time, spread);
var upperthreshold = _spreadMean + _spreadStd;
var lowerthreshold = _spreadMean - _spreadStd;
// If the spread is higher than upper threshold, bet their spread series will revert to mean
if (spread > upperthreshold)
{
SetHoldings(_pair[0].Symbol, 1);
SetHoldings(_pair[1].Symbol, -1);
}
else if (spread < lowerthreshold)
{
SetHoldings(_pair[0].Symbol, -1);
SetHoldings(_pair[1].Symbol, 1);
}
// Close positions if mean reverted
else if ((Portfolio[_pair[0].Symbol].Quantity > 0m && spread < _spreadMean)
|| (Portfolio[_pair[0].Symbol].Quantity < 0m && spread > _spreadMean))
{
Liquidate();
}
}
public override void OnSecuritiesChanged(SecurityChanges changes)
{
_pair = changes.AddedSecurities.ToArray();
//1. Call for 500 days of history data for each symbol in the pair and save to the variable history
var history = History(_pair.Select(x => x.Symbol), 500);
//2. Iterate through the history tuple and update the mean and standard deviation with historical data
foreach(var slice in history)
{
var spread = slice[_pair[1].Symbol].Close - slice[_pair[0].Symbol].Close;
_spreadMean.Update(slice.Time, spread);
_spreadStd.Update(slice.Time, spread);
}
}
}
}
The following example algorithm implements a pairs trading strategy using Gold and Silver CFDs, XAUUSD and XAGUSD, respectively. When the spread is higher than one standard deviation above its mean, the algorithm buys the spread (buy XAUUSD and sell XAGUSD). When the spread is lower than one standard deviation below its mean, it sells the spread (buy XAGUSD and sell XAUUSD).
from AlgorithmImports import *
from QuantConnect.DataSource import *
class GoldSilverPairsTradingAlgorithm (QCAlgorithm):
def initialize(self) -> None:
self.set_start_date(2018, 7, 1)
self.set_end_date(2019, 3, 31)
self.set_cash(100000)
self.universe_settings.resolution = Resolution.HOUR
# Custom universe contains only gold and sliver spot CFDs for trading their spread difference, assuming their spread series is cointegrated
self.set_universe_selection(ManualUniverseSelectionModel
(
[ Symbol.create(x, SecurityType.CFD, Market.OANDA) for x in ["XAUUSD", "XAGUSD"] ]
))
# Custom alpha model to emit trade insights based on the gold-sliver price spread
self.add_alpha(PairsTradingAlphaModel())
# Equal weighting trades assuming the spread is cointegrated by 1:1 ratio
self.set_portfolio_construction(EqualWeightingPortfolioConstructionModel())
class PairsTradingAlphaModel(AlphaModel):
def __init__(self) -> None:
# Use 500-step mean and SD indicator on determine the spread relative difference for trading signal generation
self.pair = [ ]
self.spread_mean = SimpleMovingAverage(500)
self.spread_std = StandardDeviation(500)
# Assume efficient mean reversal happens within 2 hours
self.period = timedelta(hours=2)
def update(self, algorithm: QCAlgorithm, slice: Slice) -> List[Insight]:
# Update the indicator with updated spread difference, such that the an updated cointegration threshold is calculated for trade inception
spread = self.pair[1].price - self.pair[0].price
self.spread_mean.update(algorithm.time, spread)
self.spread_std.update(algorithm.time, spread)
upperthreshold = self.spread_mean.current.value + self.spread_std.current.value
lowerthreshold = self.spread_mean.current.value - self.spread_std.current.value
# If the spread is higher than upper threshold, bet their spread series will revert to mean
if spread > upperthreshold:
return Insight.group(
[
Insight.price(self.pair[0].symbol, self.period, InsightDirection.UP),
Insight.price(self.pair[1].symbol, self.period, InsightDirection.DOWN)
])
elif spread < lowerthreshold:
return Insight.group(
[
Insight.price(self.pair[0].symbol, self.period, InsightDirection.DOWN),
Insight.price(self.pair[1].symbol, self.period, InsightDirection.UP)
])
return []
def on_securities_changed(self, algorithm: QCAlgorithm, changes: SecurityChanges) -> None:
self.pair = [x for x in changes.added_securities]
#1. Call for 500 bars of history data for each symbol in the pair and save to the variable history
history = algorithm.history([x.symbol for x in self.pair], 500)
#2. Unstack the Pandas data frame to reduce it to the history close price
history = history.close.unstack(level=0)
#3. Iterate through the history tuple and update the mean and standard deviation with historical data
for tuple in history.itertuples():
self.spread_mean.update(tuple[0], tuple[2]-tuple[1])
self.spread_std.update(tuple[0], tuple[2]-tuple[1])
using QuantConnect.DataSource;
namespace QuantConnect
{
public class GoldSilverPairsTradingAlgorithm : QCAlgorithm
{
public override void Initialize()
{
SetStartDate(2018, 7, 1);
SetEndDate(2019, 3, 31);
SetCash(100000);
UniverseSettings.Resolution = Resolution.Hour;
// Custom universe contains only gold and sliver spot CFDs for trading their spread difference, assuming their spread series is cointegrated
SetUniverseSelection(new ManualUniverseSelectionModel
(
new [] {"XAUUSD", "XAGUSD"}
.Select(x => QuantConnect.Symbol.Create(x, SecurityType.Cfd, Market.Oanda))
));
// Custom alpha model to emit trade insights based on the gold-sliver price spread
AddAlpha(new PairsTradingAlphaModel());
// Equal weighting trades assuming the spread is cointegrated by 1:1 ratio
SetPortfolioConstruction(new EqualWeightingPortfolioConstructionModel());
}
}
public partial class PairsTradingAlphaModel : AlphaModel
{
// Use 500-step mean and SD indicator on determine the spread relative difference for trading signal generation
private SimpleMovingAverage _spreadMean = new SimpleMovingAverage(500);
private StandardDeviation _spreadStd = new StandardDeviation(500);
// Assume efficient mean reversal happens within 2 hours
private TimeSpan _period = TimeSpan.FromHours(2);
private Security[] _pair = new Security[2];
public override IEnumerable<Insight> Update(QCAlgorithm algorithm, Slice slice)
{
// Update the indicator with updated spread difference, such that the an updated cointegration threshold is calculated for trade inception
var spread = _pair[1].Price - _pair[0].Price;
_spreadMean.Update(algorithm.Time, spread);
_spreadStd.Update(algorithm.Time, spread);
var upperthreshold = _spreadMean + _spreadStd;
var lowerthreshold = _spreadMean - _spreadStd;
// If the spread is higher than upper threshold, bet their spread series will revert to mean
if (spread > upperthreshold)
{
return Insight.Group(
Insight.Price(_pair[0].Symbol, _period, InsightDirection.Up),
Insight.Price(_pair[1].Symbol, _period, InsightDirection.Down)
);
}
else if (spread < lowerthreshold)
{
return Insight.Group(
Insight.Price(_pair[0].Symbol, _period, InsightDirection.Down),
Insight.Price(_pair[1].Symbol, _period, InsightDirection.Up)
);
}
return Enumerable.Empty<Insight>();
}
public override void OnSecuritiesChanged(QCAlgorithm algorithm, SecurityChanges changes)
{
_pair = changes.AddedSecurities.ToArray();
//1. Call for 500 days of history data for each symbol in the pair and save to the variable history
var history = algorithm.History(_pair.Select(x => x.Symbol), 500);
//2. Iterate through the history tuple and update the mean and standard deviation with historical data
foreach (var slice in history)
{
var spread = slice[_pair[1].Symbol].Close - slice[_pair[0].Symbol].Close;
_spreadMean.Update(slice.Time, spread);
_spreadStd.Update(slice.Time, spread);
}
}
}
}
CFD Data 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
CFD Data 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.
Free 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 "CFD Data" \
--data-type "quote" \
--ticker "XAUUSD, XAGUSD" \
--resolution "second" \
--start "20240414" \
--end "20250414"
lean data download `
--dataset "CFD Data" `
--data-type "quote" `
--ticker "XAUUSD, XAGUSD" `
--resolution "second" `
--start "20240414" `
--end "20250414"
Freely harness gigabytes of CFD data in the QuantConnect Cloud for your backtesting and live trading purposes.
CFD Second resolution archives in LEAN format for on premise backtesting and research. One file per ticker/day.
CFD Minute resolution archives in LEAN format for on premise backtesting and research. One file per ticker/day.
CFD Hour resolution archives in LEAN format for on premise backtesting and research. One file per ticker.
CFD Daily resolution archives in LEAN format for on premise backtesting and research. One file per ticker.
Bulk download second data
Bulk download minute data
Bulk download hour data
Bulk download daily data
Bulk download second data
Bulk download minute data
Bulk download hour data
Bulk download daily data
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 13 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 .