Thanks
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How do I get the time value of a vertical line that appears on the chart
Collapse
X
-
How do I get the time value of a vertical line that appears on the chart
I want to use the time value of a vertical line that appears on the chart. The vertical line is unlocked and I can displace it.
ThanksTags: None
-
Hello sixteencorners,
If the drawing object is manually drawn, you would need to loop through the drawing objects collection. There is a post that explains this further here: http://ninjatrader.com/support/forum...1&postcount=10
Otherwise if this is a line being drawn from NinjaScript, you would likely need to store the line its self as a variable, or the Time[0] value at the time you draw the line.
I look forward to being of further assistance.
-
-
Hello sixteencorners,
You can find an example for this in the helpguide here:
In the example you will seeTo know what other properties the vLine object has, you would need to refer to the help guide or in the NinjaScript editor after typing the period after vLine you would see the properties.Code:Print(vLine.BarsAgo);
vLine is the variable name in this example, the type of variable is IVerticalLine which is the object DrawVerticalLine returns. This would be the reference to this specific line.
I look forward to being of further assistance.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
566 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
330 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
|

Comment