PureBytes Links
Trading Reference Links
|
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 Sponsor --------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/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/
|