Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Changing plot width programmatically.
Collapse
X
-
Changing plot width programmatically.
I have only been able to find an old reference (2016) to changing the segment width on a plotted line. It was not possible at that time. Is this still the case? I would like to be able to change the plot width in the same way that I can set it's color via Brushes method in OnBarUpdate.Tags: None
- Likes 1
-
Hello Chippy,
Thanks for your post.
Unfortunately, there are no documented or supported means for changing the width for the segment of a plot. The width could be set for the entire plot, however, not for a specific section of the plot.
That said, this thread will be open for other community members to share their insight on possible undocumented ways to accomplish this.
Let us know if we may assist further.<span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>
-
Hello Chippy,
Thanks for your note.
We do not have any supported or documented methods to change the plot style for the segment of a plot. Only the color of a plot could be changed for a specific segment of a plot.
Let us know if we may assist further.
<span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>
Comment
-
Hello Bidder,
Thanks for your note.
Plots[0].Width would change the width of the entire plot.
This would not change the width of the plot for a specific bar or a specific segment only.
For example, the code below would change the entire plot to a width of 5 when the Close[0] > Open[0]. Otherwise, the entire plot would be set to a width of 2.
Code:if (Close[0] > Open[0] Plots[0].Width = 5; else Plots[0].Width = 2;
<span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>
- Likes 1
Comment
Latest Posts
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by MiCe1999, Today, 04:28 PM
|
0 responses
6 views
0 likes
|
Last Post
![]()
by MiCe1999
Today, 04:28 PM
|
||
Started by ybforex, 03-11-2025, 05:30 PM
|
18 responses
159 views
0 likes
|
Last Post
![]()
by rockmanx00
Today, 03:39 PM
|
||
Started by ToNovy, 01-27-2025, 11:22 PM
|
19 responses
192 views
0 likes
|
Last Post
![]()
by ToNovy
Today, 02:51 PM
|
||
Started by several, 03-18-2025, 03:53 AM
|
16 responses
222 views
1 like
|
Last Post
![]()
by ntwong
Today, 02:47 PM
|
||
Started by ruina, 03-08-2025, 10:18 AM
|
2 responses
27 views
0 likes
|
Last Post
![]()
by ruina
Today, 02:05 PM
|
Comment