PureBytes Links
Trading Reference Links
|
Harmonic Pattern/stock correlator.
Plot & scroll through stocks to find meaningful patterns.
jose '-)
===========================
Harmonic Pattern Correlator
===========================
---8<---------------------------
{ Stock/Harmonic Pattern correlator v1.0 }
{ Plot on own window below price chart }
{ Zoom out & cycle trough stocks }
{ Search for meaningful patterns }
{ ©Copyrite 2004 Jose Silva }
{ http://users.bigpond.com/prominex/pegasus.htm }
xshift:=Input("x wave shift (0~100)%",
0,100,50)/100+1;
yshift:=Input("y wave shift (0~100)%",
0,100,33.333333)/100+1;
zshift:=Input("z wave shift (0~100)%",
0,100,20)/100+1;
scalar:=Input("Scalar (1-100)",1,100,33.333333);
x:=Sin(Power(Cum(1/H),xshift));
y:=Sin(Power(Cum(1/L),yshift));
z:=Cos(Power(Cum(1/C),zshift));
odd:=Cum(1)/2=Int(Cum(1)/2);
pattern:=If(odd,x+y-z,x-y+z)*scalar;
pattern
---8<---------------------------
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/
|