PureBytes Links
Trading Reference Links
|
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
|