Instrument is set to autoscale = false
Indicator set to autoscale = true
Indicator uses drawing objects only (i.e. DrawDot())
In this case, the scale does not get set at all, the chart data is not displayed, and the scale is left at 0 - .25.
If I then add another indicator that uses a plot (i.e. Bollinger) and set it to autoscale, then the scale is set correctly and the data is displayed as expected.
The problem seems to be that indicator I am trying to use does not use a plot, and is depending on the draw objects to set the scale, but NT does not seem to be handling this case.
Simple test is to just draw a dot on the high and low of each bar.
Update: It also does not work if there is a dummy plot added that is never set.

Comment