I have and indicator I would like to have it display only on the price panel.
I can set the Overlay = true parameter and it will display there.
However, it also plots the indicator scale on the price and skews the panel.
Is there a way to set the ScaleJustification to Overlay in code?
I notice when I manually bring up the Indicator Settings Window in the Label section I select the price panel and select Scalejustification =Overlay that the panel does not display.
What code would I use to display that?
Thanks
DUH!!!
I found the answer:
Put this in the Initialize section:
ScaleJustification = ScaleJustification.Overlay;

Comment