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,018 People Enrolled
Learn algorithmic trading with python for FX. Guided strategy development in easily digestible portions.
Author: QuantConnect
Free | 20,592 People Enrolled
Learn algorithmic trading with python for Futures. Guided strategy development in easily digestible portions.
Author: QuantConnect
Free | 7,425 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,801 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 >
Brain Language Metrics on Company Filings
Dataset by Brain
The Brain Language Metrics on Company Filings dataset provides the results of an NLP system that monitors several language metrics on 10-K and 10-Q company reports for US Equities. The data covers 5,000 US Equities, starts in January 2010, and is delivered on a daily frequency. The dataset is made of two parts; the first one includes the language metrics of the most recent 10-K or 10-Q report for each firm, namely:
The second part includes the differences between the two most recent 10-Ks or 10-Qs reports of the same period for each company, namely:
The analysis is available for the whole report and for specific sections of the report (e.g. Risk Factors and MD&A).
For more information, refer to Brain's summary paper.
This dataset depends on the US Equity Security Master dataset because the US Equity Security Master dataset contains information on splits, dividends, and symbol changes.
Brain is a Research Company that creates proprietary datasets and algorithms for investment strategies, combining experience in financial markets with strong competencies in Statistics, Machine Learning, and Natural Language Processing. The founders share a common academic background of research in Physics as well as extensive experience in Financial markets.
The following snippet demonstrates how to request data from the Brain Language Metrics on Company Filings dataset:
self.aapl = self.add_equity("AAPL", Resolution.DAILY).symbol
self.dataset_10k_symbol = self.add_data(BrainCompanyFilingLanguageMetrics10K , self.aapl).symbol
self.dataset_all_symbol = self.add_data(BrainCompanyFilingLanguageMetricsAll, self.aapl).symbol
self.universe_10k = self.add_universe(BrainCompanyFilingLanguageMetricsUniverse10K, self.universe_selection)
self.universe_all = self.add_universe(BrainCompanyFilingLanguageMetricsUniverseAll, self.universe_selection)
_symbol = AddEquity("AAPL", Resolution.Daily).Symbol;
_dataset10KSymbol = AddData<BrainCompanyFilingLanguageMetrics10K>(_symbol).Symbol;
_datasetAllSymbol = AddData<BrainCompanyFilingLanguageMetricsAll>(_symbol).Symbol;
_universe10k = AddUniverse<BrainCompanyFilingLanguageMetricsUniverse10K>(UniverseSelection);
_universeAll = AddUniverse<BrainCompanyFilingLanguageMetricsUniverseAll>(UniverseSelection);
The following table describes the dataset properties:
Property | Value |
---|---|
Start Date | January 2010 |
Asset Coverage* | 5,000 US Equities |
Data Density | Sparse |
Resolution | Daily |
Timezone | UTC |
The Brain Language Metrics on Company Filings dataset enables you to test strategies using language metrics and their differences gathered from 10K and 10Q reports. Examples include the following strategies:
Disclaimer: The dataset is provided by the data provider for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation or endorsement for any security or strategy, nor do they constitute an offer to provide investment advisory or other services by the data provider.
For more example algorithms, see Examples.
The Brain Language Metrics on Company Filings dataset provides BrainCompanyFilingLanguageMetrics and BrainCompanyFilingLanguageMetricsUniverse objects.
BrainCompanyFilingLanguageMetrics objects have the following attributes:
BrainCompanyFilingLanguageMetricsUniverse objects have the following attributes:
To add Brain Language Metrics on Company Filings data to your algorithm, call the AddDataadd_data method. Save a reference to the dataset Symbol so you can access the data later in your algorithm.
class BrainCompanyFilingNLPDataAlgorithm(QCAlgorithm):
def initialize(self) -> None:
self.set_start_date(2010, 1, 1)
self.set_end_date(2021, 7, 8)
self.set_cash(100000)
self.aapl = self.add_equity("AAPL", Resolution.DAILY).symbol
self.dataset_10k_symbol = self.add_data(BrainCompanyFilingLanguageMetrics10K, self.aapl).symbol
self.dataset_all_symbol = self.add_data(BrainCompanyFilingLanguageMetricsAll, self.aapl).symbol
namespace QuantConnect
{
public class BrainCompanyFilingNLPDataAlgorithm : QCAlgorithm
{
private Symbol _symbol, _dataset10KSymbol, _datasetAllSymbol;
public override void Initialize()
{
SetStartDate(2010, 1, 1);
SetEndDate(2021, 7, 8);
SetCash(100000);
_symbol = AddEquity("AAPL", Resolution.Daily).Symbol;
_dataset10KSymbol= AddData<BrainCompanyFilingLanguageMetrics10K>(_symbol).Symbol;
_datasetAllSymbol= AddData<BrainCompanyFilingLanguageMetricsAll>(_symbol).Symbol;
}
}
}
To get the current Brain Language Metrics on Company Filings data, index the current Slice with the dataset Symbol. Slice objects deliver unique events to your algorithm as they happen, but the Slice may not contain data for your dataset 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 slice.contains_key(self.dataset_10k_symbol):
data_point = slice[self.dataset_10k_symbol]
self.log(f"{self.dataset_10k_symbol} report sentiment at {slice.time}: {data_point.report_sentiment.sentiment}")
if slice.contains_key(self.dataset_all_symbol):
data_point = slice[self.dataset_all_symbol]
self.log(f"{self.dataset_all_symbol} report sentiment at {slice.time}: {data_point.report_sentiment.sentiment}")
public override void OnData(Slice slice)
{
if (slice.ContainsKey(_dataset10KSymbol))
{
var dataPoint = slice[_dataset10KSymbol];
Log($"{_dataset10KSymbol} report sentiment at {slice.Time}: {dataPoint.ReportSentiment.Sentiment}");
}
if (slice.ContainsKey(_datasetAllSymbol))
{
var dataPoint = slice[_datasetAllSymbol];
Log($"{_datasetAllSymbol} report sentiment at {slice.Time}: {dataPoint.ReportSentiment.Sentiment}");
}
}
To iterate through all of the dataset objects in the current Slice, call the Getget method.
def on_data(self, slice: Slice) -> None:
for dataset_symbol, data_point in slice.get(BrainCompanyFilingLanguageMetrics10K).items():
self.log(f"{dataset_symbol} report sentiment at {slice.time}: {data_point.report_sentiment.sentiment}")
for dataset_symbol, data_point in slice.get(BrainCompanyFilingLanguageMetricsAll).items():
self.log(f"{dataset_symbol} report sentiment at {slice.time}: {data_point.report_sentiment.sentiment}")
public override void OnData(Slice slice)
{
foreach (var kvp in slice.Get<BrainCompanyFilingLanguageMetrics10K>())
{
var datasetSymbol = kvp.Key;
var dataPoint = kvp.Value;
Log($"{datasetSymbol} report sentiment at {slice.Time}: {dataPoint.ReportSentiment.Sentiment}");
}
foreach (var kvp in slice.Get<BrainCompanyFilingLanguageMetricsAll>())
{
var datasetSymbol = kvp.Key;
var dataPoint = kvp.Value;
Log($"{datasetSymbol} report sentiment at {slice.Time}: {dataPoint.ReportSentiment.Sentiment}");
}
}
To get historical Brain Language Metrics on Company Filings data, call the Historyhistory method with the dataset Symbol. If there is no data in the period you request, the history result is empty.
# DataFrames
ten_k_history_df = self.history(self.dataset_10k_symbol, 100, Resolution.DAILY)
all_history_df = self.history(self.dataset_all_symbol, 100, Resolution.DAILY)
history_df = self.history([self.dataset_10k_symbol, self.dataset_all_symbol], 100, Resolution.DAILY)
# Dataset objects
ten_k_history_bars = self.history[BrainCompanyFilingLanguageMetrics10K](self.dataset_10k_symbol, 100, Resolution.DAILY)
all_history_bars = self.history[BrainCompanyFilingLanguageMetricsAll](self.dataset_all_symbol, 100, Resolution.DAILY)
// Dataset objects
var tenKHistory = History<BrainCompanyFilingLanguageMetrics10K>(_dataset10KSymbol, 100, Resolution.Daily);
var allHistory = History<BrainCompanyFilingLanguageMetricsAll>(_datasetAllSymbol, 100, Resolution.Daily);
// Slice objects
var history = History(new[] {_dataset10KSymbol, _datasetAllSymbol}, 100, Resolution.Daily);
For more information about historical data, see History Requests.
To select a dynamic universe of US Equities based on Brain Language Metrics on Company Filings data, call the AddUniverseadd_universe method with the BrainCompanyFilingLanguageMetricsUniverseAll class or the BrainCompanyFilingLanguageMetricsUniverse10K class and a selection function.
def initialize(self) -> None:
self._universe = self.add_universe(BrainCompanyFilingLanguageMetricsUniverseAll, self.universe_selection)
def universe_selection(self, alt_coarse: List[BrainCompanyFilingLanguageMetricsUniverseAll]) -> List[Symbol]:
return [d.symbol for d in alt_coarse \
if d.report_sentiment.sentiment > 0 \
and d.management_discussion_analyasis_of_financial_condition_and_results_of_operations.sentiment > 0]
private Universe _universe;
public override void Initialize()
{
_universe = AddUniverse<BrainCompanyFilingLanguageMetricsUniverseAll>(altCoarse =>
{
return from d in altCoarse.OfType<BrainCompanyFilingLanguageMetricsUniverseAll>()
where d.ReportSentiment.Sentiment > 0m &&
d.ManagementDiscussionAnalyasisOfFinancialConditionAndResultsOfOperations.Sentiment > 0m
select d.Symbol;
});
}
For more information about dynamic universes, see Universes.
You can get historical universe data in an algorithm and in the Research Environment.
To get historical universe data in an algorithm, call the Historyhistory method with the Universe object and the lookback period. If there is no data in the period you request, the history result is empty.
var universeHistory = History(_universe, 30, Resolution.Daily);
foreach (var universeDay in universeHistory)
{
foreach (BrainCompanyFilingLanguageMetricsUniverse10K languageMetrics in universeDay)
{
Log($"{languageMetrics.Symbol} sentiment at {languageMetrics.EndTime}: {languageMetrics.ReportSentiment.Sentiment}");
}
}
# DataFrame example where the columns are the universe object attributes:
history_df = self.history(self._universe, 30, Resolution.DAILY, flatten=True)
# Series example where the values are lists of the universe objects:
universe_history = self.history(self._universe, 30, Resolution.DAILY)
for (_, time), universeDay in universe_history.items():
for language_metrics in universeDay:
self.log(f"{language_metrics.symbol} sentiment at {language_metrics.end_time}: {language_metrics.report_sentiment.sentiment}")
To get historical universe data in research, call the UniverseHistoryuniverse_history method with the Universe object, a start date, and an end date. This method returns the filtered universe. If there is no data in the period you request, the history result is empty.
var universeHistory = qb.UniverseHistory(universe, qb.Time.AddDays(-30), qb.Time);
foreach (var universeDay in universeHistory)
{
foreach (BrainCompanyFilingLanguageMetricsUniverse10K languageMetrics in universeDay)
{
Console.WriteLine($"{languageMetrics.Symbol} sentiment at {languageMetrics.EndTime}: {languageMetrics.ReportSentiment.Sentiment}");
}
}
# DataFrame example where the columns are the universe object attributes:
history_df = qb.universe_history(universe, qb.time-timedelta(30), qb.time, flatten=True)
# Series example where the values are lists of the universe objects:
universe_history = qb.universe_history(universe, qb.time-timedelta(30), qb.time)
for (_, time), universeDay in universe_history.items():
for language_metrics in universeDay:
print(f"{language_metrics.symbol} sentiment at {language_metrics.end_time}: {language_metrics.report_sentiment.sentiment}")
You can call the Historyhistory method in Research.
To remove a subscription, call the RemoveSecurityremove_security method.
self.remove_security(self.dataset_10k_symbol)
self.remove_security(self.dataset_all_symbol)
RemoveSecurity(_dataset10KSymbol);
RemoveSecurity(_datasetAllSymbol);
If you subscribe to Brain Language Metrics on Company Filings data for assets in a dynamic universe, remove the dataset subscription when the asset leaves your universe. To view a common design pattern, see Track Security Changes.
The Brain Language Metrics on Company Filings dataset provides BrainCompanyFilingLanguageMetrics and BrainCompanyFilingLanguageMetricsUniverse objects.
BrainCompanyFilingLanguageMetrics objects have the following attributes:
BrainCompanyFilingLanguageMetricsUniverse objects have the following attributes:
The following example algorithm buys Apple when the sentiment of their 10K report is positive. Otherwise, it holds cash.
from AlgorithmImports import *
from QuantConnect.DataSource import *
class BrainCompanyFilingNLPDataAlgorithm(QCAlgorithm):
def initialize(self):
self.set_start_date(2010, 1, 1)
self.set_end_date(2021, 7, 8)
self.set_cash(100000)
# Requesting data -- we aim to obtain a sentiment score from the company filings
# Combining both fundamental and sentiment factor, as well as past performance and future provision
self.aapl = self.add_equity("AAPL", Resolution.DAILY).symbol
self.dataset_symbol = self.add_data(BrainCompanyFilingLanguageMetrics10K , self.aapl).symbol
# Historical data
history = self.history(self.dataset_symbol, 365, Resolution.DAILY)
self.debug(f"We got {len(history)} items from our history request for {self.dataset_symbol}")
def on_data(self, data):
# Trade base on the updated report sentiment
if data.contains_key(self.dataset_symbol):
sentiment = data[self.dataset_symbol].report_sentiment.sentiment
# Buy for a positive sentiment score for the positive return projection
self.set_holdings(self.symbol, int(sentiment > 0))
using QuantConnect.DataSource;
namespace QuantConnect
{
public class BrainCompanyFilingNLPDataAlgorithm : QCAlgorithm
{
private Symbol _symbol;
private Symbol _datasetSymbol;
public override void Initialize()
{
SetStartDate(2010, 1, 1);
SetEndDate(2021, 7, 8);
SetCash(100000);
// Requesting data -- we aim to obtain a sentiment score from the company filings
// Combining both fundamental and sentiment factor, as well as past performance and future provision
_symbol = AddEquity("AAPL", Resolution.Daily).Symbol;
_datasetSymbol = AddData<BrainCompanyFilingLanguageMetrics10K>(_symbol).Symbol;
// Historical data
var history = History<BrainCompanyFilingLanguageMetrics10K>(_datasetSymbol, 365, Resolution.Daily);
Debug($"We got {history.Count()} items from our history request for {_datasetSymbol}");
}
public override void OnData(Slice slice)
{
// Trade base on the updated report sentiment
if (slice.ContainsKey(_datasetSymbol))
{
// Buy for a positive sentiment score for the positive return projection
var sentiment = slice[_datasetSymbol].ReportSentiment.Sentiment;
SetHoldings(_symbol, sentiment > 0 ? 1 : 0);
}
}
}
}
The following example algorithm creates a dynamic universe of US Equities that have positive sentiment in their 10K report and then forms an equal-weighted portfolio:
from AlgorithmImports import *
from QuantConnect.DataSource import *
class BrainCompanyFilingNLPDataAlgorithm(QCAlgorithm):
def initialize(self) -> None:
self.set_start_date(2010, 1, 1)
self.set_end_date(2021, 7, 8)
self.set_cash(100000)
self.universe_settings.resolution = Resolution.DAILY
# Filter based on company filing data
self.add_universe(BrainCompanyFilingLanguageMetricsUniverse10K, self.universe_selection)
self.add_alpha(BrainCompanyFilingNLPAlphaModel())
self.set_portfolio_construction(EqualWeightingPortfolioConstructionModel())
self.add_risk_management(NullRiskManagementModel())
self.set_execution(ImmediateExecutionModel())
def universe_selection(self, alt_coarse: List[BrainCompanyFilingLanguageMetricsUniverse10K]) -> List[Symbol]:
# Filter for the stocks with positive sentiment score for the positive return projection
# Combining both fundamental and sentiment factor, as well as past performance and future provision
return [d.symbol for d in alt_coarse \
if d.report_sentiment.sentiment is not None and d.report_sentiment.sentiment > 0]
class BrainCompanyFilingNLPAlphaModel(AlphaModel):
def update(self, algorithm: QCAlgorithm, slice: Slice):
insights = []
# Signal to invest in the selected universe, which are expected to have a positive return due to positive fundamentals and future prospect
for symbol in algorithm.active_securities.keys:
if not slice.contains_key(symbol):
continue
insights.append(Insight.price(symbol, timedelta(days=1), InsightDirection.UP))
return insights
using QuantConnect.DataSource;
namespace QuantConnect
{
public class BrainCompanyFilingNLPDataAlgorithm : QCAlgorithm
{
public override void Initialize()
{
SetStartDate(2010, 1, 1);
SetEndDate(2021, 7, 8);
SetCash(100000);
// Filter based on company filing data
UniverseSettings.Resolution = Resolution.Daily;
AddUniverse<BrainCompanyFilingLanguageMetricsUniverse10K>(altCoarse =>
{
// Filter for the stocks with positive sentiment score for the positive return projection
// Combining both fundamental and sentiment factor, as well as past performance and future provision
return from d in altCoarse.OfType<BrainCompanyFilingLanguageMetricsUniverse10K>()
where d.ReportSentiment.Sentiment > 0m
select d.Symbol;
});
AddAlpha(new BrainCompanyFilingNLPAlphaModel());
SetPortfolioConstruction(new EqualWeightingPortfolioConstructionModel());
AddRiskManagement(new NullRiskManagementModel());
SetExecution(new ImmediateExecutionModel());
}
}
public class BrainCompanyFilingNLPAlphaModel : AlphaModel
{
public override IEnumerable<Insight> Update(QCAlgorithm algorithm, Slice slice)
{
var insights = new List<Insight>();
// Signal to invest in the selected universe, which are expected to have a positive return due to positive fundamentals and future prospect
foreach (var symbol in algorithm.ActiveSecurities.Keys)
{
if (!slice.ContainsKey(symbol))
{
continue;
}
insights.Add(Insight.Price(symbol, TimeSpan.FromDays(1), InsightDirection.Up));
}
return insights;
}
}
}
The following example lists US Equities having the highest 2-day rank.
#r "../QuantConnect.DataSource.BrainSentiment.dll"
using QuantConnect.DataSource;
var qb = new QuantBook();
// Requesting data
var aapl = qb.AddEquity("AAPL", Resolution.Daily).Symbol;
var symbol = qb.AddData<BrainCompanyFilingLanguageMetrics10K>(aapl).Symbol;
// Historical data
var history = qb.History<BrainCompanyFilingLanguageMetrics10K>(symbol, 180, Resolution.Daily);
foreach (BrainCompanyFilingLanguageMetrics10K languageMetrics in history)
{
Console.WriteLine($"{languageMetrics} at {languageMetrics.EndTime}");
}
// Add Universe Selection
IEnumerable<Symbol> UniverseSelection(IEnumerable<BaseData> altCoarse)
{
var symbols = (from d in altCoarse.OfType<BrainCompanyFilingLanguageMetricsUniverse10K>()
orderby d.ReportSentiment.Sentiment descending select d.Symbol).Take(10);
return symbols;
}
var universe = qb.AddUniverse<BrainCompanyFilingLanguageMetricsUniverse10K>(UniverseSelection);
// Historical Universe data
var universeHistory = qb.UniverseHistory(universe, qb.Time.AddDays(-10), qb.Time);
foreach (var universeDay in universeHistory)
{
foreach (BrainCompanyFilingLanguageMetricsUniverse10K languageMetrics in universeDay)
{
Console.WriteLine($"{languageMetrics.Symbol} sentiment at {languageMetrics.EndTime}: {languageMetrics.ReportSentiment.Sentiment}");
}
}
qb = QuantBook()
# Requesting Data
aapl = qb.AddEquity("AAPL", Resolution.Daily).Symbol
symbol = qb.AddData(BrainCompanyFilingLanguageMetrics10K, aapl).Symbol
# Historical data
history = qb.History(BrainCompanyFilingLanguageMetrics10K, symbol, 180, Resolution.Daily)
for (symbol, time), row in history.iterrows():
print(f"{symbol} sentiment at {time}: {row['reportsentiment'].Sentiment}")
# Add Universe Selection
def UniverseSelection(alt_coarse: List[BrainCompanyFilingLanguageMetricsUniverse10K]) -> List[Symbol]:
return [d.Symbol for d in sorted([x for x in alt_coarse if x.ReportSentiment.Sentiment],
key=lambda x: x.ReportSentiment.Sentiment, reverse=True)[:10]]
universe = qb.AddUniverse(BrainCompanyFilingLanguageMetricsUniverse10K, UniverseSelection)
# Historical Universe data
universe_history = qb.UniverseHistory(universe, qb.Time-timedelta(10), qb.Time)
for (_, time), universeDay in universe_history.items():
for language_metrics in universeDay:
print(f"{language_metrics.Symbol} sentiment at {language_metrics.EndTime}: {language_metrics.ReportSentiment.Sentiment}")
Brain Language Metrics on Company Filings is allowed to be used in the cloud for personal and commercial projects with a subscription. The data is permissioned for use within the licensed organization only
Subscription Required | License Now
Brain Language Metrics on Company Filings 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 100 QCC/file | Learn More
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 "Brain Language Metrics on Company Filings" \
--ticker "AAPL, MSFT" \
--report-type "10k" \
--start "20240402" \
--end "20250402"
lean data download `
--dataset "Brain Language Metrics on Company Filings" `
--ticker "AAPL, MSFT" `
--report-type "10k" `
--start "20240402" `
--end "20250402"
Brain NLP Filing archived in LEAN format for on premise backtesting and research. One file per ticker.
Harness Brain Company Filing NLP data in the QuantConnect Cloud for your backtesting and live trading purposes.
Harness Brain Company Filing NLP Universe 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 3 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 .