LEAN is the open source
algorithmic trading engine powering QuantConnect. Founded in 2013 LEAN has been built by a
global community of 80+ engineers and powers more than a dozen hedge funds today.
Alpha League Competition: $1,000 Weekly Prize Pool
Qualifying Alpha Streams Reentered Weekly Learn
more
I am trying to build a Universe Selection Model that is similar to the EMA Cross Template found here, but I want to be able to use indicators that update a different way than the EMA. The issue I find is when I try to update the indicators. EMAs, SMAs, MACD, etc that use Update(time, value) work just fine. It is when the indicator requires a TradeBar, such as the Stochastic or ADX that I run into an issue. When I try to update the indicator with the TradeBar, it does not seem to work properly, even though I am calling the Update() function the same with with a TradeBar. Can we get an example of the proper way, within a universe selection example, to use indicators that require a TradeBar Update? Thanks!
The material on this website is provided 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 does it constitute an offer to provide investment advisory services by QuantConnect. In addition, the material offers no opinion with respect to the suitability of any security or specific investment. QuantConnect makes no guarantees as to the accuracy or completeness of the views expressed in the website. The views are subject to change, and may have become unreliable for various reasons, including changes in market conditions or economic circumstances. All investments involve risk, including loss of principal. You should consult with an investment professional before making any investment decisions.
The material on this website is provided 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 does it constitute an offer to provide investment advisory services by QuantConnect. In addition, the material offers no opinion with respect to the suitability of any security or specific investment. QuantConnect makes no guarantees as to the accuracy or completeness of the views expressed in the website. The views are subject to change, and may have become unreliable for various reasons, including changes in market conditions or economic circumstances. All investments involve risk, including loss of principal. You should consult with an investment professional before making any investment decisions.
Universe data currently only has the close price which makes it impossible to do TradeBar indicators. On our todo is to make this have the full OHLC set to enable bar indicators on universes.
At the moment your best bet would be to do the universe selection on price/volume to reduce it to 100-500 stocks; then apply the bar indicators on the resulting universe to get it to a subset you're interested in trading.
0
The material on this website is provided 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 does it constitute an offer to provide investment advisory services by QuantConnect. In addition, the material offers no opinion with respect to the suitability of any security or specific investment. QuantConnect makes no guarantees as to the accuracy or completeness of the views expressed in the website. The views are subject to change, and may have become unreliable for various reasons, including changes in market conditions or economic circumstances. All investments involve risk, including loss of principal. You should consult with an investment professional before making any investment decisions.
public override void OnSecuritiesChanged(SecurityChanges changes)
{
if(changes.AddedSecurities.Count > 0)
{
for(int i=0; i < changes.AddedSecurities.Count; i++)
{
var addedSymbol = changes.AddedSecurities[i].Symbol;
stateData.TryAdd(addedSymbol, new SelectionData(addedSymbol));
}
}
if(changes.RemovedSecurities.Count > 0)
{
for(int i=0; i < changes.RemovedSecurities.Count; i++)
{
// remove only if not invested
if(!stateDataInvested.Keys.Contains(changes.RemovedSecurities[i].Symbol))
{
var temp = new SelectionData();
stateData.TryRemove(changes.RemovedSecurities[i].Symbol, out temp);
}
}
}
// update indicators in state data
foreach(var kvp in stateData)
{
kvp.Value.ResetIndicators();
var bars = History(kvp.Key, momPeriod+1, Resolution.Daily); // dont know why +1 is needed?
foreach(var bar in bars)
{
kvp.Value.UpdateIndicators(bar.Time, bar);
}
}
}
The material on this website is provided 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 does it constitute an offer to provide investment advisory services by QuantConnect. In addition, the material offers no opinion with respect to the suitability of any security or specific investment. QuantConnect makes no guarantees as to the accuracy or completeness of the views expressed in the website. The views are subject to change, and may have become unreliable for various reasons, including changes in market conditions or economic circumstances. All investments involve risk, including loss of principal. You should consult with an investment professional before making any investment decisions.
Loading...
To unlock posting to the community forums please complete at least 30% of Boot Camp. You can
continue your Boot Camp training progress from the
terminal. We hope to see you in the community soon!
You do not have enough QC Credit to send this award, get a QC Credit Pack
here.
Award Sent Successfully
Thank you for giving back to the community.
Processing...
Choose a Credit Pack
Payment Confirmation
QuantConnect Credit (QCC) can be applied to your cloud-invoices or
gifted to others in the community with Community Awards in recognition of their contributions.
Community Awards highlight the awesome work your fellow community members are doing and inspires
high quality algorithm contributions to the community. Select an option below to add
QuantConnect Credit to your account:
$5
500 Credit Points
 
$10
1,000 Credit Points
 
$18
2,000 Credit Points
10% bonus
$45
5,000 Credit Points
10% bonus
03/23XXXX XXXX XXXX 0592
We will charge your default organization credit card on file, click
here to update.