PureBytes Links
Trading Reference Links
|
Hi Jose,
Thanks for your answer,
I`ve bin trying your formula today, it seems that it gives the last
low´s or high´s after a bar or gap >= then 5 points.
A "minpts" of 15 leaves the chart empty of lines, bars of that
size do not exist in the data.
also in different timeframes i have different results
i have to chance something but i don´t see it.
Mark.
--- In equismetastock@xxxxxxxxxxxxxxx, "Jose" <josesilva22@xxxx>
wrote:
>
> Try something like the code (or elements of it) below:
>
> ---8<------------------
> { User input }
> MinPts:=Input("Minimum points move",0,10000,10);
>
> {Replace above with code below for exploration}
> {MinPts:=10;}
>
> up:=C-Ref(C,-1)>=MinPts;
> dw:=Ref(C,-1)-C>=MinPts;
> hi:=HighestSince(1,dw,H);
> lo:=LowestSince(1,up,L);
>
> { Plot on price chart }
> hi;lo
> ---8<------------------
>
>
> jose '-)
> http://www.metastocktools.com
>
>
>
> --- In equismetastock@xxxxxxxxxxxxxxx, daytraderteam
<no_reply@xxxx>
> wrote:
> >
> >
> > hello everyone.
> >
> > i need to find the last low, or an high >= lastlow +10 points
> > The zigzag,peak or though can`t do the job and the use of Mov()
is
> > not acceptble in the system.
> > also the opposite is needed, "Last" high since the index went
down
> > >=10 points
> >
> > Any ideas ??
> > mark.
------------------------ 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/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/
|