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 kinfxhk, 07-14-2026, 09:39 AM
|
0 responses
89 views
0 likes
|
Last Post
by kinfxhk
07-14-2026, 09:39 AM
|
||
|
Started by kinfxhk, 07-13-2026, 10:18 AM
|
0 responses
92 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 10:18 AM
|
||
|
Started by kinfxhk, 07-13-2026, 09:50 AM
|
0 responses
70 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 09:50 AM
|
||
|
Started by kinfxhk, 07-13-2026, 07:21 AM
|
0 responses
87 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 07:21 AM
|
||
|
Started by kinfxhk, 07-11-2026, 02:11 AM
|
0 responses
64 views
0 likes
|
Last Post
by kinfxhk
07-11-2026, 02:11 AM
|

Comment