NexusFi: Find Your Edge


Home Menu

 





NinjaTrader previous bars OnBarUpdate problem


Discussion in NinjaTrader

Updated
    1. trending_up 2,053 views
    2. thumb_up 2 thanks given
    3. group 1 followers
    1. forum 2 posts
    2. attach_file 0 attachments




 
Search this Thread

NinjaTrader previous bars OnBarUpdate problem

  #1 (permalink)
Elenchus
Sydney
 
Posts: 2 since Dec 2014
Thanks Given: 1
Thanks Received: 1

Hello,
I am trying to create an indicator using previous closing prices, however I ran into some problems. I've tried some troubleshooting, and come across something strange. Using Plot0.Set(Close[1]); in OnBarUpdate will not plot anything, nor will any value >0. I can use negative numbers, which will plot the close of the next bar (as expected), and the current bar will plot, but I can't get any previous prices to plot, nor can I work with Close[1] for calculations. I feel like I'm missing something obvious, but I have no idea what it is. Can anyone help?

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
Better Renko Gaps
The Elite Circle
Exit Strategy
NinjaTrader
PowerLanguage & EasyLanguage. How to get the platfor …
EasyLanguage Programming
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
29 thanks
Tao te Trade: way of the WLD
24 thanks
Just another trading journal: PA, Wyckoff & Trends
24 thanks
Bigger Wins or Fewer Losses?
21 thanks
GFIs1 1 DAX trade per day journal
17 thanks
  #2 (permalink)
 
Silvester17's Avatar
 Silvester17 
Columbus, OH
Market Wizard
 
Experience: None
Platform: NT 8, TOS
Trading: ES
Posts: 3,603 since Aug 2009
Thanks Given: 5,139
Thanks Received: 11,527


Elenchus View Post
Hello,
I am trying to create an indicator using previous closing prices, however I ran into some problems. I've tried some troubleshooting, and come across something strange. Using Plot0.Set(Close[1]); in OnBarUpdate will not plot anything, nor will any value >0. I can use negative numbers, which will plot the close of the next bar (as expected), and the current bar will plot, but I can't get any previous prices to plot, nor can I work with Close[1] for calculations. I feel like I'm missing something obvious, but I have no idea what it is. Can anyone help?

it always helps to check for errors. you probably get an error message in the log, saying "you're accessing an index with a value ...."

in your case, if you want to access the previous bar closing price, you'll need to add something like this:

 
Code
        protected override void OnBarUpdate()
        {
	    if (CurrentBar < 1)  
		return;
            
            Plot0.Set(Close[1]);

Reply With Quote
Thanked by:
  #3 (permalink)
Elenchus
Sydney
 
Posts: 2 since Dec 2014
Thanks Given: 1
Thanks Received: 1



Silvester17 View Post
it always helps to check for errors. you probably get an error message in the log, saying "you're accessing an index with a value ...."

in your case, if you want to access the previous bar closing price, you'll need to add something like this:

 
Code
        protected override void OnBarUpdate()
        {
	    if (CurrentBar < 1)  
		return;
            
            Plot0.Set(Close[1]);


Ah, of course, that makes sense. Thank you very much.

Reply With Quote
Thanked by:




Last Updated on December 14, 2014


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts