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.

    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 DJ888, 04-16-2024, 06:09 PM
      6 responses
      18 views
      0 likes
      Last Post DJ888
      by DJ888
       
      Started by Jon17, Today, 04:33 PM
      0 responses
      1 view
      0 likes
      Last Post Jon17
      by Jon17
       
      Started by Javierw.ok, Today, 04:12 PM
      0 responses
      6 views
      0 likes
      Last Post Javierw.ok  
      Started by timmbbo, Today, 08:59 AM
      2 responses
      10 views
      0 likes
      Last Post bltdavid  
      Started by alifarahani, Today, 09:40 AM
      6 responses
      41 views
      0 likes
      Last Post alifarahani  
      Working...
      X