PureBytes Links
Trading Reference Links
|
Rick,
The following returned 2 stocks off last night's closes (COKE and
ETP, both > 30)...
Buy =
(BBandTop(C, 20, 2) - BBandBot(C, 20, 2)) < Ref(LLV((BBandTop(C, 20,
2) - BBandBot(C, 20, 2)), 125), -1) AND C > 30;
Best.
Bill
--- In amibroker@xxxx, Rick <zztopband@xxxx> wrote:
> I added filter = close > 30...but in my scans I still
> get penny stocks!! What is wrong?
>
> 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
> --- 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 ---
|