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
var _rsi = new RelativeStrengthIndex(_CustomSymbol, 20);
var Cons = new IdentityDataConsolidator();
RegisterIndicator(_CustomSym, _rsi, Cons, x => x.Value);
but getting
Runtime Error: Object reference not set to an instance of an object
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.
Michael Handschuh
50.5k
,
@Tadas, can you share an algortihm? it's hard to debug these things without.
If you don't want to share it here, you can send me the project id and I can take a peek at it.
0
Tadas Talaikis
85.1k
,
OK, as it has purchased data, so I'm giving the ID: 128597.
0
Michael Handschuh
50.5k
,
Take a peek when you get a chance, there was an easy to overlook error in the code. public class MyAlgorithm : QCAlgorithm
{
public Indicator _myIndicator;
public override void Initialize()
{
// ... init logic goes here
var _myIndicator = // initialize indicator
// the problem with the above line is it defined a new '_myIndicator' variable
// within the function vs using the class level '_myIndicator' variable defined
// above causing a null reference exception when attempting to access it
}
public void OnData(TradeBars data)
{
// this line will ALWAYS throw because we never set 'this._myIndicator'
if (!_myIndicator.IsReady) return false;
}
}
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!