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

short trade activates during long trade active

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

    short trade activates during long trade active

    hello
    how do i write the code to let the long trade reach the profit target, without the short trade activating while in a long trade. and the other way around. thanks

    #2
    Hello bizzz10,

    Thanks for your post.

    Entry orders in the opposite direction will automatically close existing position and then enter additional order(s) to achieve the new direction.

    To prevent this action, you can add the entry order condition that checks to see if the current market position is flat before placing the order.

    For example:

    if (your condition(s) to enter && Position.MarketPosition == MarketPosition.Flat)
    {
    // order entry
    }


    Reference: https://ninjatrader.com/support/help...etposition.htm

    Note, if you are using the NinjaTrader 7 strategy wizard, on the left side of the condition builder select Strategy>Current market position, in the center select == , on the right side select Strategy>Flat.
    Paul H.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by cmtjoancolmenero, Yesterday, 03:58 PM
    8 responses
    31 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by helpwanted, Today, 03:06 AM
    2 responses
    21 views
    0 likes
    Last Post NinjaTrader_LuisH  
    Started by DayTradingDEMON, Today, 09:28 AM
    0 responses
    9 views
    0 likes
    Last Post DayTradingDEMON  
    Started by navyguy06, Today, 09:28 AM
    0 responses
    2 views
    0 likes
    Last Post navyguy06  
    Started by rjbtrade1, 11-30-2023, 04:38 PM
    2 responses
    77 views
    0 likes
    Last Post DavidHP
    by DavidHP
     
    Working...
    X