Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Extend a line from an indicator
Collapse
X
-
Extend a line from an indicator
I have drawn a line from point A to point B from my indicator. I want to extend line (identified by it's tag) to the current bar. Is it possible?Tags: None
-
Hello higher.high,
Thank you for writing in. Yes this is absolutely possible.
You simply need to call the DrawLine method again using the same tag.
For example:
Please let me know if I may be of further assistance.Code://Your original line where barA is the closest bar to the current bar and barB is the furthest back if(!drawn){ DrawLine("myLine", barA, Close[0], 10, barB, Color.Red); drawn = true; } //Extend the same line if(drawn) { DrawLine("myLine", 0, Close[0], 10, barB, Color.Red); }Michael M.NinjaTrader Quality Assurance
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
93 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
48 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
31 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
34 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
70 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment