Does any body know why when I plot "Volume[1]" it does not show anything but if I plot Volume[0] it shows the correct volume?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Volume of Bar ago not showing
Collapse
X
-
kure_gtr,
Your inserting a series into a series. Try this instead.
Capture the series Volume[1] value to a variable first, then plot the variable.
Here's the code and a screen shot.
-----------------------------------------------------------------------
protected override void OnBarUpdate()
{
int volume1 = (int)Volume[1];
Value.Set(volume1);
}
------------------------------------------------------------------------

RJay
-
Hello,
What RJay mentions is correct.
However this is possible, the reason why your not getting any output is that your not checking to make sure you have at least 1 bar back in the chart before you start to plot. If you check your log tab in the control center you will see an error meaning this indicator did not run.
You need to make sure you have at least 1 bar on the chart if you are going to reference at least 1 bar back before you plot that value.
Thanks.Last edited by NinjaTrader_Brett; 10-30-2010, 01:16 PM.BrettNinjaTrader Product Management
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
35 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
20 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
12 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
18 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
20 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment