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 kinfxhk, 07-14-2026, 09:39 AM
        0 responses
        131 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-13-2026, 10:18 AM
        0 responses
        106 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-13-2026, 09:50 AM
        0 responses
        88 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-13-2026, 07:21 AM
        0 responses
        107 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-11-2026, 02:11 AM
        0 responses
        87 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Working...
        X