To the best of my knowledge direct pane based manipulation is not
possible.
However, you can do what you want by having plot statements that plot
one of several things based on a parameter value which you select in
the indivdual pane. If there were three of these then the indicator
would need to be inserted in the chart three times. For example ...
WhichPlot = ParamList("Which Plot ?", "1|2|3");
if (WhichPlot == "1")
Plot(C, "C", colorRed);
else if (WhichPlot == "2")
Plot(C, "C", colorYellow);
else if (WhichPlot == "3")
Plot(C, "C", colorBrightGreen);
--- In [email protected], "kar_avi" <[EMAIL PROTECTED]> wrote:
>
> Is pane based manipulation possible in Amibroker? For example in one
> pane we plot price bar and based on conditions C > O and V > Ref(V,
> -2), plot a custom indicator on a second pane, and based on the
> results of the second pane along with range bar analysis like
> customIndicatorin2ndpane = 5 and (C-L) > 0.75*(H-L), plot a custom
> histogram on the third pane, all from the same AFL?
>
> Thanks
>