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 funk10101, Today, 08:14 AM
      3 responses
      5 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by frankthearm, Today, 09:08 AM
      0 responses
      1 view
      0 likes
      Last Post frankthearm  
      Started by samish18, Yesterday, 08:57 AM
      11 responses
      28 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Started by yertle, Today, 08:38 AM
      1 response
      6 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Started by love2code2trade, Yesterday, 01:45 PM
      3 responses
      22 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Working...
      X