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 cmoran13, 04-16-2026, 01:02 PM
      0 responses
      43 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      25 views
      0 likes
      Last Post PaulMohn  
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      162 views
      1 like
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      98 views
      1 like
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      157 views
      2 likes
      Last Post CaptainJack  
      Working...
      X