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 trilliantrader, 04-18-2024, 08:16 AM
      7 responses
      27 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Started by samish18, 04-17-2024, 08:57 AM
      17 responses
      64 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Started by rocketman7, Today, 02:12 AM
      2 responses
      17 views
      0 likes
      Last Post rocketman7  
      Started by briansaul, Today, 05:31 AM
      1 response
      13 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by PaulMohn, Today, 03:49 AM
      1 response
      12 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Working...
      X