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 algospoke, 04-17-2024, 06:40 PM
        6 responses
        48 views
        0 likes
        Last Post algospoke  
        Started by arvidvanstaey, Today, 02:19 PM
        4 responses
        11 views
        0 likes
        Last Post arvidvanstaey  
        Started by samish18, 04-17-2024, 08:57 AM
        16 responses
        61 views
        0 likes
        Last Post samish18  
        Started by jordanq2, Today, 03:10 PM
        2 responses
        9 views
        0 likes
        Last Post jordanq2  
        Started by traderqz, Today, 12:06 AM
        10 responses
        21 views
        0 likes
        Last Post traderqz  
        Working...
        X