Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Tracking executed trades...

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

    Tracking executed trades...

    Is it possible to keep track of how many trades have executed so far in the day?

    If(//command in here for a trade executed//)
    tradeExecuted ++

    Only thing remotely similiar I can see to possibly use is something like.... if(trade.ProfitCurrency > 0) || if (trade.ProfitCurrency < 0)
    tradeExecuted ++

    And I know there's also using Performance.AllTrades.Count

    but a trade would have to complete and close out for it to Count it.

    Trying to limit the # of trades executed per day to under 20.
    Last edited by zachj; 10-13-2013, 12:58 PM.

    #2
    Hello zachj,

    Thank you for your post.

    If you are not looking for the completed trade but the number of executed orders then you can use OnExecutions and IOrder objects to pull the state of the order (Filled, PendingSubmit, etc.) and use your own custom count to keep track.

    For information on OnExecution please visit the following link: http://www.ninjatrader.com/support/h...nexecution.htm

    For information on IOrder objects please visit the following link: http://www.ninjatrader.com/support/h...nt7/iorder.htm

    Please let me know if I may be of further assistance.

    Comment


      #3
      Maybe try something like this

      Code:
       #region Variables 
      private int entries = 0; //to calculate # of entries 
      ................................
      ................................
      If(//command in here for a trade executed//)
       tradeExecuted ++
      
      entries = entries +1; //this calculates entries
      Print("Entries # = " + entries.ToString()); //print in output window 
      DrawText("Entries # "+ToDay(Time[0]), "Entries # = " + entries.ToString(), 0, Close[0] - 30*TickSize, Color.Orange); //this draw on your chart

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      600 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      347 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      103 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      558 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      558 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X