Announcement

Collapse
No announcement yet.

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 Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    559 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    324 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    546 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    547 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X