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 argusthome, 03-08-2026, 10:06 AM
      0 responses
      77 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      45 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      27 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      32 views
      0 likes
      Last Post TheRealMorford  
      Started by Mindset, 02-28-2026, 06:16 AM
      0 responses
      63 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Working...
      X