I have one Bollinger Band indicator (bottom BB thick dark red line) that plots incorrectly when using styleNoRescale and a logarithmic chart.
Without styleNoRescale, log chart looks like this (correct):
With styleNoRescale, here is log with automatic bar height (bottom dark red BB is wrong):
With styleNoRescale, here is linear with manual adjustment of Y axis to show bottom line (correct):
With styleNoRescale, here is log after clicking "Shorter bars" icon as many times as allowed (bottom BB is still wrong but in a different way):
Here is the code for those lines (with styleNoRescale):
Plot( BBandTop( C, BBPeriods, 3 ), "BB3 Top " + BBPeriods, BB3Color, styleThick | styleNoRescale, Null, Null, Null, -2 );
Plot( BBandBot( C, BBPeriods, 3 ), "BB3 Bottom " + BBPeriods, BB3Color, styleThick | styleNoRescale, Null, Null, Null, -2 );
Am I not supposed to be using styleNoRescale with a log chart? Or is it something else?