thankz
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
DrawVerticalLine questions for time
Collapse
X
-
Hello faustf, thank you for your post and welcome to the NinjaTrader forum.
A DateTime object will be used as that parameter. The Time array holds the timestamps of all bars as a DateTime object.
This snippet will draw a line 5 bars ago:
Also, see this example on manipulating DateTime objects.Code:protected override void OnBarUpdate() { if(CurrentBar < 5) return; DrawVerticalLine("theline", Time[5], Color.Red, DashStyle.Solid, 2); }
Kind regards.Last edited by NinjaTrader_ChrisL; 07-17-2019, 08:55 AM.
- Likes 1
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
563 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
329 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 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
547 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
548 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

thankz again
Comment