Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How do I fix OnBarUpdate Error?
Collapse
X
-
How do I fix OnBarUpdate Error?
I am running a muti time frame strategy with 20 Range and the secondary time frame and 2 Range as primary. Every time I start the strategy I get an error that says I am accessing an index with a value that is invalid... Please show me a way to fix this. Thank youTags: None
-
Hello relogical,
Thanks for your post.
In an MTF environment it is easy to miss an index reference. Without specific error messages or code to review, the best advise I can provide is to review the tips we have in the guide for multi-time frame: http://www.ninjatrader.com/support/h...nstruments.htm The guide provides specific requirements for MTF scripting consideration of the various indexes.
Please let me know if I can be of further assistance.
-
Make a check for CurrentBars, and return if said check is not satisfied.Originally posted by relogical View PostI am running a muti time frame strategy with 20 Range and the secondary time frame and 2 Range as primary. Every time I start the strategy I get an error that says I am accessing an index with a value that is invalid... Please show me a way to fix this. Thank you
Comment
-
In OnBarUpdate(), please include the following statements at the very first lines:Originally posted by relogical View PostI am running a muti time frame strategy with 20 Range and the secondary time frame and 2 Range as primary. Every time I start the strategy I get an error that says I am accessing an index with a value that is invalid... Please show me a way to fix this. Thank you
Your assignment is to determine X and Y, based on your specific indicator programming.if (CurrentBars[0] < X) return; // ensure your primary series has enough bars
if (CurrentBars[1] < Y) return; // ensure your secondary series has enough bars
Thanks.
Pi
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
142 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
81 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
125 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
120 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
98 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment