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 cocoescala, 10-12-2018, 11:02 PM
        6 responses
        939 views
        0 likes
        Last Post Jquiroz1975  
        Started by gbourque, Today, 06:39 AM
        1 response
        4 views
        0 likes
        Last Post NinjaTrader_Erick  
        Started by cmtjoancolmenero, Yesterday, 03:58 PM
        1 response
        17 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by benmarkal, Yesterday, 12:52 PM
        3 responses
        23 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by helpwanted, Today, 03:06 AM
        1 response
        20 views
        0 likes
        Last Post sarafuenonly123  
        Working...
        X