Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 manueldecastro, Yesterday, 10:26 AM
      4 responses
      18 views
      0 likes
      Last Post manueldecastro  
      Started by TraderIqbal, 10-20-2023, 10:12 AM
      2 responses
      119 views
      0 likes
      Last Post Funnywo
      by Funnywo
       
      Started by Creamers, 04-27-2024, 05:32 AM
      12 responses
      72 views
      0 likes
      Last Post Creamers  
      Started by fredericlebre, Today, 01:19 AM
      0 responses
      8 views
      0 likes
      Last Post fredericlebre  
      Started by TraderJA, Today, 12:06 AM
      0 responses
      12 views
      0 likes
      Last Post TraderJA  
      Working...
      X