public class MyCustomStrategy : Strategy
{
private MG_BollingerBounce bbIndy;
protected override void OnStateChange()
{
if (State == State.SetDefaults)
{
... etc ...
}
else if (State == State.Configure)
{
bbIndy = new MG_BollingerBounce();
}
}
protected override void OnBarUpdate()
{
if(MG_BollingerBounce()[0] == 1) { ... works .... }
if(indy[0] == 1) { ... throws exception ... }
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Indicator values in strategy
Collapse
X
-
Indicator values in strategy
Hello, I'm trying to access my custom indicator's value like below. It only works when I call through a new instance but throws an exception when calling through a variable:
Strategy 'MyCustomStrategy': Error on calling 'OnBarUpdate' method on bar 16269: You are accessing an index with a value that is invalid since it is out-of-range. I.E. accessing a series [barsAgo] with a value of 5 when there are only 4 bars on the chart.Code:Tags: None
-
Hello,
Thank you for the question.
This would be because you are creating a new instance in this case.
The new keyword would not be needed for an indicator in NinjaTrader. If you think of a indicator being a Method rather than a type, it is easier to see the structure of how indicators work.
you would only need to remove the new keyword, additionally I would suggest putting the indicator in DataLoaded or Historical rather than Configure.
I look forward to being of further assistance.Code:else if (State == State.Historical) { bbIndy = MG_BollingerBounce(); }
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
264 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
168 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
171 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
257 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
209 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment