PureBytes Links
Trading Reference Links
|
Eugene,
Spyros Raftopoulos wrote a group of indicators based on these ideas
and on the Zigzag(peak/trough) related indicators. The zigzags as we
know cannot be used for this purpose because of their propensity to
give false signals. To further understand the problems I would
suggest that you visit the files section and study his indicators
which are stored there.
To your problem, you can only look at the past and not the future
therefore Ref(h,1) is not valid since no data is available for the
future.
H>=ref(h,-1) and H>=ref(h,-2) are valid arguments.
H = HHV(H,3) will give you a peak but you will not be able to
validate it as a peak until the next data bar. Thus something like
this should do the trick for you... X:=HHV(H,3)=Ref(H,-1);
Hope this helps,
Preston
--- In equismetastock@xxxxxxxxxxxxxxx, eugeneou520 <eugeneou520@xxx>
wrote:
>
> hi Richard Briggs,
> if i change M:=ref(h,-3); M>=ref(h,-4) and M>=ref(h,-5) and
M>=ref(h,-2) and M>=ref(h,-1); how to write the code for M as peak
and draw the line on the chart?
> thank you for your's helping!
> best regards!
> eugene.
>
>
> Richard Briggs <richardwbriggsjr@xxx> wrote:
> Eugene, you can't reference future periods ex.: ref
(h,2). Rick.
>
>
>
> On 9/8/07, eugeneou520 <eugeneou520@xxx> wrote:
> >
> > dear all!
> > i need your 's help to complete the below code is
> > H>=ref(h,1) and H>=ref(h,2) and H>=ref(h,-1) and H>=ref(h,-2) .i
need this
> > Hight as the peak and draw the line on the chart. but i compared
the code
> > peak(1,h,1) that is more difference what i mention above.
> >
> > best regards!
> >
> > eugene
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/equismetastock/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:equismetastock-digest@xxxxxxxxxxxxxxx
mailto:equismetastock-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|