Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Check if last closed trade reached SL or TP

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

    Check if last closed trade reached SL or TP

    Hi,
    How can i check if the last closed trade has been closed by SL or TP?.

    #2
    Hello,

    One way would be to use the OnExecution override to check which order had last filled.



    Based on which order was filled you could get its signal name, or FromEntrySignal name to determine which order was filled and which order this was a stop or target for.

    I look forward to being of further assistance.
    JesseNinjaTrader Customer Service

    Comment


      #3
      Thanks Jesse,

      how can access directly the last one closed order?. Or maybe i should look the last execution?. I am a bit confused.
      Last edited by vibarco; 08-17-2015, 05:06 AM.

      Comment


        #4
        Hello vibarco,

        Here is some example code that may help here:

        Code:
        		protected override void OnExecution(IExecution execution)
        		{
            		    if (execution.Name == "Stop loss")
                 	      Print(string.Format("{0} - Stop loss was filled", execution.Time));
        			
        		    if (execution.Name == "Profit target")
        		      Print(string.Format("{0} - Profit Target was filled", execution.Time));	
        		}
        In this example your output window would show something like:

        8/17/2015 5:55:00 AM - Profit Target was filled
        8/17/2015 7:00:00 AM - Stop loss was filled
        8/17/2015 7:27:00 AM - Stop loss was filled
        8/17/2015 7:53:00 AM - Profit Target was filled
        Paul H.NinjaTrader Customer Service

        Comment


          #5
          Thank you Paul,

          I got it.

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by md4866, 05-01-2024, 08:15 PM
          2 responses
          17 views
          0 likes
          Last Post md4866
          by md4866
           
          Started by samish18, Today, 12:20 PM
          0 responses
          6 views
          0 likes
          Last Post samish18  
          Started by thread, 04-15-2024, 11:58 PM
          3 responses
          48 views
          0 likes
          Last Post Georg1o
          by Georg1o
           
          Started by leojimenezp, 04-20-2024, 05:49 PM
          4 responses
          49 views
          0 likes
          Last Post leojimenezp  
          Started by nicthe, Today, 09:24 AM
          1 response
          6 views
          0 likes
          Last Post nicthe
          by nicthe
           
          Working...
          X