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

ExitLong() / ExitShort() on unmanaged approach

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

    ExitLong() / ExitShort() on unmanaged approach

    Hi,

    I want to exit my position when I'm not flat and I don't have any orders sent to the market because for example an error with my exits orders.

    I have been looking on the forum how can I create similar orders to ExitLong() / ExitShort() on unmanegd approach but I can't find anything.

    Can you help me where can I find it or how can I program it?

    Thanks


    #2
    Hello aprendiz,

    Thanks for your post.

    You can call SubmitOrderUnmanged with an OrderAction.BuyToCover or OrderAcion.Sell for Position.Quantity to close the strategy position.

    I.E.

    Code:
    if (Position.MarketPosition == MarketPosition.Short)
    {
        SubmitOrderUnmanaged(1, OrderAction.BuyToCover, OrderType.Market, Position.Quantity, 0, 0,  ocoString, "Buy Market Exit");
    }
    Position - https://ninjatrader.com/support/help...8/position.htm

    Please let us know if you have any additional questions.
    JimNinjaTrader Customer Service

    Comment


      #3
      Thanks.

      Is posible to know how many contracts has the opened position?

      Comment


        #4
        Hello aprendiz,

        This is reported from Position.Quantity.

        Please let me know if you have any questions.
        JimNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by junkone, Today, 11:37 AM
        0 responses
        6 views
        0 likes
        Last Post junkone
        by junkone
         
        Started by quantismo, 04-17-2024, 05:13 PM
        5 responses
        35 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by proptrade13, Today, 11:06 AM
        1 response
        6 views
        0 likes
        Last Post NinjaTrader_Clayton  
        Started by love2code2trade, 04-17-2024, 01:45 PM
        4 responses
        34 views
        0 likes
        Last Post love2code2trade  
        Started by cls71, Today, 04:45 AM
        2 responses
        10 views
        0 likes
        Last Post eDanny
        by eDanny
         
        Working...
        X