PureBytes Links
Trading Reference Links
|
Dear Jose,
Thanx for a nice code. I was also looking for something like this.
Kindly excuse me to improve/add more to the code further :
pds:=2; { Minimum lookback periods }
upToday:=C>Ref(C,-1)AND C>O;
downYesterday:=Ref(C,-1)<Ref(C,-2) AND Ref(C,-1)<Ref(O,-1);
downXbars:=Sum(downYesterday,pds)=pds;
downXbars AND upToday
This would give two clear black bars and a white bar.
R K
----- Original Message -----
From: Jose Silva
To: equismetastock@xxxxxxxxxxxxxxx
Sent: 24 February, 2006 2:41 AM
Subject: [EquisMetaStock Group] Re: Exploration Help
Leon, try this MS exploration filter:
---8<----------------
pds:=2; { Minimum lookback periods }
upToday:=C>Ref(C,-1);
downYesterday:=Ref(C,-1)<Ref(C,-2);
downXbars:=Sum(downYesterday,pds)=pds;
downXbars AND upToday
---8<----------------
jose '-)
http://www.metastocktools.com
--- In equismetastock@xxxxxxxxxxxxxxx, "Leon Miller" <leon.miller@xxx>
wrote:
>
> I'm a "newbie" and need help on the following exploration.
>
> Down the past 2 or more consecutive days, but up today.
>
> Thanks in advance for any assistance.
>
> Leon
SPONSORED LINKS Business finance course Business to business finance Small business finance
Business finance consultant Business finance magazine Business finance schools
------------------------------------------------------------------------------
YAHOO! GROUPS LINKS
a.. Visit your group "equismetastock" on the web.
b.. To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
------------------------------------------------------------------------------
[Non-text portions of this message have been removed]
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/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/
|