Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
minutes
Collapse
X
-
minutes
hi ... i need to identify certain time periods on a chart regardless of the type of chart i'm running (min, tick, range, etc). I want to do this by identifying the 'minutes' from the system time. Can you guide me to a reference where it shows how to parse the system time so I can isolate the minutes? Thanks!Tags: None
-
Pman777,
This code example should work for what you are looking for -
Code:DateTime test = DateTime.Now; DateTime dateValue = new DateTime(test.Year, test.Month, test.Day, test.Hour + 1, 0, 0); TimeSpan barsAgo = dateValue - Time[0]; Print(barsAgo.ToString());Cal H.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by sjsj2732, 03-23-2026, 04:31 AM
|
0 responses
78 views
0 likes
|
Last Post
by sjsj2732
03-23-2026, 04:31 AM
|
||
|
Started by NullPointStrategies, 03-13-2026, 05:17 AM
|
0 responses
313 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
315 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
149 views
1 like
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
115 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|

Comment