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 Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
558 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
324 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
545 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
547 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment