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

Actual Exit Price

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

    Actual Exit Price

    Hey guys, when I do ExitLong(), how do I access the actual exit price in the code?

    #2
    Hello elitetradernyc,

    You may use the OnExecution method to be able to tell what price the ExitLong() signal occurred.

    http://www.ninjatrader.com/support/h...nexecution.htm

    Defining an Entry and Exit signal name may help with filtering out some of the results as well for example:

    Code:
    EnterLong("GoLong");
    
    ExitLong("ExitLongNow", "GoLong");
    
    
    protected override void OnExecution(IExecution execution)
    {
    			
    	if("ExitLongNow" == execution.Name)
    		Print("Exit Long Order Price = "+execution.Price);
    
    }
    Let us know if we can be of further assistance.
    JCNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by lorem, Yesterday, 09:18 AM
    4 responses
    14 views
    0 likes
    Last Post lorem
    by lorem
     
    Started by Spiderbird, Today, 12:15 PM
    0 responses
    5 views
    0 likes
    Last Post Spiderbird  
    Started by cmtjoancolmenero, Yesterday, 03:58 PM
    12 responses
    42 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by FrazMann, Today, 11:21 AM
    0 responses
    6 views
    0 likes
    Last Post FrazMann  
    Started by geddyisodin, Yesterday, 05:20 AM
    8 responses
    52 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Working...
    X