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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
152 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
89 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
131 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
127 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
107 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment