NexusFi: Find Your Edge


Home Menu

 





NinjaTrader previous bars OnBarUpdate problem


Discussion in NinjaTrader

Updated
    1. trending_up 2,601 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?
Fed Hike Odds at 57% After Warsh: England Surges 12.9%, …
Prediction Markets & Event Contracts
Ninjatrader users - good CONNECTIONs post and article fr …
NinjaTrader
Would a node-based workflow for automated trading be useful?
Traders Hideout
Warsh Drops Easing Bias, December Hike Now Above 50% -- …
Prediction Markets & Event Contracts
Czechia Live at 52.5% as England Rides 4-2 Wave to Co-Fa …
Prediction Markets & Event Contracts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Want your NinjaTrader indicator created, free?
5 thanks
Afternoon-close session
1 thanks
Franks Trading Journey
1 thanks
Denied 20K payouts: Alpha Futures
1 thanks
FootPrintV2 Chart for NT8
1 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