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

Cannot open 2 stop limit orders simultaneously

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

    Cannot open 2 stop limit orders simultaneously

    Hello
    I'm trying to open 2 stop limit order in different directions (long and short)

    Code:
                if (_orderShort == null)
                {
                    _orderShort = EnterShortStopLimit(0, true, 1, Close[0] - 50 * TickSize,
                        Close[0] - 55 * TickSize, "Short stop limit");
                }
    
                if (_orderLong == null)
                {
                    _orderLong = EnterLongStopLimit(0, true, 1, Close[0] + 50 * TickSize,
                        Close[0] + 55 * TickSize,
                        "Long stop limit");
                }
    The problem is that the only one order (first) executed. The second always returns null.
    In example above EnterLongStopLimit always returns null. If I swap them and call
    1) EnterLongStopLimit
    2) EnterShortStopLimit
    then EnterShortStopLimit will return null.

    It seems NT cannot hold 2 stop limit orders simultaneously. Is the any way to make it working?

    #2
    Hello rfsettling,

    Unfortunately, this would violate the internal order handling rules.
    From the help guide:
    "Methods that generate orders to enter a position will be ignored if:
    ...
    The strategy position is flat and an order submitted by an enter method (EnterLongLimit() for example) is active and the order is used to open a position in the opposite direction"

    Below is a link to the help guide on 'Internal Order Handling Rules that Reduce Unwanted Positions'.


    A similar post can be found here about reversing positions.



    Instead you would need to switch the unmanaged approach which allows you to send any orders you would like and hand no internal order handling rules.
    Chelsea B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Aviram Y, Today, 05:29 AM
    0 responses
    1 view
    0 likes
    Last Post Aviram Y  
    Started by quantismo, 04-17-2024, 05:13 PM
    3 responses
    25 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by ScottWalsh, 04-16-2024, 04:29 PM
    7 responses
    34 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by cls71, Today, 04:45 AM
    0 responses
    6 views
    0 likes
    Last Post cls71
    by cls71
     
    Started by mjairg, 07-20-2023, 11:57 PM
    3 responses
    216 views
    1 like
    Last Post PaulMohn  
    Working...
    X