PureBytes Links
Trading Reference Links
|
What? You haven't found any universal harmonic patterns yet, Dusant?
Plot the harmonic pattern correlator, cycle through different stocks,
and judge for yourself. Let me know what you find.
jose '-)
Chief Suspect
http://users.bigpond.com/prominex/pegasus.htm
--- In equismetastock@xxxxxxxxxxxxxxx, "Dusant" <dusant@xxxx> wrote:
> Jose,
> Is this another of your fantastic codes, which writes a lot, and
says nothing. :))
> Dusant
> Chief Architect
> http://www.candlestrength.com/
>
> ----- Original Message -----
> From: "Jose" <josesilva22@xxxx>
> To: <equismetastock@xxxxxxxxxxxxxxx>
> Sent: Wednesday, March 24, 2004 18:55 PM
> Subject: [EquisMetaStock Group] Harmonic Pattern Correlator
>
>
>
> 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/
|