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 Hwop38, 05-04-2026, 07:02 PM
      0 responses
      153 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Started by CaptainJack, 04-24-2026, 11:07 PM
      0 responses
      305 views
      0 likes
      Last Post CaptainJack  
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      244 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      345 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      176 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Working...
      X