Is there any way to programatically set Autoscale to True for the drawn line? I know I can do it manually, but wondered if there was a way to put it in the code.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Autoscale on Horizontal Line
Collapse
X
-
DrawHorizontalLine
I'm already using DrawHorizontalLine, what I'd like to know is if Autoscale can be set for the resulting line programatically.Originally posted by NinjaTrader_Ray View PostYes. In NT 6.5 currently in beta there is the following method signature.
DrawHorizontalLine(string tag, bool autoScale, double y, Color color, DashStyle dashStyle, int width)
Comment
-
Thanks for the help. I got the autoscale working on my programatically-drawn horizontal lines.
Now I have another problem. After many edits (and a few re-names) of my indicator file, the horizontal lines no longer autoscale, even though the autoscale parameter is "true".
Here is the code:
//----------------------------------------------------------------------------------
protected void UpdateScaling()
{
if (ScalingDistance > 1)
{
DrawHorizontalLine("HighSpacer", true, Close[0] + ScalingDistance, Color.Black, DashStyle.Dash, 2);
DrawHorizontalLine("LowSpacer", true, Close[0] - ScalingDistance, Color.Black, DashStyle.Dash, 2);
}
}
#endregion
The code executes, and I can still see the horizontal lines, but they no longer autoscale. If I double-click on the line and manually set autoscale to "true", they autoscale again - it is only the programatic creation that no longer works.
They originally worked, so I think the problem has to do with the renaming of the file and class of the indicator.
Has there been any reported problem of this kind? I realize that 6.5 is still in beta.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
571 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
548 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
549 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment