PureBytes Links
Trading Reference Links
|
Bob,
You could do this in an expert but another option is simply to create
an indicator that will display this.
To do this simply add the following to the end of your indicator:
X:= {your indicator here};
Green:=If(X>Ref(X,-1),X,0);
Red:=If(X<Ref(X,-1),X,0);
Green; Red;
Go into properties and set as a histogram, then set > bars green
and < bars red.
P
--- In equismetastock@xxxxxxxxxxxxxxx, "bflori <bflori@xxxx>"
<bflori@xxxx> wrote:
> I am creating an expert system that will involve an MACD
histogram.I
> would like to color the bars > 0 green and the bars <= 0 red.
>
> Is this done in creating a function or in the Expert System?
>
> I have tried creating highlights in the Expert System for the
> colored MACD's but can't get them to show up on the chart?
>
> Any help would be appreciated.
>
> Bob
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/
|