Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Disabling ExitOnClose trades

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

    Disabling ExitOnClose trades

    Hi,

    I'm having some troubles with a strategy in Unmanaged mode: Even though I have only a single buy order, I'm getting an Exit on Close trade that I don't want/need.

    How can I get rid of it?

    I've attached a screenshot of the chart and my strategy's code. The order is entered on line 90 in the .cs file.

    Code:
    			// Enter long trade
                if (Close[0] > trend && 
    				Close[0] >= MAX(Close, Per_Long_BO)[0] &&
    				iSignalL != 1)
                {
                    Print(CurrentBar + ", Enter long trade=> Close: " + Close[0] + " || trend: " + trend + " || othercondition: " + MAX(Close, Per_Long_BO)[0]);
    				iSignalL = 1;
    				entryOrder = SubmitOrder(0, OrderAction.Buy, OrderType.Market, DefaultQuantity, 0, 0, "", "Enter Long");
                }
    Thanks,
    D
    Attached Files
    Last edited by doculik; 08-22-2011, 08:29 AM. Reason: Added more detail

    #2
    Hello,

    Thanks for the forum post.

    The only reason this should happen is if you have the feature enabled when you start the strategy. It is an option when you are configuring the parameters to start the strategy.

    When you start the strategy in backtest or live be sure to set Exit On Close to False.

    Let me know if I can be of further assistance.
    BrettNinjaTrader Product Management

    Comment


      #3
      Hi,

      Thanks for that, it's working like I wanted it. I figured it must've been something obvious like that...

      Thanks again,
      D

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      101 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      144 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      71 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      125 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      79 views
      0 likes
      Last Post PaulMohn  
      Working...
      X