Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Trade Timer

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

    Trade Timer

    I'm trying to write some code for a trade timer. Basically I want the timer to let me know how long I have been in the current trade. Spent hours tying myself in knots to get this code going.

    I decided to use the Bar Timer as a code templet. Should I be considering something elese?

    Any thoughts would be appreciated.

    Thanks in adavance.

    George

    #2
    As a last resort you can try contacting one of the NinjaScript Consultants: http://www.ninjatrader.com/webnew/pa...injaScript.htm
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      Try this:

      //Variables
      DateTime date1;

      //When you enter trade
      date1 = DateTime.Now;

      //OnBarUpdate
      DateTime date2 = DateTime.Now;
      System.TimeSpan diff = date2.Subtract(date1);
      Print("TimeDiff " + diff.Minutes);

      Originally posted by zepplin View Post
      I'm trying to write some code for a trade timer. Basically I want the timer to let me know how long I have been in the current trade. Spent hours tying myself in knots to get this code going.

      I decided to use the Bar Timer as a code templet. Should I be considering something elese?

      Any thoughts would be appreciated.

      Thanks in adavance.

      George

      Comment


        #4
        Thanks - that is a lot simpler then the nonesense I have been trying to put together.

        Appreciate it - will try it a little later today after the close.

        George

        Comment

        Latest Posts

        Collapse

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