Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Volume of Bar ago not showing

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Volume of Bar ago not showing

    Hi
    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?

    #2
    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
    Attached Files
    RJay
    NinjaTrader Ecosystem Vendor - Innovative Trading Solutions

    Comment


      #3
      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 cmoran13, 04-16-2026, 01:02 PM
      0 responses
      43 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      25 views
      0 likes
      Last Post PaulMohn  
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      162 views
      1 like
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      98 views
      1 like
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      158 views
      2 likes
      Last Post CaptainJack  
      Working...
      X