Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

IOrder.OrderState

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

    IOrder.OrderState

    if I create IOrder stopLoss = ExitLongStop(0,true,1,100.50,"stopLoss","enterLong ");

    If the stopLoss order is filled will the OnExecution event fire notifying me my stop order has been filled and if so what fill be the OrderState of IOrder? If not how am I suppose to know I've been filled on my stopLoss order?
    Last edited by d.allen101; 09-07-2016, 04:30 PM.

    #2
    Hello d.allen101,

    Thanks for your post.

    You can test for the order fill in OnExecution() by checking the name. For example:

    protected override void OnExecution(IExecution execution)
    {
    if (execution.Name == "stopLoss") Print(string.Format("{0} - Stop loss was filled", execution.Time));
    }
    Paul H.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by andrewtrades, Today, 04:57 PM
    1 response
    10 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Started by chbruno, Today, 04:10 PM
    0 responses
    6 views
    0 likes
    Last Post chbruno
    by chbruno
     
    Started by josh18955, 03-25-2023, 11:16 AM
    6 responses
    436 views
    0 likes
    Last Post Delerium  
    Started by FAQtrader, Today, 03:35 PM
    0 responses
    9 views
    0 likes
    Last Post FAQtrader  
    Started by rocketman7, Today, 09:41 AM
    5 responses
    20 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Working...
    X