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

Closing positions via unmanaged approach

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

    Closing positions via unmanaged approach

    Hi, I have a strategy that issues several limit orders. At a certain time of day I want to close out all outstanding orders and reverse any open positions. I know to close the orders via CancelOrder(). But how do I identify which positions are "active" so I can close them with a SubmitOrder() in the opposite direction? thanks!

    #2
    Please disregard this post ... I understand you need to program the logic to achieve this.

    Comment


      #3
      Hello pman777,

      You would need to track orders being placed with variables or array if you want to call CancelOrder() on them.

      An example you may find helpful that calls CancelOrder() is ProfitChaseStopTrailUnmanagedExample.


      To close an open position you can submit an order in the opposite direction of the position.
      For example
      Code:
      if (Position.MarketPosition == MarketPosition.Long)
      SubmitOrderUnmanaged(0, OrderAction.Sell, OrderType.Market, Position.Quantity);
      if (Position.MarketPosition == MarketPosition.Short)
      SubmitOrderUnmanaged(0, OrderAction.Buy, OrderType.Market, Position.Quantity);
      Chelsea B.NinjaTrader Customer Service

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Barry Milan, Today, 10:35 PM
      2 responses
      8 views
      0 likes
      Last Post Barry Milan  
      Started by WeyldFalcon, 12-10-2020, 06:48 PM
      14 responses
      1,428 views
      0 likes
      Last Post Handclap0241  
      Started by DJ888, Yesterday, 06:09 PM
      2 responses
      9 views
      0 likes
      Last Post DJ888
      by DJ888
       
      Started by jeronymite, 04-12-2024, 04:26 PM
      3 responses
      41 views
      0 likes
      Last Post jeronymite  
      Started by bill2023, Today, 08:51 AM
      2 responses
      16 views
      0 likes
      Last Post bill2023  
      Working...
      X