PureBytes Links
Trading Reference Links
|
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 amibroker@xxxxxxxxxxxxxxx, "kar_avi" <kar_avi@xxx> 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
>
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|