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 Brevo, Today, 01:45 AM
        0 responses
        3 views
        0 likes
        Last Post Brevo
        by Brevo
         
        Started by aussugardefender, Today, 01:07 AM
        0 responses
        3 views
        0 likes
        Last Post aussugardefender  
        Started by pvincent, 06-23-2022, 12:53 PM
        14 responses
        239 views
        0 likes
        Last Post Nyman
        by Nyman
         
        Started by TraderG23, 12-08-2023, 07:56 AM
        9 responses
        384 views
        1 like
        Last Post Gavini
        by Gavini
         
        Started by oviejo, Today, 12:28 AM
        0 responses
        6 views
        0 likes
        Last Post oviejo
        by oviejo
         
        Working...
        X