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 andrewtrades, Today, 04:57 PM
    1 response
    10 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Started by chbruno, Today, 04:10 PM
    0 responses
    6 views
    0 likes
    Last Post chbruno
    by chbruno
     
    Started by josh18955, 03-25-2023, 11:16 AM
    6 responses
    436 views
    0 likes
    Last Post Delerium  
    Started by FAQtrader, Today, 03:35 PM
    0 responses
    9 views
    0 likes
    Last Post FAQtrader  
    Started by rocketman7, Today, 09:41 AM
    5 responses
    19 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Working...
    X