PureBytes Links
Trading Reference Links
|
Note: forwarded message attached.
--- In amibroker@xxxx, "eseward_2000"
<eseward_2000@xxxx> wrote:
ZZ,
You can scan for narrowest BBandWidth this way (20day
Bands, 2 StDev):
Buy =
(BBandTop(C, 20, 2) - BBandBot(C, 20, 2)) <
Ref(LLV((BBandTop(C, 20, 2) - BBandBot(C, 20, 2)),
125), -1)
;
and widest this way:
Buy =
(BBandTop(C, 20, 2) - BBandBot(C, 20, 2)) >
Ref(HHV((BBandTop(C, 20, 2) - BBandBot(C, 20, 2)),
125), -1)
;
Bill
--- In amibroker@xxxx, "zztopband" <zztopband@xxxx>
wrote:
> I just bought Amibroker this weekend and it looks to
me it will
> become a staple to my diet...Thanks For A GREAT
PRODUCT!!... on to
> my question.
>
> How can I scan for the "squeeze" and the "buldge"
for individual
> stocks on a daily basis?
>
> ie.. Scan daily for a new "Squeeze" (the narrowest
point in the
last
> 6 months) and scan daily for a new "Buldge" (the
widest point for
the
> last 6 months). Any help would be greatly
appreciated.
>
> ZZ
--- End forwarded message ---
=====
Rick
__________________________________________________
Do You Yahoo!?
Yahoo! Health - Feel better, live better
http://health.yahoo.com
--- Begin Message ---
To: zztopband@xxxx
Subject: Fwd: Re: Bollinger Bands Squeeze & Buldge
From: "zztopband" <zztopband@xxxx>
Date: Tue, 23 Jul 2002 04:57:42 -0000
User-agent: eGroups-EW/0.82
--- In amibroker@xxxx, "eseward_2000" <eseward_2000@xxxx> wrote:
ZZ,
You can scan for narrowest BBandWidth this way (20day Bands, 2 StDev):
Buy =
(BBandTop(C, 20, 2) - BBandBot(C, 20, 2)) <
Ref(LLV((BBandTop(C, 20, 2) - BBandBot(C, 20, 2)), 125), -1)
;
and widest this way:
Buy =
(BBandTop(C, 20, 2) - BBandBot(C, 20, 2)) >
Ref(HHV((BBandTop(C, 20, 2) - BBandBot(C, 20, 2)), 125), -1)
;
Bill
--- In amibroker@xxxx, "zztopband" <zztopband@xxxx> wrote:
> I just bought Amibroker this weekend and it looks to me it will
> become a staple to my diet...Thanks For A GREAT PRODUCT!!... on to
> my question.
>
> How can I scan for the "squeeze" and the "buldge" for individual
> stocks on a daily basis?
>
> ie.. Scan daily for a new "Squeeze" (the narrowest point in the
last
> 6 months) and scan daily for a new "Buldge" (the widest point for
the
> last 6 months). Any help would be greatly appreciated.
>
> ZZ
--- End forwarded message ---
--- End Message ---
|