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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
133 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
75 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
117 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
113 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
90 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment