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 CarlTrading, Yesterday, 09:41 PM
      1 response
      21 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, Today, 02:41 AM
      0 responses
      8 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, Yesterday, 11:44 PM
      0 responses
      20 views
      1 like
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      36 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      34 views
      0 likes
      Last Post CarlTrading  
      Working...
      X