Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to edit/update the order in managed approach

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

    How to edit/update the order in managed approach

    Hi,
    I am using Ninja Traders managed approach to execute the orders from my strategy.
    After calling EnterLong(int quantity, string signalName), I am using

    ExitLongStop(int quantity, double stopPrice, string signalName, string fromEntrySignal)
    in OnExecution(IExecution execution)

    It creates the stop order but on next bar, this order is getting canceled. I don't know why?? pls help.


    My other question is, How can I update order placed by ExitLongStop().
    If I use ExitLongStop() again with different stop price than earlier stop price, will it cancel the earlier order and place new order with new stop price?

    #2
    Hello rahulkalgunde,

    You will have to use the advanced overload of this method that supports setting liveUntilCanceled to true.


    Code:
     
    ExitLongStop(int barsInProgressIndex, bool liveUntilCancelled, int quantity, double stopPrice, string signalName, string fromEntrySignal)

    The following reference sample can help with a lot of this:
    When using NinjaTrader's Enter() and Exit() methods, the default behavior is to automatically expire them at the end of a bar unless they are resubmitted to keep them alive. Sometimes you may want more flexibility in this behavior and wish to submit orders as live-until-cancelled. When orders are submitted as live-until


    Yes, you can update the price of your orders and it will modify the order with the new price.
    Ryan M.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by ageeholdings, Today, 07:43 AM
    0 responses
    7 views
    0 likes
    Last Post ageeholdings  
    Started by pibrew, Today, 06:37 AM
    0 responses
    4 views
    0 likes
    Last Post pibrew
    by pibrew
     
    Started by rbeckmann05, Yesterday, 06:48 PM
    1 response
    14 views
    0 likes
    Last Post bltdavid  
    Started by llanqui, Today, 03:53 AM
    0 responses
    6 views
    0 likes
    Last Post llanqui
    by llanqui
     
    Started by burtoninlondon, Today, 12:38 AM
    0 responses
    12 views
    0 likes
    Last Post burtoninlondon  
    Working...
    X