PureBytes Links
Trading Reference Links
|
Hi
Thanks again Preston.You are very helpful.
regards
Jaison Thomas
pumrysh <no_reply@xxxxxxxxxxxxxxx> wrote:
Jaison,
Glad I could help!
The idea has been around for quite awhile. I actually read a TA
magazine article recently where they used the idea as well.
In this version you color the histogram on both sides of zero to help
identify indicator incline/decline. Another version of the indicator
is the Up/Down histogram where you simply indentify above and below
levels of the indicator. Like this:
{Up/Down Histogram}
X:={your indicator here};
Up:=If(X>0,X,0);
Dwn:=If(X<0,X,0);
Up; Dwn;
Preston
--- In equismetastock@xxxxxxxxxxxxxxx, jaison thomas
<jaison70018@xxx> wrote:
>
> Hi
>
> Thanks Preston for your help.
>
> Regards
>
> Jaison
>
> pumrysh <no_reply@xxxxxxxxxxxxxxx> wrote:
> --- In equismetastock@xxxxxxxxxxxxxxx, pumrysh
<no_reply@> wrote:
> >
> > Darren,
> >
> > There is a universal indicator that can be used for this purpose.
> >
> > {RedGreen Histogram}
> > X:= {your indicator here};
> > Green:=If(X>Ref(X,-1),X,0);
> > Red:=If(X<Ref(X,-1),X,0);
> > Green; Red;
> >
> >
> > In your case change it to:
> >
> > {RedBlue MACD}
> > X:=MACD();
> > BLUE:=If(X>Ref(X,-1),X,0);
> > Red:=If(X<Ref(X,-1),X,0);
> > BLUE; Red;
> >
> > Hope this helps,
> >
> > Preston
> >
> >
> >
> > --- In equismetastock@xxxxxxxxxxxxxxx, Darren Liew <darrenliew@>
> > wrote:
> > >
> > > Hi,
> > >
> > > I would like to create MACD Histogram with color bars.
> > > IF Today's MACD Histogram is higher than yesterday, then I want
> to
> > see a Blue color histogram bar.
> > > IF Today's MACD Histogram is lower than yesterday, then I want
> to
> > see a Red color histogram bar.
> > >
> > > aprecriate your help.
> > > thanks.
> > >
> > > Rgds,
> > > Darren Liew
> > >
> > >
> > >
> >
> __________________________________________________________
> > _______________
> > > Be a better friend, newshound, and
> > > know-it-all with Yahoo! Mobile. Try it now.
> > http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
> > >
> > >
> > > [Non-text portions of this message have been removed]
> > >
> >
>
>
>
>
>
>
> ---------------------------------
> Never miss a thing. Make Yahoo your homepage.
>
> [Non-text portions of this message have been removed]
>
---------------------------------
Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now.
[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/
|