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 DannyP96, 05-18-2026, 02:38 PM
|
1 response
27 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
117 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
69 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
226 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
417 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|

Comment