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

Exiting position and entering position right away.

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

    Exiting position and entering position right away.

    I want be able to exit a long position and then exit that position and then enter another long position right after I exit the Long position. Is this possible? Or I will have to wait for another candle to occur? I put the code below of what I would want, but it does not work of course.

    protected override void OnBarUpdate()
    {
    if (BarsInProgress != 0)
    return;

    // Condition set 1
    if (CrossAbove(MACD(12, 26, 40), MACD(12, 26, 40).Avg, 1))
    {
    ExitLong();
    EnterLong(DefaultQuantity, "");
    }

    // Condition set 2
    if (CrossBelow(MACD(12, 26, 40), MACD(12, 26, 40).Avg, 1))
    {
    ExitLong();
    EnterLong(DefaultQuantity, "");
    }

    }

    #2
    Hello zaro33,

    When using the managed approach, do not call an exit and an entry at the same time.

    If you are short, just call EnterLong(). If you are long just call EnterShort() without calling the exit first.

    The managed approach automatically sends an order to exit the existing position and then sends an order to enter the new position.

    Calling an exit and entry at the same time will not allow the position to update before entry method call and will result in an overfill or the position becoming double in the opposite direction.

    https://ninjatrader.com/support/foru...16#post1036616
    Chelsea B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by AaronKoRn, Today, 09:49 PM
    0 responses
    10 views
    0 likes
    Last Post AaronKoRn  
    Started by carnitron, Today, 08:42 PM
    0 responses
    9 views
    0 likes
    Last Post carnitron  
    Started by strategist007, Today, 07:51 PM
    0 responses
    10 views
    0 likes
    Last Post strategist007  
    Started by StockTrader88, 03-06-2021, 08:58 AM
    44 responses
    3,980 views
    3 likes
    Last Post jhudas88  
    Started by rbeckmann05, Today, 06:48 PM
    0 responses
    9 views
    0 likes
    Last Post rbeckmann05  
    Working...
    X