I have a quick question. I have an indicator where I plot 3 data: High, Close, Low.
Now, my issue is that the chartscale of the indicator autoscales to all three plots.
Meaning I will see all of the plots in the indicator window, whereas I only want to see the latest data within the visible area of the chart.
Here are some screenshots:
This is the annoying one, which I am unable to change. You can see the plot with the yellow line what I want to see. I do not need the green.
The yellow plot is too small here, because the green one has increased the right scale.
Now, when I set the color of the high plot (green) to Transparent. It works, and it only shows the red and the yellow. (duh) It scales just fine.
There is a dirty workaround, like this:
if (Values[0][0] > 0) {
Values[1][0] = currentHigh;
} else {
Values[2][0] = currentLow;
}
Switching colors to transparent and reloading the indicator is a pain in the neck.
So basically I wish to disable autoscale for the individual plots.
Is there something what i can use to solve this?
Indicator settings nothing interesting here:
Thanks in advance!

Comment