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 WHICKED, Today, 12:45 PM
    2 responses
    18 views
    0 likes
    Last Post WHICKED
    by WHICKED
     
    Started by GussJ, 03-04-2020, 03:11 PM
    15 responses
    3,276 views
    0 likes
    Last Post xiinteractive  
    Started by Tim-c, Today, 02:10 PM
    1 response
    8 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by Taddypole, Today, 02:47 PM
    0 responses
    5 views
    0 likes
    Last Post Taddypole  
    Started by chbruno, 04-24-2024, 04:10 PM
    4 responses
    51 views
    0 likes
    Last Post chbruno
    by chbruno
     
    Working...
    X