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

How to know when a sell has been filled

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

    How to know when a sell has been filled

    Hi,
    im using a pretty simple strategy: based on several indicators im doing an entry.
    the problem occurs when im trying to sell.
    im using a SetTrailStop func, but I dont have a specific order to sell an entry.

    how should I know when a sell order has been filled?

    i was trying to use iOrder object, but it appears that its too hard to find such a simple request .... at least for me
    i found the performance real time trades, but i havent checked it out yet (let me know if this is the right direction).

    the main use case that i think of is: to have a counter for the number of sells i've submitted a while ago (so i wouldnt have multiple entries with a stock which i've bought and sell with loss for several times)

    thx in advance,
    Yoni

    #2
    Hello Yoni,

    Thank you for your post and welcome to the NinjaTrader Support Forum!

    This can be achieved by using the OnExecution() method and pulling the execution.Order.Name then adding to an int for your count.

    For example:
    Code:
    		protected override void OnExecution(IExecution e)
    		{
    			if(e.Order.OrderState == OrderState.Filled
    				&& e.Order.Name == "Trail stop")
    			{
    				count++;
    			}
    		}
    For information on OnExecution please visit the following link: http://www.ninjatrader.com/support/h...nexecution.htm

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by selu72, Today, 02:01 PM
    1 response
    7 views
    0 likes
    Last Post NinjaTrader_Zachary  
    Started by WHICKED, Today, 02:02 PM
    2 responses
    12 views
    0 likes
    Last Post WHICKED
    by WHICKED
     
    Started by f.saeidi, Today, 12:14 PM
    8 responses
    21 views
    0 likes
    Last Post f.saeidi  
    Started by Mikey_, 03-23-2024, 05:59 PM
    3 responses
    51 views
    0 likes
    Last Post Sam2515
    by Sam2515
     
    Started by Russ Moreland, Today, 12:54 PM
    1 response
    8 views
    0 likes
    Last Post NinjaTrader_Erick  
    Working...
    X