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 burtoninlondon, Today, 12:38 AM
0 responses
5 views
0 likes
Last Post burtoninlondon  
Started by AaronKoRn, Yesterday, 09:49 PM
0 responses
12 views
0 likes
Last Post AaronKoRn  
Started by carnitron, Yesterday, 08:42 PM
0 responses
11 views
0 likes
Last Post carnitron  
Started by strategist007, Yesterday, 07:51 PM
0 responses
13 views
0 likes
Last Post strategist007  
Started by StockTrader88, 03-06-2021, 08:58 AM
44 responses
3,982 views
3 likes
Last Post jhudas88  
Working...
X