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 CarlTrading, 03-31-2026, 09:41 PM
      1 response
      72 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      39 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      63 views
      2 likes
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      63 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      53 views
      0 likes
      Last Post CarlTrading  
      Working...
      X