PureBytes Links
Trading Reference Links
|
Under highlights in the expert:
A:=H > Ref(H,-1)
AND L > Ref(L,-1)
AND Ref(H,-1) > Ref(H,-2)
AND Ref(L,-1) > Ref(L,-2)
AND Ref(H,-2) > Ref(H,-3)
AND Ref(L,-2) > Ref(L,-3)
AND Ref(H,-3) > Ref(H,-4)
AND Ref(L,-3) > Ref(L,-4);
A
I checked this and it worked for me.
Preston
--- In equismetastock@xxxxxxxxxxxxxxx, "ptc_man" <ptc_man@xxxx> wrote:
> pumrysh
>
> Put the "A:=" will highlight all bars, not the 4 bars pattern
>
>
> Thanks
>
>
>
>
> --- In equismetastock@xxxxxxxxxxxxxxx, pumrysh <no_reply@xxxx>
wrote:
> > Another idea:
> >
> > A:=H < Ref(H,-1) AND L > Ref(L,-1) AND Ref(H,-1) > Ref(H,-2) AND
Ref
> > (L,-1) > Ref(L,-2) AND Ref(H,-2) < Ref(H,-3) AND Ref(L,-2) < Ref
(L,-
> 3)
> > AND Ref(H,-3) > Ref(H,-4) AND Ref(L,-3) > Ref(L,-4);
> >
> > Red:=A;
> >
> > The idea is that when the condition is true(=1) you would have a
> > highlight. The red variable is actually redundant.
> >
> > Preston
> >
> >
> >
> >
> > --- In equismetastock@xxxxxxxxxxxxxxx, Ron <ronber@xxxx> wrote:
> > > I'm no expert, but I think you can create a separate highlight
> for
> > each
> > > of the 4 bars.
> > >
> > > H < Ref(H,-1) AND L > Ref(L,-1)
> > > Ref(H,-1) > Ref(H,-2) AND Ref(L,-1) > Ref(L,-2)
> > > Ref(H,-2) < Ref(H,-3) AND Ref(L,-2) < Ref(L,-3)
> > > Ref(H,-3) > Ref(H,-4) AND Ref(L,-3) > Ref(L,-4)
> > >
> > > You can color them any way you want.
> > >
> > > ptc_man wrote:
> > >
> > > > Need help
> > > >
> > > > I create the following expert:
> > > >
> > > > H < Ref(H,-1) AND L > Ref(L,-1) AND Ref(H,-1) > Ref(H,-2) AND
> Ref
> > (L,-
> > > > 1) > Ref(L,-2) AND Ref(H,-2) < Ref(H,-3) AND Ref(L,-2) < Ref
(L,-
> 3)
> > > > AND Ref(H,-3) > Ref(H,-4) AND Ref(L,-3) > Ref(L,-4)
> > > >
> > > > How can I highlight the entire pattern, the 4 bars?
> > > > Put the formula like this, only the inside bar is highlighted.
> > > >
> > > > Thank you
> > > >
> > > >
> > > > Yahoo! Groups Sponsor
> > > > ADVERTISEMENT
> > > >
> >
>
<http://rd.yahoo.com/M=243066.2784921.4151384.1927555/D=egroupweb/S=17
> > 05375617:HM/A=1377501/R=0/*http://www.verisign.com/cgi-bin/go.cgi?
> > a=b30890113200616000>
> > > >
> > > >
> > > >
> > > > To unsubscribe from this group, send an email to:
> > > > equismetastock-unsubscribe@xxxxxxxxxxxxxxx
> > > >
> > > >
> > > >
> > > > Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> > Service
> > > > <http://docs.yahoo.com/info/terms/>.
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/
|