Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Cbi.Globals.MinDate
Collapse
X
-
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 :
Otherwise, to get the actual NT7 value of Cbi.Globals.MinDate (January 1st, 1 BC), we can useCode:[FONT=Courier New]new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc)[/FONT]
Please let us know if there are any other ways we may help.Code:[FONT=Courier New]new DateTime(0, 1, 1, 0, 0, 0, DateTimeKind.Utc)[/FONT]
Last edited by NinjaTrader_JessicaP; 11-10-2016, 12:24 PM.Jessica P.NinjaTrader Customer Service
-
These types of undocumented utilities have been moved to the NinjaTrader.Core namespaces and located in the Globals class.Originally posted by Brillo View Post
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 Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
656 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
371 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
109 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
574 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
579 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment