PureBytes Links
Trading Reference Links
|
hi Ron
you see an example here!
regards
eugene
rsb_44 <rsb_44@xxxxxxxxxxx> wrote:
Hi Eugene-
You're very welcome. As Preston pointed out, you don't know if the
current bar is the highest, until there is at least one lower bar.
Nothing will change that logic.
Regards,
Ron
--- In equismetastock@xxxxxxxxxxxxxxx, eugeneou520 <eugeneou520@xxx>
wrote:
>
> hi Ron
> thanks a lot!
> this is a big similar,but the price bar break this level and the
line follow the price hight. i need it when the next M peak appear
and draw the line on this new peak level.
>
> i give a big thanks to you! it is really half work done. i think
can do it. but i can do it in metatrader software.
> best wishes!
> eugene
>
>
> rsb_44 <rsb_44@xxx> wrote:
> Hi Eugene-
> This may come close to the line you want to "eyeball"
>
> Preston's quite right
>
> X:=Input("How many highs?",2,200,25);
> Nth:=Input("Events ago",1,100,1);
> Event1:=H>=Ref(HHV(H,X),-1);
> Event1Bar:=((1+LastValue(Cum(Event1))-
> Cum(Event1))*Event1)=Nth;
> ValueWhen(1,Event1bar,H);
>
> Look at high values for X.
> You can watch the line march across the chart by changing Nth.
>
> Using Guppy's CBL's may be as useful. See the latest issue of
MSTT....
>
> Regards,
> Ron
>
> --- In equismetastock@xxxxxxxxxxxxxxx, pumrysh <no_reply@> wrote:
> >
> > 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@>
> > 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@> wrote:
> > > Eugene, you can't reference future periods ex.: ref
> > (h,2). Rick.
> > >
> > >
> > >
> > > On 9/8/07, eugeneou520 <eugeneou520@> 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
> >
>
>
>
>
>
>
> Warmest Regards!
> OuYang.
>
>
> ---------------------------------
> Park yourself in front of a world of choices in alternative
vehicles.
> Visit the Yahoo! Auto Green Center.
>
> [Non-text portions of this message have been removed]
>
---------------------------------
Building a website is a piece of cake.
Yahoo! Small Business gives you all the tools to get online.
[Non-text portions of this message have been removed]
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/
|