Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Orders with time limit

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

    Orders with time limit

    Hello,

    I am creating my strategy. After my coditions are true I want to place a stop order to open transaction but with time limit. The order must be valid only one bar after conditions are true. I don't know how to do that. Can I do that in strategy wizard? If yes, can you help me?

    #2
    Hello DanielJ,

    This is the default behavior for stop orders. They are cancelled if they are not filled on the bar they're submitted on.

    If you wanted to change this behavior and issue cancel commands manually, you must work with code and this is considered advanced programming. A sample on this is available here:
    Strategy: Using CancelOrder() method to cancel orders
    Ryan M.NinjaTrader Customer Service

    Comment


      #3
      Ok,

      can you help me with this. I have created simply strategy based on insidebar and violating high of the insidebar. After violating I want to open stop order one tick above high of the insidebar. The problem is the orders aren't place but they should be.


      This is the code of this simply strategy.



      This is the code:

      protected override void Initialize()
      {
      SetStopLoss("", CalculationMode.Ticks, 100, true);
      SetProfitTarget("", CalculationMode.Ticks, 100);

      CalculateOnBarClose = true;
      }

      /// <summary>
      /// Called on each bar update event (incoming tick)
      /// </summary>
      protected override void OnBarUpdate()
      {
      // Condition set 1
      if (High[1] < High[2]
      && Low[1] > Low[2])
      {
      EnterLongStop(DefaultQuantity, High[1] + 1 * TickSize, "");
      }
      }

      Comment


        #4
        Sorry for question, it is working now.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        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
        4 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
        40 views
        0 likes
        Last Post alifarahani  
        Started by Waxavi, Today, 02:10 AM
        1 response
        18 views
        0 likes
        Last Post NinjaTrader_LuisH  
        Working...
        X