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 Irukandji, Today, 09:34 AM
      0 responses
      3 views
      0 likes
      Last Post Irukandji  
      Started by TraderBCL, Today, 04:38 AM
      3 responses
      25 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by WeyldFalcon, 08-07-2020, 06:13 AM
      11 responses
      1,423 views
      0 likes
      Last Post jculp
      by jculp
       
      Started by RubenCazorla, Today, 09:07 AM
      0 responses
      4 views
      0 likes
      Last Post RubenCazorla  
      Started by BarzTrading, Today, 07:25 AM
      2 responses
      29 views
      1 like
      Last Post BarzTrading  
      Working...
      X