NexusFi: Find Your Edge


Home Menu

 





NinjaTrader previous bars OnBarUpdate problem


Discussion in NinjaTrader

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




 
Search this Thread
  #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?
Day 97: Israel-Lebanon Ceasefire Struck Overnight -- WTI …
Traders Hideout
CME Cuts Precious Metals Margins Up to 21% Starting Toda …
Commodities
The Great Rotation -- Small Caps Crushing Tech as Sectio …
Traders Hideout
More Than Capable: Hegseths War Warning Validates $114M …
Prediction Markets & Event Contracts
Expiration Day: Wall Street Rallies on Peace Hopes While …
Prediction Markets & Event Contracts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Sober Journey With S&P
24 thanks
2026 Jlab journal
10 thanks
Lady Vols Primer: Trading Volatility Journal
8 thanks
Algo automated / semi-automated trading anyone?
6 thanks
Trying to learn Volume and price action correlation
5 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,531


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


© 2026 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 - Downloads - Top
no new posts