PureBytes Links
Trading Reference Links
|
Thanks Roy
you certainly gave me the direction. Let me test wether this can give the result the way i wanted. I will post the result.
Anil
----- Original Message -----
From: Roy Larsen
To: equismetastock@xxxxxxxxxxxxxxx
Sent: Monday, May 15, 2006 7:14 AM
Subject: Re: [EquisMetaStock Group] Querry help...
Hi Anil
Is this something like what you had in mind? "Z" is the 7-period daily CCI-Standard (no bells or whistles).
Regards
Roy
{Daily CCI-7 Standard w/Crossovers}
{© 2006 Roy Larsen}
{www.metastocktips.co.nz}
{For use on intraday charts}
G:=LastValue(Highest(Sum(DayOfWeek()<>
ValueWhen(2,1,DayOfWeek()),5))=5);
J:=DayOfMonth()<>ValueWhen(2-G,1,DayOfMonth()) OR G
{OR Cum(1)=LastValue(Cum(1))} {for dynamic last bar};
Hd:=ValueWhen(1,J,ValueWhen(2-G,1,HighestSince(1,J,H)));
Hd:=ValueWhen(1,Hd>0,Hd);
Ld:=ValueWhen(1,J,ValueWhen(2-G,1,LowestSince(1,J,L)));
Ld:=ValueWhen(1,Ld>0,Ld);
Cd:=ValueWhen(1,J,ValueWhen(2-G,1,C));
{CCI calculation}
X:=(Cd+Hd+Ld)/3;
Y:=(X+ValueWhen(2,J,X)+ValueWhen(3,J,X)+
ValueWhen(4,J,X)+ValueWhen(5,J,X)+
ValueWhen(6,J,X)+ValueWhen(7,J,X))/7;
Z:=(Abs(Y-X)+Abs(y-ValueWhen(2,J,X))+
Abs(Y-ValueWhen(3,J,X))+Abs(Y-ValueWhen(4,J,X))+
Abs(Y-ValueWhen(5,J,X))+Abs(Y-ValueWhen(6,J,X))+
Abs(Y-ValueWhen(7,J,X)))/7;
Z:=(X-Y)/(Z*0.015);
Buy:=Cross(Z,-100);
Sell:=Cross(-110,Z); Buy; Sell;
----- Original Message -----
From: gadee333
To: equismetastock@xxxxxxxxxxxxxxx
Sent: Monday, May 15, 2006 3:36 AM
Subject: [EquisMetaStock Group] Querry help...
I am using real time data. I want to plot an indicator fulfilling
folloing conditions on 5 min chart.
1. CCI last 7 days ( not 7 periods )
2. Buy signal should be when CCI(7days) crosses above - 100
3. Sell signal should be when CCI(7days) crosses below - 110
will any one please help.
Anil Desai
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]
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 --------------------~-->
You can search right from your browser? It's easy and it's free. See how.
http://us.click.yahoo.com/_7bhrC/NGxNAA/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/
|