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

Enter positions on Next Bar Close

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • NinjaTrader_JessicaP
    replied
    Thank you for bringing this to our attention, bltdavid. Here is an edited version of the above code.

    Code:
    [FONT=Courier New]private int myBar;
    private bool Conditions = false;
    if(Conditions)
      myBar = CurrentBar;
    if(myBar == CurrentBar - 1)
    {
      myBar = 0;
      //The next bar has occurred.
    }
    [/FONT]

    Leave a comment:


  • aaadetos
    replied
    Originally posted by aaadetos View Post
    Shouldn't myBar be initialized to CurrentBar first?
    Never mind: private int myBar is within the vaiables region...

    Leave a comment:


  • aaadetos
    replied
    Shouldn't myBar be initialized to CurrentBar first?

    Leave a comment:


  • bltdavid
    replied
    Originally posted by NinjaTrader_CodyB View Post
    Hello,
    Through using custom logic you would be able do this.
    One process that I can think of is adding in a variable that you assign to CurrentBar and then check when the CurrentBar is equal to this value + 1.
    For example:
    private int myBar
    if(Conditions is true)
    CurrentBar = myBar;
    if(myBar == CurrentBar - 1)
    //The next bar has occurred.
    myBar = CurrentBar;

    Leave a comment:


  • jalsck
    replied
    Thanks Cody that makes sense.

    Kind Regards,

    James

    Leave a comment:


  • NinjaTrader_CodyB
    replied
    Hello,
    Through using custom logic you would be able do this.
    One process that I can think of is adding in a variable that you assign to CurrentBar and then check when the CurrentBar is equal to this value + 1.
    For example:
    private int myBar
    if(Conditions is true)
    CurrentBar = myBar;
    if(myBar == CurrentBar - 1)
    //The next bar has occurred.
    Last edited by NinjaTrader_CodyB; 03-06-2016, 04:37 PM.

    Leave a comment:


  • jalsck
    started a topic Enter positions on Next Bar Close

    Enter positions on Next Bar Close

    Hi,

    Can NinjaTrader Strategies be configured to enter long/short positions on the close of the next bar?

    Thanks,

    James

Latest Posts

Collapse

Topics Statistics Last Post
Started by ageeholdings, Today, 07:43 AM
0 responses
11 views
0 likes
Last Post ageeholdings  
Started by pibrew, Today, 06:37 AM
0 responses
4 views
0 likes
Last Post pibrew
by pibrew
 
Started by rbeckmann05, Yesterday, 06:48 PM
1 response
14 views
0 likes
Last Post bltdavid  
Started by llanqui, Today, 03:53 AM
0 responses
9 views
0 likes
Last Post llanqui
by llanqui
 
Started by burtoninlondon, Today, 12:38 AM
0 responses
12 views
0 likes
Last Post burtoninlondon  
Working...
X