Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Problem Changing a Named Strategy's Stop Order

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

    Problem Changing a Named Strategy's Stop Order

    I use the following code to place an order.

    ocoId = "v3-DGS-BL";
    orderId = NTNewOrderId;
    ntCmdFailed = NTCommand( "PLACE", // string command,
    ntAccount, // string account,
    "BUY", // string action,
    10, // int quantity,
    "LIMIT", // string orderType,
    buyPrice, // double limitPrice,
    0, // double stopPrice,
    "DAY", // string timeInForce,
    ocoId, // string oco,
    orderId, // string orderId,
    "T-1,SL-2", // string strategy,
    orderId ); // string strategyId

    I use the following code to attempt to modify the Stop-Loss Limit of the orders
    strategy "T-1,SL-2" (Target: 1 StopLoss: 2). Once I am in the position for too
    long a time.

    ntCmdFailed = NTCommand( "CHANGE", // string command,
    "", // string account,
    "", // string action,
    0, // int quantity,
    "", // string orderType,
    Last, // double limitPrice,
    0, // double stopPrice,
    "", // string timeInForce,
    "", // string oco,
    "Stop1", // string orderId,
    "", // string strategy,
    orderId ); // string strategyId

    The change command returns successful. But Stop1 does not seem to change.

    Have I got something wrong?

    I am reusing my orderId (from NTNewOrderId) as a strategyId.



    #2
    imported post

    You are changing the limit price of the stop order. Look at where your "Last" parameter is.
    RayNinjaTrader Customer Service

    Comment


      #3
      imported post

      Thanks for spotting that.
      I'll make the change and test it out.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by rocketman7, Today, 01:00 AM
      0 responses
      1 view
      0 likes
      Last Post rocketman7  
      Started by wzgy0920, 04-20-2024, 06:09 PM
      2 responses
      27 views
      0 likes
      Last Post wzgy0920  
      Started by wzgy0920, 02-22-2024, 01:11 AM
      5 responses
      32 views
      0 likes
      Last Post wzgy0920  
      Started by wzgy0920, 04-23-2024, 09:53 PM
      2 responses
      74 views
      0 likes
      Last Post wzgy0920  
      Started by Kensonprib, 04-28-2021, 10:11 AM
      5 responses
      193 views
      0 likes
      Last Post Hasadafa  
      Working...
      X