Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Problems working with previous bar data

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

    Problems working with previous bar data

    Hello,

    I'm new to ninjascript, but not new to programming.

    I used the ninjascript tool to create a simple indicator and have been able to plot the following

    double plotme = Close[0];

    Plot0.Set( plotme );


    but nothing plots(draws) when I do the following:

    double plotme = Close[0] - Close[1];

    Plot0.Set( plotme );


    futhermore, nothing plots(draws) using the following:
    double plotme = Close[1];

    Plot0.Set( plotme );


    My ultimate goal is to perform calculations on on EMA(60)[0] and EMA(60)[1], but I ran into into same problems I have with Close[0] and Close[1]

    what am I missing?
    Any suggested code snippets to review?




    #2
    Please check your Control Center for errors. Likely running into the issue discussed in this tip: http://www.ninjatrader-support2.com/...ead.php?t=3170
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      thanks, got it working...

      Ahhh calculates "all" data on the update...used the following and it's working for me, from tiny acorns come mighty trees


      if (CurrentBar < 1)
      return;
      // Do something
      double plotme = Close[0] - Close[1];
      Plot0.Set( plotme );


      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
      163 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