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 Barry Milan, Today, 10:35 PM
    1 response
    8 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Started by WeyldFalcon, 12-10-2020, 06:48 PM
    14 responses
    1,428 views
    0 likes
    Last Post Handclap0241  
    Started by DJ888, Yesterday, 06:09 PM
    2 responses
    9 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Started by jeronymite, 04-12-2024, 04:26 PM
    3 responses
    40 views
    0 likes
    Last Post jeronymite  
    Started by bill2023, Today, 08:51 AM
    2 responses
    16 views
    0 likes
    Last Post bill2023  
    Working...
    X