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

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 zstheorist, Today, 07:52 PM
      0 responses
      3 views
      0 likes
      Last Post zstheorist  
      Started by pmachiraju, 11-01-2023, 04:46 AM
      8 responses
      149 views
      0 likes
      Last Post rehmans
      by rehmans
       
      Started by mattbsea, Today, 05:44 PM
      0 responses
      5 views
      0 likes
      Last Post mattbsea  
      Started by RideMe, 04-07-2024, 04:54 PM
      6 responses
      33 views
      0 likes
      Last Post RideMe
      by RideMe
       
      Started by tkaboris, Today, 05:13 PM
      0 responses
      5 views
      0 likes
      Last Post tkaboris  
      Working...
      X