NexusFi: Find Your Edge


Home Menu

 





NinjaTrader previous bars OnBarUpdate problem


Discussion in NinjaTrader

Updated
    1. trending_up 2,535 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?
Weekend Update: First Qatari LNG Transit Attempted -- IR …
Traders Hideout
Penalties in Budapest, Peace Deadline in Tehran: Arsenal …
Prediction Markets & Event Contracts
Pakistan Mediator in Tehran as Hormuz Normalization Coll …
Prediction Markets & Event Contracts
Fed Hike Odds at 57% After Warsh: England Surges 12.9%, …
Prediction Markets & Event Contracts
Six Days to Kickoff: World Cup Prediction Markets Hit $1 …
Prediction Markets & Event Contracts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
NexusFi site changelog and issues/problem reporting
13 thanks
Darmok and Jalad at Tanagra
3 thanks
Big Mike in Ecuador
1 thanks
30 Sessions
1 thanks
  #2 (permalink)
 
Silvester17's Avatar
 Silvester17 
Columbus, OH
Legendary 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