Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Cbi.Globals.MinDate

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

    Cbi.Globals.MinDate

    What is the equivalent of Cbi.Globals.MinDate in NT8?


    Example in NT7

    #2
    Hello Brillo, and thank you for your question.

    Cbi.Globals.MinDate is a C# DateTime object which is used as an earliest possible date. Generally, the common convention across the world is to use a time called "the epoch" (January 1st, 1970 AD) for this purpose. In Unix systems, for instance, this is time 0, and time 86400 would be 1 day after the epoch since there are 86400 seconds in a day.

    This time can be represented in C# as follows :

    Code:
    [FONT=Courier New]new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc)[/FONT]
    Otherwise, to get the actual NT7 value of Cbi.Globals.MinDate (January 1st, 1 BC), we can use

    Code:
    [FONT=Courier New]new DateTime(0, 1, 1, 0, 0, 0, DateTimeKind.Utc)[/FONT]
    Please let us know if there are any other ways we may help.
    Last edited by NinjaTrader_JessicaP; 11-10-2016, 12:24 PM.
    Jessica P.NinjaTrader Customer Service

    Comment


      #3
      Originally posted by Brillo View Post
      What is the equivalent of Cbi.Globals.MinDate in NT8?


      Example in NT7
      These types of undocumented utilities have been moved to the NinjaTrader.Core namespaces and located in the Globals class.

      NinjaTrader.Core.Globals.MinDate

      Please note that this is an undocumented class any members and their return values are subject to change without notice.

      You may find it safer to code your own static values in your own utility class.
      MatthewNinjaTrader Product Management

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by tsantospinto, 04-12-2024, 07:04 PM
      5 responses
      67 views
      0 likes
      Last Post tsantospinto  
      Started by cre8able, Today, 03:20 PM
      0 responses
      6 views
      0 likes
      Last Post cre8able  
      Started by Fran888, 02-16-2024, 10:48 AM
      3 responses
      49 views
      0 likes
      Last Post Sam2515
      by Sam2515
       
      Started by martin70, 03-24-2023, 04:58 AM
      15 responses
      115 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by The_Sec, Today, 02:29 PM
      1 response
      8 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Working...
      X