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 llanqui, Today, 03:53 AM
      0 responses
      2 views
      0 likes
      Last Post llanqui
      by llanqui
       
      Started by burtoninlondon, Today, 12:38 AM
      0 responses
      10 views
      0 likes
      Last Post burtoninlondon  
      Started by AaronKoRn, Yesterday, 09:49 PM
      0 responses
      14 views
      0 likes
      Last Post AaronKoRn  
      Started by carnitron, Yesterday, 08:42 PM
      0 responses
      11 views
      0 likes
      Last Post carnitron  
      Started by strategist007, Yesterday, 07:51 PM
      0 responses
      14 views
      0 likes
      Last Post strategist007  
      Working...
      X