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 Hwop38, 05-04-2026, 07:02 PM
      0 responses
      164 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Started by CaptainJack, 04-24-2026, 11:07 PM
      0 responses
      319 views
      0 likes
      Last Post CaptainJack  
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      246 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      350 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      179 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Working...
      X