PureBytes Links
Trading Reference Links
|
Maybe something like this:
---8<------------------------
{"Finding Tradable Stocks" by Jacob Singer }
{ http://www.metastocktools.com }
pds1:=20; { Breakout periods }
pds2:=4; { Setup periods }
{ Long }
Lo:=L=LLV(L,pds1);
LoVal:=ValueWhen(1,Lo,L);
LoSetup:=L<Ref(LoVal,-(pds2-1));
In:=LoSetup AND C>LLV(L,pds1);
{ Short }
Hi:=H=HHV(H,pds1);
HiVal:=ValueWhen(1,Hi,H);
HiSetup:=H>Ref(HiVal,-(pds2-1));
Out:=HiSetup AND C<HHV(H,pds1);
{ Signals }
In-Out
---8<------------------------
jose '-)
--- In Metastockusers@xxxxxxxxxxxxxxx, "vvad63" <ad63@xxxx> wrote:
>
> Has anyone attempted to code an expert or exploration of the stategy
> outlined in "Finding Tradable Stocks" by Jacob Singer in this
> month's TASC? Trying to plot a symbol in an Expert has proved
> futile for me, especially this expression: "We have a 20-day low,
> and then four days later, a lower low. Today's close must be
> greater than the 20-day low to be a buy." Any suggestions?
------------------------ Yahoo! Groups Sponsor --------------------~-->
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/cosFAA/zMEolB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/Metastockusers/
<*> To unsubscribe from this group, send an email to:
Metastockusers-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|