PureBytes Links
Trading Reference Links
|
The code is for an indicator not an exploration- put it in and you'll see.
It already has an EMA line in it, so you can just change the parameters to
your liking
If you want to show a digital crossover, just plot for when the bandwidth
crosses or is greater/less than the EMA.
Andrew
-----Original Message-----
From: bandwidthuser [mailto:bandwidthuser@xxxxxxxxx]
Sent: Wednesday, December 08, 2004 11:22 PM
To: equismetastock@xxxxxxxxxxxxxxx
Subject: Re: [EquisMetaStock Group] Bollinger BandWidth with MA Crossover
Thanks for your reply Andrew. This looks very good as an
exploration. However what I really want to do is display both the
bandwidth and EMA indicators as its own crossover indicator - but how
to do this? I think it would help in identifying turning points in
stock volatility.
Warm Regards,
Tony.
--- In equismetastock@xxxxxxxxxxxxxxx, "Andrew Tomlinson"
<andrew_tomlinson@xxxx> wrote:
> This is what I use for bandwidth, using typical price and including
the
> squeeze. You should be able to adapt it for your needs.
>
> P1:=Input("No of bars:",1,200,20);
> P2:=Input("STD multiple",0.5,6,2);
> P3:=Input("Lookback bars",2,300,120);
> TypPrice:=(O+H+L+C)/4;
> MA:=Mov(TypPrice,P1,S);
> BBTop:=MA+P2*( Stdev(TypPrice, P1));
> BBBottom:=MA-P2*( Stdev(TypPrice, P1)) ;
> Bandwidth:=(BBTop - BBBottom)/MA;
> BBMA:=Mov(Bandwidth,3,S);
>
> Bandwidth;
> BBMA;
> LLV(Ref(Bandwidth,-1),P3);
>
> Andrew
>
> -----Original Message-----
> From: bandwidthuser [mailto:bandwidthuser@x...]
> Sent: Wednesday, December 08, 2004 7:38 PM
> To: equismetastock@xxxxxxxxxxxxxxx
> Subject: [EquisMetaStock Group] Bollinger BandWidth with MA
Crossover
>
>
>
>
>
> Hello,
>
> I would like to display a 5 period EMA crossover of the Bollinger
> BandWidth Indicator "4*(std(C,20))/mov(C,20,S)". Does anyone have
> any suggestions as to how to write this?
>
>
> Warm Regards.
>
> Tony.
>
>
>
>
>
>
>
>
>
>
> Yahoo! Groups Links
Yahoo! Groups Links
------------------------ Yahoo! Groups Sponsor --------------------~-->
$4.98 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/Q7_YsB/neXJAA/yQLSAA/BefplB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|