PureBytes Links
Trading Reference Links
|
John,
You can override BB indicator in v4.06.1 - go to Indicator Builder for price chart
and add the code
Plot( BBandTop( Close, 15, 2 ), "BBandTop", 2, 4 );
Plot( BBandBot( Close, 15, 2 ), "BBandBot", 2, 4 );
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "John Nelson" <trader@xxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Saturday, July 13, 2002 7:03 PM
Subject: Re: [amibroker] Re: Properties of lines and graphs
>
> Can I safely "override" the BB indicator that is already there or am I
> applying my own custom indicator and ignoring your "built in"?
>
> Actually, now that we're on the topic of Bollinger Bands, does anyone have
> any particular AFL based BB trading systems they'd like to post? BB's are
> very useful, particularly in conjunction with candlesticks.
>
> -- John
>
>
> On Sat, 13 Jul 2002, Tomasz Janeczko wrote:
>
> > Date: Sat, 13 Jul 2002 10:58:20 +0200
> > From: Tomasz Janeczko <amibroker@xxxx>
> > Reply-To: amibroker@xxxxxxxxxxxxxxx
> > To: amibroker@xxxxxxxxxxxxxxx
> > Subject: Re: [amibroker] Re: Properties of lines and graphs
> >
> > John,
> >
> > The only way to get fatter bollinger bands is to use custom formula with thick style:
> > Plot(Close,"Price", 1, 64 );
> > Plot( BBandTop( Close, 15, 2 ), "BBandTop", 2, 4 );
> > Plot( BBandBot( Close, 15, 2 ), "BBandBot", 2, 4 );
> >
> > Best regards,
> > Tomasz Janeczko
> > amibroker.com
>
>
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
>
|