Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Total Volume current and prior day
Collapse
X
-
Hello Mike.A,
Thank you for your reply.
Now that your script is looking for the values from up to 3 bars ago, you will need to adjust your CurrentBars check. Here is what you currently have:
if (CurrentBars[0] < 1 || CurrentBars[1] < 1)
return;
Since you are wanting to check a value from Closes[1])[3] then you will need to make sure that there are at least 3 bars on the chart before this is calculated. We have a page about making sure you have enough bars here:
If you adjust the statement to the following, I suspect it should resolve the error:
if (CurrentBars[0] < 3 || CurrentBars[1] < 3)
return;
Please let us know if we may be of further assistance.
Comment
-
Hello Mike,
If you change a barsAgo reference from 0 to 1, you would be changing from "the current processing bar" to "the previous bar."
Similarly, changing a barsAgo reference from 1 to 2, you would be changing from "the previous bar" to "2 bars ago"
When scripts start processing, they start on bar 0, then process bar 1, bar 2, etc.
If we reference 1 bar ago on bar 0, that "1 bar ago" is not yet available to the script because it has not been processed yet.
So you need to make sure that if the script is processing before bar 2, it is not referencing 2 bars ago.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
160 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
307 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
245 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
348 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
178 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment